diff --git a/etl_billiards/.env b/etl_billiards/.env index 75110ab..4bf8b16 100644 --- a/etl_billiards/.env +++ b/etl_billiards/.env @@ -32,7 +32,7 @@ SCHEMA_ETL=etl_admin # API 配置 # ------------------------------------------------------------------------------ API_BASE=https://pc.ficoo.vip/apiprod/admin/v1/ -API_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnQtdHlwZSI6IjQiLCJ1c2VyLXR5cGUiOiIxIiwiaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS93cy8yMDA4LzA2L2lkZW50aXR5L2NsYWltcy9yb2xlIjoiMTIiLCJyb2xlLWlkIjoiMTIiLCJ0ZW5hbnQtaWQiOiIyNzkwNjgzMTYwNzA5OTU3Iiwibmlja25hbWUiOiLnp5_miLfnrqHnkIblkZjvvJrmganmgakxIiwic2l0ZS1pZCI6IjAiLCJtb2JpbGUiOiIxMzgxMDUwMjMwNCIsInNpZCI6IjI5NTA0ODk2NTgzOTU4NDUiLCJzdGFmZi1pZCI6IjMwMDk5MTg2OTE1NTkwNDUiLCJvcmctaWQiOiIwIiwicm9sZS10eXBlIjoiMyIsInJlZnJlc2hUb2tlbiI6Iks1ZnBhYlRTNkFsR0FpMmN4WGYrMHdJVkk0L2UvTVQrSVBHM3V5VWRrSjg9IiwicmVmcmVzaEV4cGlyeVRpbWUiOiIyMDI2LzEvMzEg5LiL5Y2IMTA6MTQ6NTEiLCJuZWVkQ2hlY2tUb2tlbiI6ImZhbHNlIiwiZXhwIjoxNzY5ODY4ODkxLCJpc3MiOiJ0ZXN0IiwiYXVkIjoiVXNlciJ9.BH3-iwwrBczb8aFfI__6kwe3AIsEPacN9TruaTrQ3nY +API_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnQtdHlwZSI6IjQiLCJ1c2VyLXR5cGUiOiIxIiwiaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS93cy8yMDA4LzA2L2lkZW50aXR5L2NsYWltcy9yb2xlIjoiMTIiLCJyb2xlLWlkIjoiMTIiLCJ0ZW5hbnQtaWQiOiIyNzkwNjgzMTYwNzA5OTU3Iiwibmlja25hbWUiOiLnp5_miLfnrqHnkIblkZjvvJrmganmgakxIiwic2l0ZS1pZCI6IjAiLCJtb2JpbGUiOiIxMzgxMDUwMjMwNCIsInNpZCI6IjI5NTA0ODk2NTgzOTU4NDUiLCJzdGFmZi1pZCI6IjMwMDk5MTg2OTE1NTkwNDUiLCJvcmctaWQiOiIwIiwicm9sZS10eXBlIjoiMyIsInJlZnJlc2hUb2tlbiI6Ik1oKzFpTitjclRHMTY3cUp5SzFXYllteVBaaUhjdDI2ZTZDZkJvd1pxSVk9IiwicmVmcmVzaEV4cGlyeVRpbWUiOiIyMDI2LzIvNyDkuIvljYg5OjU2OjE4IiwibmVlZENoZWNrVG9rZW4iOiJmYWxzZSIsImV4cCI6MTc3MDQ3MjU3OCwiaXNzIjoidGVzdCIsImF1ZCI6IlVzZXIifQ.rY03o82SKznD7NOktXKzTOI1btl2FHsklMCChOlZUeY # API 请求超时(秒) API_TIMEOUT=20 diff --git a/etl_billiards/config/defaults.py b/etl_billiards/config/defaults.py index 1aab083..62a012e 100644 --- a/etl_billiards/config/defaults.py +++ b/etl_billiards/config/defaults.py @@ -109,9 +109,18 @@ DEFAULTS = { "mode": "history", "history_start": "2025-07-01", "history_end": "", - "include_dimensions": False, + "include_dimensions": True, "auto_check": False, + "auto_backfill": False, + "compare_content": True, + "content_sample_limit": 50, + "backfill_mismatch": True, + "recheck_after_backfill": True, "ods_task_codes": "", + "force_monthly_split": True, + }, + "dwd": { + "fact_upsert": True, }, } diff --git a/etl_billiards/config/env_parser.py b/etl_billiards/config/env_parser.py index 1b1aee5..48d9a93 100644 --- a/etl_billiards/config/env_parser.py +++ b/etl_billiards/config/env_parser.py @@ -55,7 +55,12 @@ ENV_MAP = { "INTEGRITY_INCLUDE_DIMENSIONS": ("integrity.include_dimensions",), "INTEGRITY_AUTO_CHECK": ("integrity.auto_check",), "INTEGRITY_AUTO_BACKFILL": ("integrity.auto_backfill",), + "INTEGRITY_COMPARE_CONTENT": ("integrity.compare_content",), + "INTEGRITY_CONTENT_SAMPLE_LIMIT": ("integrity.content_sample_limit",), + "INTEGRITY_BACKFILL_MISMATCH": ("integrity.backfill_mismatch",), + "INTEGRITY_RECHECK_AFTER_BACKFILL": ("integrity.recheck_after_backfill",), "INTEGRITY_ODS_TASK_CODES": ("integrity.ods_task_codes",), + "DWD_FACT_UPSERT": ("dwd.fact_upsert",), } diff --git a/etl_billiards/database/schema_ODS_doc.sql b/etl_billiards/database/schema_ODS_doc.sql index d194c25..77db312 100644 --- a/etl_billiards/database/schema_ODS_doc.sql +++ b/etl_billiards/database/schema_ODS_doc.sql @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_profiles ( tenant_id BIGINT, register_site_id BIGINT, site_name TEXT, - id BIGINT PRIMARY KEY, + id BIGINT, system_member_id BIGINT, member_card_grade_code BIGINT, member_card_grade_name TEXT, @@ -19,10 +19,12 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_profiles ( status INT, user_status INT, create_time TIMESTAMP, + content_hash TEXT NOT NULL, source_file TEXT, source_endpoint TEXT, fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.member_profiles IS 'ODS 原始明细表:会员档案/会员账户信息。来源:export/test-json-doc/member_profiles.json;分析:member_profiles-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -53,7 +55,7 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_balance_changes ( register_site_id BIGINT, registerSiteName TEXT, paySiteName TEXT, - id BIGINT PRIMARY KEY, + id BIGINT, tenant_member_id BIGINT, tenant_member_card_id BIGINT, system_member_id BIGINT, @@ -73,10 +75,12 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_balance_changes ( operator_name TEXT, is_delete INT, create_time TIMESTAMP, + content_hash TEXT NOT NULL, source_file TEXT, source_endpoint TEXT, fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.member_balance_changes IS 'ODS 原始明细表:会员余额变更流水。来源:export/test-json-doc/member_balance_changes.json;分析:member_balance_changes-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -117,7 +121,7 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_stored_value_cards ( system_member_id BIGINT, register_site_id BIGINT, site_name TEXT, - id BIGINT PRIMARY KEY, + id BIGINT, member_card_grade_code BIGINT, member_card_grade_code_name TEXT, member_card_type_name TEXT, @@ -181,10 +185,12 @@ CREATE TABLE IF NOT EXISTS billiards_ods.member_stored_value_cards ( tenantName TEXT, pdAssisnatLevel TEXT, cxAssisnatLevel TEXT, + content_hash TEXT NOT NULL, source_file TEXT, source_endpoint TEXT, fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.member_stored_value_cards IS 'ODS 原始明细表:会员储值/卡券账户列表。来源:export/test-json-doc/member_stored_value_cards.json;分析:member_stored_value_cards-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -264,71 +270,73 @@ COMMENT ON COLUMN billiards_ods.member_stored_value_cards.payload IS '【说明 CREATE TABLE IF NOT EXISTS billiards_ods.recharge_settlements ( - id BIGINT PRIMARY KEY, - tenantid BIGINT, - siteid BIGINT, - sitename TEXT, - balanceamount NUMERIC(18,2), - cardamount NUMERIC(18,2), - cashamount NUMERIC(18,2), - couponamount NUMERIC(18,2), - createtime TIMESTAMPTZ, - memberid BIGINT, - membername TEXT, - tenantmembercardid BIGINT, - membercardtypename TEXT, - memberphone TEXT, - tableid BIGINT, - consumemoney NUMERIC(18,2), - onlineamount NUMERIC(18,2), - operatorid BIGINT, - operatorname TEXT, - revokeorderid BIGINT, - revokeordername TEXT, - revoketime TIMESTAMPTZ, - payamount NUMERIC(18,2), - pointamount NUMERIC(18,2), - refundamount NUMERIC(18,2), - settlename TEXT, - settlerelateid BIGINT, - settlestatus INT, - settletype INT, - paytime TIMESTAMPTZ, - roundingamount NUMERIC(18,2), - paymentmethod INT, - adjustamount NUMERIC(18,2), - assistantcxmoney NUMERIC(18,2), - assistantpdmoney NUMERIC(18,2), - couponsaleamount NUMERIC(18,2), - memberdiscountamount NUMERIC(18,2), - tablechargemoney NUMERIC(18,2), - goodsmoney NUMERIC(18,2), - realgoodsmoney NUMERIC(18,2), - servicemoney NUMERIC(18,2), - prepaymoney NUMERIC(18,2), - salesmanname TEXT, - orderremark TEXT, - salesmanuserid BIGINT, - canberevoked BOOLEAN, - pointdiscountprice NUMERIC(18,2), - pointdiscountcost NUMERIC(18,2), - activitydiscount NUMERIC(18,2), - serialnumber BIGINT, - assistantmanualdiscount NUMERIC(18,2), - allcoupondiscount NUMERIC(18,2), - goodspromotionmoney NUMERIC(18,2), - assistantpromotionmoney NUMERIC(18,2), - isusecoupon BOOLEAN, - isusediscount BOOLEAN, - isactivity BOOLEAN, - isbindmember BOOLEAN, - isfirst INT, - rechargecardamount NUMERIC(18,2), - giftcardamount NUMERIC(18,2), - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenantid BIGINT, + siteid BIGINT, + sitename TEXT, + balanceamount NUMERIC(18,2), + cardamount NUMERIC(18,2), + cashamount NUMERIC(18,2), + couponamount NUMERIC(18,2), + createtime TIMESTAMPTZ, + memberid BIGINT, + membername TEXT, + tenantmembercardid BIGINT, + membercardtypename TEXT, + memberphone TEXT, + tableid BIGINT, + consumemoney NUMERIC(18,2), + onlineamount NUMERIC(18,2), + operatorid BIGINT, + operatorname TEXT, + revokeorderid BIGINT, + revokeordername TEXT, + revoketime TIMESTAMPTZ, + payamount NUMERIC(18,2), + pointamount NUMERIC(18,2), + refundamount NUMERIC(18,2), + settlename TEXT, + settlerelateid BIGINT, + settlestatus INT, + settletype INT, + paytime TIMESTAMPTZ, + roundingamount NUMERIC(18,2), + paymentmethod INT, + adjustamount NUMERIC(18,2), + assistantcxmoney NUMERIC(18,2), + assistantpdmoney NUMERIC(18,2), + couponsaleamount NUMERIC(18,2), + memberdiscountamount NUMERIC(18,2), + tablechargemoney NUMERIC(18,2), + goodsmoney NUMERIC(18,2), + realgoodsmoney NUMERIC(18,2), + servicemoney NUMERIC(18,2), + prepaymoney NUMERIC(18,2), + salesmanname TEXT, + orderremark TEXT, + salesmanuserid BIGINT, + canberevoked BOOLEAN, + pointdiscountprice NUMERIC(18,2), + pointdiscountcost NUMERIC(18,2), + activitydiscount NUMERIC(18,2), + serialnumber BIGINT, + assistantmanualdiscount NUMERIC(18,2), + allcoupondiscount NUMERIC(18,2), + goodspromotionmoney NUMERIC(18,2), + assistantpromotionmoney NUMERIC(18,2), + isusecoupon BOOLEAN, + isusediscount BOOLEAN, + isactivity BOOLEAN, + isbindmember BOOLEAN, + isfirst INT, + rechargecardamount NUMERIC(18,2), + giftcardamount NUMERIC(18,2), + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.recharge_settlements IS 'ODS 原始明细表:充值结算记录。来源:export/test-json-doc/recharge_settlements.json;分析:recharge_settlements-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -400,71 +408,73 @@ COMMENT ON COLUMN billiards_ods.recharge_settlements.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.settlement_records ( - id BIGINT PRIMARY KEY, - tenantid BIGINT, - siteid BIGINT, - sitename TEXT, - balanceamount NUMERIC(18,2), - cardamount NUMERIC(18,2), - cashamount NUMERIC(18,2), - couponamount NUMERIC(18,2), - createtime TIMESTAMPTZ, - memberid BIGINT, - membername TEXT, - tenantmembercardid BIGINT, - membercardtypename TEXT, - memberphone TEXT, - tableid BIGINT, - consumemoney NUMERIC(18,2), - onlineamount NUMERIC(18,2), - operatorid BIGINT, - operatorname TEXT, - revokeorderid BIGINT, - revokeordername TEXT, - revoketime TIMESTAMPTZ, - payamount NUMERIC(18,2), - pointamount NUMERIC(18,2), - refundamount NUMERIC(18,2), - settlename TEXT, - settlerelateid BIGINT, - settlestatus INT, - settletype INT, - paytime TIMESTAMPTZ, - roundingamount NUMERIC(18,2), - paymentmethod INT, - adjustamount NUMERIC(18,2), - assistantcxmoney NUMERIC(18,2), - assistantpdmoney NUMERIC(18,2), - couponsaleamount NUMERIC(18,2), - memberdiscountamount NUMERIC(18,2), - tablechargemoney NUMERIC(18,2), - goodsmoney NUMERIC(18,2), - realgoodsmoney NUMERIC(18,2), - servicemoney NUMERIC(18,2), - prepaymoney NUMERIC(18,2), - salesmanname TEXT, - orderremark TEXT, - salesmanuserid BIGINT, - canberevoked BOOLEAN, - pointdiscountprice NUMERIC(18,2), - pointdiscountcost NUMERIC(18,2), - activitydiscount NUMERIC(18,2), - serialnumber BIGINT, - assistantmanualdiscount NUMERIC(18,2), - allcoupondiscount NUMERIC(18,2), - goodspromotionmoney NUMERIC(18,2), - assistantpromotionmoney NUMERIC(18,2), - isusecoupon BOOLEAN, - isusediscount BOOLEAN, - isactivity BOOLEAN, - isbindmember BOOLEAN, - isfirst INT, - rechargecardamount NUMERIC(18,2), - giftcardamount NUMERIC(18,2), - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenantid BIGINT, + siteid BIGINT, + sitename TEXT, + balanceamount NUMERIC(18,2), + cardamount NUMERIC(18,2), + cashamount NUMERIC(18,2), + couponamount NUMERIC(18,2), + createtime TIMESTAMPTZ, + memberid BIGINT, + membername TEXT, + tenantmembercardid BIGINT, + membercardtypename TEXT, + memberphone TEXT, + tableid BIGINT, + consumemoney NUMERIC(18,2), + onlineamount NUMERIC(18,2), + operatorid BIGINT, + operatorname TEXT, + revokeorderid BIGINT, + revokeordername TEXT, + revoketime TIMESTAMPTZ, + payamount NUMERIC(18,2), + pointamount NUMERIC(18,2), + refundamount NUMERIC(18,2), + settlename TEXT, + settlerelateid BIGINT, + settlestatus INT, + settletype INT, + paytime TIMESTAMPTZ, + roundingamount NUMERIC(18,2), + paymentmethod INT, + adjustamount NUMERIC(18,2), + assistantcxmoney NUMERIC(18,2), + assistantpdmoney NUMERIC(18,2), + couponsaleamount NUMERIC(18,2), + memberdiscountamount NUMERIC(18,2), + tablechargemoney NUMERIC(18,2), + goodsmoney NUMERIC(18,2), + realgoodsmoney NUMERIC(18,2), + servicemoney NUMERIC(18,2), + prepaymoney NUMERIC(18,2), + salesmanname TEXT, + orderremark TEXT, + salesmanuserid BIGINT, + canberevoked BOOLEAN, + pointdiscountprice NUMERIC(18,2), + pointdiscountcost NUMERIC(18,2), + activitydiscount NUMERIC(18,2), + serialnumber BIGINT, + assistantmanualdiscount NUMERIC(18,2), + allcoupondiscount NUMERIC(18,2), + goodspromotionmoney NUMERIC(18,2), + assistantpromotionmoney NUMERIC(18,2), + isusecoupon BOOLEAN, + isusediscount BOOLEAN, + isactivity BOOLEAN, + isbindmember BOOLEAN, + isfirst INT, + rechargecardamount NUMERIC(18,2), + giftcardamount NUMERIC(18,2), + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.settlement_records IS 'ODS 原始明细表:结账/结算记录。来源:export/test-json-doc/settlement_records.json;分析:settlement_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -536,23 +546,25 @@ COMMENT ON COLUMN billiards_ods.settlement_records.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.assistant_cancellation_records ( - id BIGINT PRIMARY KEY, - siteId BIGINT, - siteProfile JSONB, - assistantName TEXT, - assistantAbolishAmount NUMERIC(18,2), - assistantOn INT, - pdChargeMinutes INT, - tableAreaId BIGINT, - tableArea TEXT, - tableId BIGINT, - tableName TEXT, - trashReason TEXT, - createTime TIMESTAMP, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + siteId BIGINT, + siteProfile JSONB, + assistantName TEXT, + assistantAbolishAmount NUMERIC(18,2), + assistantOn INT, + pdChargeMinutes INT, + tableAreaId BIGINT, + tableArea TEXT, + tableId BIGINT, + tableName TEXT, + trashReason TEXT, + createTime TIMESTAMP, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.assistant_cancellation_records IS 'ODS 原始明细表:助教作废/取消记录。来源:export/test-json-doc/assistant_cancellation_records.json;分析:assistant_cancellation_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -576,72 +588,74 @@ COMMENT ON COLUMN billiards_ods.assistant_cancellation_records.payload IS '【 CREATE TABLE IF NOT EXISTS billiards_ods.assistant_accounts_master ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - assistant_no TEXT, - nickname TEXT, - real_name TEXT, - mobile TEXT, - team_id BIGINT, - team_name TEXT, - user_id BIGINT, - level TEXT, - assistant_status INT, - work_status INT, - leave_status INT, - entry_time TIMESTAMP, - resign_time TIMESTAMP, - start_time TIMESTAMP, - end_time TIMESTAMP, - create_time TIMESTAMP, - update_time TIMESTAMP, - order_trade_no TEXT, - staff_id BIGINT, - staff_profile_id BIGINT, - system_role_id BIGINT, - avatar TEXT, - birth_date TIMESTAMP, - gender INT, - height NUMERIC(18,2), - weight NUMERIC(18,2), - job_num TEXT, - show_status INT, - show_sort INT, - sum_grade NUMERIC(18,2), - assistant_grade NUMERIC(18,2), - get_grade_times INT, - introduce TEXT, - video_introduction_url TEXT, - group_id BIGINT, - group_name TEXT, - shop_name TEXT, - charge_way INT, - entry_type INT, - allow_cx INT, - is_guaranteed INT, - salary_grant_enabled INT, - light_status INT, - online_status INT, - is_delete INT, - cx_unit_price NUMERIC(18,2), - pd_unit_price NUMERIC(18,2), - last_table_id BIGINT, - last_table_name TEXT, - person_org_id BIGINT, - serial_number BIGINT, - is_team_leader INT, - criticism_status INT, - last_update_name TEXT, - ding_talk_synced INT, - site_light_cfg_id BIGINT, - light_equipment_id TEXT, - entry_sign_status INT, - resign_sign_status INT, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + assistant_no TEXT, + nickname TEXT, + real_name TEXT, + mobile TEXT, + team_id BIGINT, + team_name TEXT, + user_id BIGINT, + level TEXT, + assistant_status INT, + work_status INT, + leave_status INT, + entry_time TIMESTAMP, + resign_time TIMESTAMP, + start_time TIMESTAMP, + end_time TIMESTAMP, + create_time TIMESTAMP, + update_time TIMESTAMP, + order_trade_no TEXT, + staff_id BIGINT, + staff_profile_id BIGINT, + system_role_id BIGINT, + avatar TEXT, + birth_date TIMESTAMP, + gender INT, + height NUMERIC(18,2), + weight NUMERIC(18,2), + job_num TEXT, + show_status INT, + show_sort INT, + sum_grade NUMERIC(18,2), + assistant_grade NUMERIC(18,2), + get_grade_times INT, + introduce TEXT, + video_introduction_url TEXT, + group_id BIGINT, + group_name TEXT, + shop_name TEXT, + charge_way INT, + entry_type INT, + allow_cx INT, + is_guaranteed INT, + salary_grant_enabled INT, + light_status INT, + online_status INT, + is_delete INT, + cx_unit_price NUMERIC(18,2), + pd_unit_price NUMERIC(18,2), + last_table_id BIGINT, + last_table_name TEXT, + person_org_id BIGINT, + serial_number BIGINT, + is_team_leader INT, + criticism_status INT, + last_update_name TEXT, + ding_talk_synced INT, + site_light_cfg_id BIGINT, + light_equipment_id TEXT, + entry_sign_status INT, + resign_sign_status INT, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.assistant_accounts_master IS 'ODS 原始明细表:助教档案主数据。来源:export/test-json-doc/assistant_accounts_master.json;分析:assistant_accounts_master-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -714,74 +728,76 @@ COMMENT ON COLUMN billiards_ods.assistant_accounts_master.payload IS '【说明 CREATE TABLE IF NOT EXISTS billiards_ods.assistant_service_records ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteProfile JSONB, - site_table_id BIGINT, - order_settle_id BIGINT, - order_trade_no TEXT, - order_pay_id BIGINT, - order_assistant_id BIGINT, - order_assistant_type INT, - assistantName TEXT, - assistantNo TEXT, - assistant_level TEXT, - levelname TEXT, - site_assistant_id BIGINT, - skill_id BIGINT, - skillname TEXT, - system_member_id BIGINT, - tablename TEXT, - tenant_member_id BIGINT, - user_id BIGINT, - assistant_team_id BIGINT, - nickname TEXT, - ledger_name TEXT, - ledger_group_name TEXT, - ledger_amount NUMERIC(18,2), - ledger_count NUMERIC(18,4), - ledger_unit_price NUMERIC(18,4), - ledger_status INT, - ledger_start_time TIMESTAMP, - ledger_end_time TIMESTAMP, - manual_discount_amount NUMERIC(18,2), - member_discount_amount NUMERIC(18,2), - coupon_deduct_money NUMERIC(18,2), - service_money NUMERIC(18,2), - projected_income NUMERIC(18,2), - real_use_seconds INT, - income_seconds INT, - start_use_time TIMESTAMP, - last_use_time TIMESTAMP, - create_time TIMESTAMP, - is_single_order INT, - is_delete INT, - is_trash INT, - trash_reason TEXT, - trash_applicant_id BIGINT, - trash_applicant_name TEXT, - operator_id BIGINT, - operator_name TEXT, - salesman_name TEXT, - salesman_org_id BIGINT, - salesman_user_id BIGINT, - person_org_id BIGINT, - add_clock INT, - returns_clock INT, - composite_grade NUMERIC(10,2), - composite_grade_time TIMESTAMP, - skill_grade NUMERIC(10,2), - service_grade NUMERIC(10,2), - sum_grade NUMERIC(10,2), - grade_status INT, - get_grade_times INT, - is_not_responding INT, - is_confirm INT, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteProfile JSONB, + site_table_id BIGINT, + order_settle_id BIGINT, + order_trade_no TEXT, + order_pay_id BIGINT, + order_assistant_id BIGINT, + order_assistant_type INT, + assistantName TEXT, + assistantNo TEXT, + assistant_level TEXT, + levelname TEXT, + site_assistant_id BIGINT, + skill_id BIGINT, + skillname TEXT, + system_member_id BIGINT, + tablename TEXT, + tenant_member_id BIGINT, + user_id BIGINT, + assistant_team_id BIGINT, + nickname TEXT, + ledger_name TEXT, + ledger_group_name TEXT, + ledger_amount NUMERIC(18,2), + ledger_count NUMERIC(18,4), + ledger_unit_price NUMERIC(18,4), + ledger_status INT, + ledger_start_time TIMESTAMP, + ledger_end_time TIMESTAMP, + manual_discount_amount NUMERIC(18,2), + member_discount_amount NUMERIC(18,2), + coupon_deduct_money NUMERIC(18,2), + service_money NUMERIC(18,2), + projected_income NUMERIC(18,2), + real_use_seconds INT, + income_seconds INT, + start_use_time TIMESTAMP, + last_use_time TIMESTAMP, + create_time TIMESTAMP, + is_single_order INT, + is_delete INT, + is_trash INT, + trash_reason TEXT, + trash_applicant_id BIGINT, + trash_applicant_name TEXT, + operator_id BIGINT, + operator_name TEXT, + salesman_name TEXT, + salesman_org_id BIGINT, + salesman_user_id BIGINT, + person_org_id BIGINT, + add_clock INT, + returns_clock INT, + composite_grade NUMERIC(10,2), + composite_grade_time TIMESTAMP, + skill_grade NUMERIC(10,2), + service_grade NUMERIC(10,2), + sum_grade NUMERIC(10,2), + grade_status INT, + get_grade_times INT, + is_not_responding INT, + is_confirm INT, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.assistant_service_records IS 'ODS 原始明细表:助教服务流水。来源:export/test-json-doc/assistant_service_records.json;分析:assistant_service_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -856,35 +872,37 @@ COMMENT ON COLUMN billiards_ods.assistant_service_records.fetched_at IS '【说 CREATE TABLE IF NOT EXISTS billiards_ods.site_tables_master ( - id BIGINT PRIMARY KEY, - site_id BIGINT, - siteName TEXT, - "appletQrCodeUrl" TEXT, - areaName TEXT, - audit_status INT, - charge_free INT, - create_time TIMESTAMP, - delay_lights_time INT, - is_online_reservation INT, - is_rest_area INT, - light_status INT, - only_allow_groupon INT, - order_delay_time INT, - self_table INT, - show_status INT, - site_table_area_id BIGINT, - tableStatusName TEXT, - table_cloth_use_Cycle INT, - table_cloth_use_time TIMESTAMP, - table_name TEXT, - table_price NUMERIC(18,2), - table_status INT, - temporary_light_second INT, - virtual_table INT, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + site_id BIGINT, + siteName TEXT, + "appletQrCodeUrl" TEXT, + areaName TEXT, + audit_status INT, + charge_free INT, + create_time TIMESTAMP, + delay_lights_time INT, + is_online_reservation INT, + is_rest_area INT, + light_status INT, + only_allow_groupon INT, + order_delay_time INT, + self_table INT, + show_status INT, + site_table_area_id BIGINT, + tableStatusName TEXT, + table_cloth_use_Cycle INT, + table_cloth_use_time TIMESTAMP, + table_name TEXT, + table_price NUMERIC(18,2), + table_status INT, + temporary_light_second INT, + virtual_table INT, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.site_tables_master IS 'ODS 原始明细表:门店桌台主数据。来源:export/test-json-doc/site_tables_master.json;分析:site_tables_master-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -919,30 +937,32 @@ COMMENT ON COLUMN billiards_ods.site_tables_master.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.table_fee_discount_records ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteProfile JSONB, - site_table_id BIGINT, - tableProfile JSONB, - tenant_table_area_id BIGINT, - adjust_type INT, - ledger_amount NUMERIC(18,2), - ledger_count NUMERIC(18,4), - ledger_name TEXT, - ledger_status INT, - applicant_id BIGINT, - applicant_name TEXT, - operator_id BIGINT, - operator_name TEXT, - order_settle_id BIGINT, - order_trade_no TEXT, - is_delete INT, - create_time TIMESTAMP, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteProfile JSONB, + site_table_id BIGINT, + tableProfile JSONB, + tenant_table_area_id BIGINT, + adjust_type INT, + ledger_amount NUMERIC(18,2), + ledger_count NUMERIC(18,4), + ledger_name TEXT, + ledger_status INT, + applicant_id BIGINT, + applicant_name TEXT, + operator_id BIGINT, + operator_name TEXT, + order_settle_id BIGINT, + order_trade_no TEXT, + is_delete INT, + create_time TIMESTAMP, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.table_fee_discount_records IS 'ODS 原始明细表:台费折扣记录。来源:export/test-json-doc/table_fee_discount_records.json;分析:table_fee_discount_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -973,49 +993,51 @@ COMMENT ON COLUMN billiards_ods.table_fee_discount_records.payload IS '【说明 CREATE TABLE IF NOT EXISTS billiards_ods.table_fee_transactions ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteProfile JSONB, - site_table_id BIGINT, - site_table_area_id BIGINT, - site_table_area_name TEXT, - tenant_table_area_id BIGINT, - order_trade_no TEXT, - order_pay_id BIGINT, - order_settle_id BIGINT, - ledger_name TEXT, - ledger_amount NUMERIC(18,2), - ledger_count NUMERIC(18,4), - ledger_unit_price NUMERIC(18,4), - ledger_status INT, - ledger_start_time TIMESTAMP, - ledger_end_time TIMESTAMP, - start_use_time TIMESTAMP, - last_use_time TIMESTAMP, - real_table_use_seconds INT, - real_table_charge_money NUMERIC(18,2), - add_clock_seconds INT, - adjust_amount NUMERIC(18,2), - coupon_promotion_amount NUMERIC(18,2), - member_discount_amount NUMERIC(18,2), - used_card_amount NUMERIC(18,2), - mgmt_fee NUMERIC(18,2), - service_money NUMERIC(18,2), - fee_total NUMERIC(18,2), - is_single_order INT, - is_delete INT, - member_id BIGINT, - operator_id BIGINT, - operator_name TEXT, - salesman_name TEXT, - salesman_org_id BIGINT, - salesman_user_id BIGINT, - create_time TIMESTAMP, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteProfile JSONB, + site_table_id BIGINT, + site_table_area_id BIGINT, + site_table_area_name TEXT, + tenant_table_area_id BIGINT, + order_trade_no TEXT, + order_pay_id BIGINT, + order_settle_id BIGINT, + ledger_name TEXT, + ledger_amount NUMERIC(18,2), + ledger_count NUMERIC(18,4), + ledger_unit_price NUMERIC(18,4), + ledger_status INT, + ledger_start_time TIMESTAMP, + ledger_end_time TIMESTAMP, + start_use_time TIMESTAMP, + last_use_time TIMESTAMP, + real_table_use_seconds INT, + real_table_charge_money NUMERIC(18,2), + add_clock_seconds INT, + adjust_amount NUMERIC(18,2), + coupon_promotion_amount NUMERIC(18,2), + member_discount_amount NUMERIC(18,2), + used_card_amount NUMERIC(18,2), + mgmt_fee NUMERIC(18,2), + service_money NUMERIC(18,2), + fee_total NUMERIC(18,2), + is_single_order INT, + is_delete INT, + member_id BIGINT, + operator_id BIGINT, + operator_name TEXT, + salesman_name TEXT, + salesman_org_id BIGINT, + salesman_user_id BIGINT, + create_time TIMESTAMP, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.table_fee_transactions IS 'ODS 原始明细表:台费流水。来源:export/test-json-doc/table_fee_transactions.json;分析:table_fee_transactions-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1065,29 +1087,31 @@ COMMENT ON COLUMN billiards_ods.table_fee_transactions.fetched_at IS '【说明 CREATE TABLE IF NOT EXISTS billiards_ods.goods_stock_movements ( - siteGoodsStockId BIGINT PRIMARY KEY, - tenantId BIGINT, - siteId BIGINT, - siteGoodsId BIGINT, - goodsName TEXT, - goodsCategoryId BIGINT, - goodsSecondCategoryId BIGINT, - unit TEXT, - price NUMERIC(18,4), - stockType INT, - changeNum NUMERIC(18,4), - startNum NUMERIC(18,4), - endNum NUMERIC(18,4), - changeNumA NUMERIC(18,4), - startNumA NUMERIC(18,4), - endNumA NUMERIC(18,4), - remark TEXT, - operatorName TEXT, - createTime TIMESTAMP, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + siteGoodsStockId BIGINT, + tenantId BIGINT, + siteId BIGINT, + siteGoodsId BIGINT, + goodsName TEXT, + goodsCategoryId BIGINT, + goodsSecondCategoryId BIGINT, + unit TEXT, + price NUMERIC(18,4), + stockType INT, + changeNum NUMERIC(18,4), + startNum NUMERIC(18,4), + endNum NUMERIC(18,4), + changeNumA NUMERIC(18,4), + startNumA NUMERIC(18,4), + endNumA NUMERIC(18,4), + remark TEXT, + operatorName TEXT, + createTime TIMESTAMP, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (siteGoodsStockId, content_hash) ); COMMENT ON TABLE billiards_ods.goods_stock_movements IS 'ODS 原始明细表:商品库存变动流水。来源:export/test-json-doc/goods_stock_movements.json;分析:goods_stock_movements-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1117,21 +1141,23 @@ COMMENT ON COLUMN billiards_ods.goods_stock_movements.payload IS '【说明】 CREATE TABLE IF NOT EXISTS billiards_ods.stock_goods_category_tree ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - category_name TEXT, - alias_name TEXT, - pid BIGINT, - business_name TEXT, - tenant_goods_business_id BIGINT, - open_salesman INT, - categoryBoxes JSONB, - sort INT, - is_warehousing INT, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenant_id BIGINT, + category_name TEXT, + alias_name TEXT, + pid BIGINT, + business_name TEXT, + tenant_goods_business_id BIGINT, + open_salesman INT, + categoryBoxes JSONB, + sort INT, + is_warehousing INT, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.stock_goods_category_tree IS 'ODS 原始明细表:商品分类树。来源:export/test-json-doc/stock_goods_category_tree.json;分析:stock_goods_category_tree-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1153,24 +1179,26 @@ COMMENT ON COLUMN billiards_ods.stock_goods_category_tree.payload IS '【说明 CREATE TABLE IF NOT EXISTS billiards_ods.goods_stock_summary ( - siteGoodsId BIGINT PRIMARY KEY, - goodsName TEXT, - goodsUnit TEXT, - goodsCategoryId BIGINT, - goodsCategorySecondId BIGINT, - categoryName TEXT, - rangeStartStock NUMERIC(18,4), - rangeEndStock NUMERIC(18,4), - rangeIn NUMERIC(18,4), - rangeOut NUMERIC(18,4), - rangeSale NUMERIC(18,4), - rangeSaleMoney NUMERIC(18,2), - rangeInventory NUMERIC(18,4), - currentStock NUMERIC(18,4), - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + siteGoodsId BIGINT, + goodsName TEXT, + goodsUnit TEXT, + goodsCategoryId BIGINT, + goodsCategorySecondId BIGINT, + categoryName TEXT, + rangeStartStock NUMERIC(18,4), + rangeEndStock NUMERIC(18,4), + rangeIn NUMERIC(18,4), + rangeOut NUMERIC(18,4), + rangeSale NUMERIC(18,4), + rangeSaleMoney NUMERIC(18,2), + rangeInventory NUMERIC(18,4), + currentStock NUMERIC(18,4), + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (siteGoodsId, content_hash) ); COMMENT ON TABLE billiards_ods.goods_stock_summary IS 'ODS 原始明细表:商品库存汇总。来源:export/test-json-doc/goods_stock_summary.json;分析:goods_stock_summary-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1195,21 +1223,23 @@ COMMENT ON COLUMN billiards_ods.goods_stock_summary.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.payment_transactions ( - id BIGINT PRIMARY KEY, - site_id BIGINT, - siteProfile JSONB, - relate_type INT, - relate_id BIGINT, - pay_amount NUMERIC(18,2), - pay_status INT, - pay_time TIMESTAMP, - create_time TIMESTAMP, - payment_method INT, - online_pay_channel INT, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + site_id BIGINT, + siteProfile JSONB, + relate_type INT, + relate_id BIGINT, + pay_amount NUMERIC(18,2), + pay_status INT, + pay_time TIMESTAMP, + create_time TIMESTAMP, + payment_method INT, + online_pay_channel INT, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.payment_transactions IS 'ODS 原始明细表:支付流水。来源:export/test-json-doc/payment_transactions.json;分析:payment_transactions-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1231,42 +1261,44 @@ COMMENT ON COLUMN billiards_ods.payment_transactions.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.refund_transactions ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - tenantName TEXT, - site_id BIGINT, - siteProfile JSONB, - relate_type INT, - relate_id BIGINT, - pay_sn TEXT, - pay_amount NUMERIC(18,2), - refund_amount NUMERIC(18,2), - round_amount NUMERIC(18,2), - pay_status INT, - pay_time TIMESTAMP, - create_time TIMESTAMP, - payment_method INT, - pay_terminal INT, - pay_config_id BIGINT, - online_pay_channel INT, - online_pay_type INT, - channel_fee NUMERIC(18,2), - channel_payer_id TEXT, - channel_pay_no TEXT, - member_id BIGINT, - member_card_id BIGINT, - cashier_point_id BIGINT, - operator_id BIGINT, - action_type INT, - check_status INT, - is_revoke INT, - is_delete INT, - balance_frozen_amount NUMERIC(18,2), - card_frozen_amount NUMERIC(18,2), - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + tenant_id BIGINT, + tenantName TEXT, + site_id BIGINT, + siteProfile JSONB, + relate_type INT, + relate_id BIGINT, + pay_sn TEXT, + pay_amount NUMERIC(18,2), + refund_amount NUMERIC(18,2), + round_amount NUMERIC(18,2), + pay_status INT, + pay_time TIMESTAMP, + create_time TIMESTAMP, + payment_method INT, + pay_terminal INT, + pay_config_id BIGINT, + online_pay_channel INT, + online_pay_type INT, + channel_fee NUMERIC(18,2), + channel_payer_id TEXT, + channel_pay_no TEXT, + member_id BIGINT, + member_card_id BIGINT, + cashier_point_id BIGINT, + operator_id BIGINT, + action_type INT, + check_status INT, + is_revoke INT, + is_delete INT, + balance_frozen_amount NUMERIC(18,2), + card_frozen_amount NUMERIC(18,2), + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.refund_transactions IS 'ODS 原始明细表:退款流水。来源:export/test-json-doc/refund_transactions.json;分析:refund_transactions-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1309,36 +1341,38 @@ COMMENT ON COLUMN billiards_ods.refund_transactions.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.platform_coupon_redemption_records ( - id BIGINT PRIMARY KEY, - verify_id BIGINT, - certificate_id TEXT, - coupon_code TEXT, - coupon_name TEXT, - coupon_channel INT, - groupon_type INT, - group_package_id BIGINT, - sale_price NUMERIC(18,2), - coupon_money NUMERIC(18,2), - coupon_free_time NUMERIC(18,2), - coupon_cover TEXT, - coupon_remark TEXT, - use_status INT, - consume_time TIMESTAMP, - create_time TIMESTAMP, - deal_id TEXT, - channel_deal_id TEXT, - site_id BIGINT, - site_order_id BIGINT, - table_id BIGINT, - tenant_id BIGINT, - operator_id BIGINT, - operator_name TEXT, - is_delete INT, - siteProfile JSONB, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + verify_id BIGINT, + certificate_id TEXT, + coupon_code TEXT, + coupon_name TEXT, + coupon_channel INT, + groupon_type INT, + group_package_id BIGINT, + sale_price NUMERIC(18,2), + coupon_money NUMERIC(18,2), + coupon_free_time NUMERIC(18,2), + coupon_cover TEXT, + coupon_remark TEXT, + use_status INT, + consume_time TIMESTAMP, + create_time TIMESTAMP, + deal_id TEXT, + channel_deal_id TEXT, + site_id BIGINT, + site_order_id BIGINT, + table_id BIGINT, + tenant_id BIGINT, + operator_id BIGINT, + operator_name TEXT, + is_delete INT, + siteProfile JSONB, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.platform_coupon_redemption_records IS 'ODS 原始明细表:平台券核销/使用记录。来源:export/test-json-doc/platform_coupon_redemption_records.json;分析:platform_coupon_redemption_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1375,41 +1409,43 @@ COMMENT ON COLUMN billiards_ods.platform_coupon_redemption_records.payload IS ' CREATE TABLE IF NOT EXISTS billiards_ods.tenant_goods_master ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - goods_name TEXT, - goods_bar_code TEXT, - goods_category_id BIGINT, - goods_second_category_id BIGINT, - categoryName TEXT, - unit TEXT, - goods_number TEXT, - out_goods_id TEXT, - goods_state INT, - sale_channel INT, - able_discount INT, - able_site_transfer INT, - is_delete INT, - is_warehousing INT, - isInSite INT, - cost_price NUMERIC(18,4), - cost_price_type INT, - market_price NUMERIC(18,4), - min_discount_price NUMERIC(18,4), - common_sale_royalty NUMERIC(18,4), - point_sale_royalty NUMERIC(18,4), - pinyin_initial TEXT, - commodityCode TEXT, - commodity_code TEXT, - goods_cover TEXT, - supplier_id BIGINT, - remark_name TEXT, - create_time TIMESTAMP, - update_time TIMESTAMP, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + goods_name TEXT, + goods_bar_code TEXT, + goods_category_id BIGINT, + goods_second_category_id BIGINT, + categoryName TEXT, + unit TEXT, + goods_number TEXT, + out_goods_id TEXT, + goods_state INT, + sale_channel INT, + able_discount INT, + able_site_transfer INT, + is_delete INT, + is_warehousing INT, + isInSite INT, + cost_price NUMERIC(18,4), + cost_price_type INT, + market_price NUMERIC(18,4), + min_discount_price NUMERIC(18,4), + common_sale_royalty NUMERIC(18,4), + point_sale_royalty NUMERIC(18,4), + pinyin_initial TEXT, + commodityCode TEXT, + commodity_code TEXT, + goods_cover TEXT, + supplier_id BIGINT, + remark_name TEXT, + create_time TIMESTAMP, + update_time TIMESTAMP, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.tenant_goods_master IS 'ODS 原始明细表:租户商品主数据。来源:export/test-json-doc/tenant_goods_master.json;分析:tenant_goods_master-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1451,45 +1487,47 @@ COMMENT ON COLUMN billiards_ods.tenant_goods_master.fetched_at IS '【说明】E CREATE TABLE IF NOT EXISTS billiards_ods.group_buy_packages ( - id BIGINT PRIMARY KEY, - package_id BIGINT, - package_name TEXT, - selling_price NUMERIC(18,2), - coupon_money NUMERIC(18,2), - date_type INT, - date_info TEXT, - start_time TIMESTAMP, - end_time TIMESTAMP, - start_clock TEXT, - end_clock TEXT, - add_start_clock TEXT, - add_end_clock TEXT, - duration INT, - usable_count INT, - usable_range INT, - table_area_id BIGINT, - table_area_name TEXT, - table_area_id_list JSONB, - tenant_table_area_id BIGINT, - tenant_table_area_id_list JSONB, - site_id BIGINT, - site_name TEXT, - tenant_id BIGINT, - card_type_ids JSONB, - group_type INT, - system_group_type INT, - type INT, - effective_status INT, - is_enabled INT, - is_delete INT, - max_selectable_categories INT, - area_tag_type INT, - creator_name TEXT, - create_time TIMESTAMP, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now(), - payload JSONB NOT NULL + id BIGINT, + package_id BIGINT, + package_name TEXT, + selling_price NUMERIC(18,2), + coupon_money NUMERIC(18,2), + date_type INT, + date_info TEXT, + start_time TIMESTAMP, + end_time TIMESTAMP, + start_clock TEXT, + end_clock TEXT, + add_start_clock TEXT, + add_end_clock TEXT, + duration INT, + usable_count INT, + usable_range INT, + table_area_id BIGINT, + table_area_name TEXT, + table_area_id_list JSONB, + tenant_table_area_id BIGINT, + tenant_table_area_id_list JSONB, + site_id BIGINT, + site_name TEXT, + tenant_id BIGINT, + card_type_ids JSONB, + group_type INT, + system_group_type INT, + type INT, + effective_status INT, + is_enabled INT, + is_delete INT, + max_selectable_categories INT, + area_tag_type INT, + creator_name TEXT, + create_time TIMESTAMP, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + payload JSONB NOT NULL, + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.group_buy_packages IS 'ODS 原始明细表:团购套餐主数据。来源:export/test-json-doc/group_buy_packages.json;分析:group_buy_packages-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1535,53 +1573,55 @@ COMMENT ON COLUMN billiards_ods.group_buy_packages.payload IS '【说明】完 CREATE TABLE IF NOT EXISTS billiards_ods.group_buy_redemption_records ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteName TEXT, - table_id BIGINT, - tableName TEXT, - tableAreaName TEXT, - tenant_table_area_id BIGINT, - order_trade_no TEXT, - order_settle_id BIGINT, - order_pay_id BIGINT, - order_coupon_id BIGINT, - order_coupon_channel INT, - coupon_code TEXT, - coupon_money NUMERIC(18,2), - coupon_origin_id BIGINT, - ledger_name TEXT, - ledger_group_name TEXT, - ledger_amount NUMERIC(18,2), - ledger_count NUMERIC(18,4), - ledger_unit_price NUMERIC(18,4), - ledger_status INT, - table_charge_seconds INT, - promotion_activity_id BIGINT, - promotion_coupon_id BIGINT, - promotion_seconds INT, - offer_type INT, - assistant_promotion_money NUMERIC(18,2), - assistant_service_promotion_money NUMERIC(18,2), - table_service_promotion_money NUMERIC(18,2), - goods_promotion_money NUMERIC(18,2), - recharge_promotion_money NUMERIC(18,2), - reward_promotion_money NUMERIC(18,2), - goodsOptionPrice NUMERIC(18,2), - salesman_name TEXT, - sales_man_org_id BIGINT, - salesman_role_id BIGINT, - salesman_user_id BIGINT, - operator_id BIGINT, - operator_name TEXT, - is_single_order INT, - is_delete INT, - create_time TIMESTAMP, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteName TEXT, + table_id BIGINT, + tableName TEXT, + tableAreaName TEXT, + tenant_table_area_id BIGINT, + order_trade_no TEXT, + order_settle_id BIGINT, + order_pay_id BIGINT, + order_coupon_id BIGINT, + order_coupon_channel INT, + coupon_code TEXT, + coupon_money NUMERIC(18,2), + coupon_origin_id BIGINT, + ledger_name TEXT, + ledger_group_name TEXT, + ledger_amount NUMERIC(18,2), + ledger_count NUMERIC(18,4), + ledger_unit_price NUMERIC(18,4), + ledger_status INT, + table_charge_seconds INT, + promotion_activity_id BIGINT, + promotion_coupon_id BIGINT, + promotion_seconds INT, + offer_type INT, + assistant_promotion_money NUMERIC(18,2), + assistant_service_promotion_money NUMERIC(18,2), + table_service_promotion_money NUMERIC(18,2), + goods_promotion_money NUMERIC(18,2), + recharge_promotion_money NUMERIC(18,2), + reward_promotion_money NUMERIC(18,2), + goodsOptionPrice NUMERIC(18,2), + salesman_name TEXT, + sales_man_org_id BIGINT, + salesman_role_id BIGINT, + salesman_user_id BIGINT, + operator_id BIGINT, + operator_name TEXT, + is_single_order INT, + is_delete INT, + create_time TIMESTAMP, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.group_buy_redemption_records IS 'ODS 原始明细表:团购核销记录。来源:export/test-json-doc/group_buy_redemption_records.json;分析:group_buy_redemption_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1635,48 +1675,50 @@ COMMENT ON COLUMN billiards_ods.group_buy_redemption_records.fetched_at IS '【 CREATE TABLE IF NOT EXISTS billiards_ods.settlement_ticket_details ( - orderSettleId BIGINT PRIMARY KEY, - actualPayment NUMERIC(18,2), - adjustAmount NUMERIC(18,2), - assistantManualDiscount NUMERIC(18,2), - balanceAmount NUMERIC(18,2), - cashierName TEXT, - consumeMoney NUMERIC(18,2), - couponAmount NUMERIC(18,2), - deliveryAddress TEXT, - deliveryFee NUMERIC(18,2), - ledgerAmount NUMERIC(18,2), - memberDeductAmount NUMERIC(18,2), - memberOfferAmount NUMERIC(18,2), - onlineReturnAmount NUMERIC(18,2), - orderRemark TEXT, - orderSettleNumber BIGINT, - payMemberBalance NUMERIC(18,2), - payTime TIMESTAMP, - paymentMethod INT, - pointDiscountCost NUMERIC(18,2), - pointDiscountPrice NUMERIC(18,2), - prepayMoney NUMERIC(18,2), - refundAmount NUMERIC(18,2), - returnGoodsAmount NUMERIC(18,2), - rewardName TEXT, - settleType TEXT, - siteAddress TEXT, - siteBusinessTel TEXT, - siteId BIGINT, - siteName TEXT, - tenantId BIGINT, - tenantName TEXT, - ticketCustomContent TEXT, - ticketRemark TEXT, - voucherMoney NUMERIC(18,2), - memberProfile JSONB, - orderItem JSONB, - tenantMemberCardLogs JSONB, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + orderSettleId BIGINT, + actualPayment NUMERIC(18,2), + adjustAmount NUMERIC(18,2), + assistantManualDiscount NUMERIC(18,2), + balanceAmount NUMERIC(18,2), + cashierName TEXT, + consumeMoney NUMERIC(18,2), + couponAmount NUMERIC(18,2), + deliveryAddress TEXT, + deliveryFee NUMERIC(18,2), + ledgerAmount NUMERIC(18,2), + memberDeductAmount NUMERIC(18,2), + memberOfferAmount NUMERIC(18,2), + onlineReturnAmount NUMERIC(18,2), + orderRemark TEXT, + orderSettleNumber BIGINT, + payMemberBalance NUMERIC(18,2), + payTime TIMESTAMP, + paymentMethod INT, + pointDiscountCost NUMERIC(18,2), + pointDiscountPrice NUMERIC(18,2), + prepayMoney NUMERIC(18,2), + refundAmount NUMERIC(18,2), + returnGoodsAmount NUMERIC(18,2), + rewardName TEXT, + settleType TEXT, + siteAddress TEXT, + siteBusinessTel TEXT, + siteId BIGINT, + siteName TEXT, + tenantId BIGINT, + tenantName TEXT, + ticketCustomContent TEXT, + ticketRemark TEXT, + voucherMoney NUMERIC(18,2), + memberProfile JSONB, + orderItem JSONB, + tenantMemberCardLogs JSONB, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (orderSettleId, content_hash) ); COMMENT ON TABLE billiards_ods.settlement_ticket_details IS 'ODS 原始明细表:结算小票明细。来源:export/test-json-doc/settlement_ticket_details.json;分析:settlement_ticket_details-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1725,55 +1767,57 @@ COMMENT ON COLUMN billiards_ods.settlement_ticket_details.fetched_at IS '【说 CREATE TABLE IF NOT EXISTS billiards_ods.store_goods_master ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteName TEXT, - tenant_goods_id BIGINT, - goods_name TEXT, - goods_bar_code TEXT, - goods_category_id BIGINT, - goods_second_category_id BIGINT, - oneCategoryName TEXT, - twoCategoryName TEXT, - unit TEXT, - sale_price NUMERIC(18,4), - cost_price NUMERIC(18,4), - cost_price_type INT, - min_discount_price NUMERIC(18,4), - safe_stock NUMERIC(18,4), - stock NUMERIC(18,4), - stock_A NUMERIC(18,4), - sale_num NUMERIC(18,4), - total_purchase_cost NUMERIC(18,4), - total_sales NUMERIC(18,4), - average_monthly_sales NUMERIC(18,4), - batch_stock_quantity NUMERIC(18,2), - days_available INT, - provisional_total_cost NUMERIC(18,2), - enable_status INT, - audit_status INT, - goods_state INT, - is_delete INT, - is_warehousing INT, - able_discount INT, - able_site_transfer INT, - forbid_sell_status INT, - "freeze" INT, - send_state INT, - custom_label_type INT, - option_required INT, - sale_channel INT, - sort INT, - remark TEXT, - pinyin_initial TEXT, - goods_cover TEXT, - create_time TIMESTAMP, - update_time TIMESTAMP, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteName TEXT, + tenant_goods_id BIGINT, + goods_name TEXT, + goods_bar_code TEXT, + goods_category_id BIGINT, + goods_second_category_id BIGINT, + oneCategoryName TEXT, + twoCategoryName TEXT, + unit TEXT, + sale_price NUMERIC(18,4), + cost_price NUMERIC(18,4), + cost_price_type INT, + min_discount_price NUMERIC(18,4), + safe_stock NUMERIC(18,4), + stock NUMERIC(18,4), + stock_A NUMERIC(18,4), + sale_num NUMERIC(18,4), + total_purchase_cost NUMERIC(18,4), + total_sales NUMERIC(18,4), + average_monthly_sales NUMERIC(18,4), + batch_stock_quantity NUMERIC(18,2), + days_available INT, + provisional_total_cost NUMERIC(18,2), + enable_status INT, + audit_status INT, + goods_state INT, + is_delete INT, + is_warehousing INT, + able_discount INT, + able_site_transfer INT, + forbid_sell_status INT, + "freeze" INT, + send_state INT, + custom_label_type INT, + option_required INT, + sale_channel INT, + sort INT, + remark TEXT, + pinyin_initial TEXT, + goods_cover TEXT, + create_time TIMESTAMP, + update_time TIMESTAMP, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.store_goods_master IS 'ODS 原始明细表:门店商品主数据。来源:export/test-json-doc/store_goods_master.json;分析:store_goods_master-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; @@ -1828,61 +1872,63 @@ COMMENT ON COLUMN billiards_ods.store_goods_master.fetched_at IS '【说明】ET CREATE TABLE IF NOT EXISTS billiards_ods.store_goods_sales_records ( - id BIGINT PRIMARY KEY, - tenant_id BIGINT, - site_id BIGINT, - siteid BIGINT, - sitename TEXT, - site_goods_id BIGINT, - tenant_goods_id BIGINT, - order_settle_id BIGINT, - order_trade_no TEXT, - order_goods_id BIGINT, - ordergoodsid BIGINT, - order_pay_id BIGINT, - order_coupon_id BIGINT, - ledger_name TEXT, - ledger_group_name TEXT, - ledger_amount NUMERIC(18,2), - ledger_count NUMERIC(18,4), - ledger_unit_price NUMERIC(18,4), - ledger_status INT, - discount_money NUMERIC(18,2), - discount_price NUMERIC(18,2), - coupon_deduct_money NUMERIC(18,2), - member_discount_amount NUMERIC(18,2), - option_coupon_deduct_money NUMERIC(18,2), - option_member_discount_money NUMERIC(18,2), - point_discount_money NUMERIC(18,2), - point_discount_money_cost NUMERIC(18,2), - real_goods_money NUMERIC(18,2), - cost_money NUMERIC(18,2), - push_money NUMERIC(18,2), - sales_type INT, - is_single_order INT, - is_delete INT, - goods_remark TEXT, - option_price NUMERIC(18,2), - option_value_name TEXT, - option_name TEXT, - member_coupon_id BIGINT, - package_coupon_id BIGINT, - sales_man_org_id BIGINT, - salesman_name TEXT, - salesman_role_id BIGINT, - salesman_user_id BIGINT, - operator_id BIGINT, - operator_name TEXT, - openSalesman TEXT, - returns_number INT, - site_table_id BIGINT, - tenant_goods_business_id BIGINT, - tenant_goods_category_id BIGINT, - create_time TIMESTAMP, - payload JSONB NOT NULL, - source_file TEXT, - source_endpoint TEXT, - fetched_at TIMESTAMPTZ DEFAULT now() + id BIGINT, + tenant_id BIGINT, + site_id BIGINT, + siteid BIGINT, + sitename TEXT, + site_goods_id BIGINT, + tenant_goods_id BIGINT, + order_settle_id BIGINT, + order_trade_no TEXT, + order_goods_id BIGINT, + ordergoodsid BIGINT, + order_pay_id BIGINT, + order_coupon_id BIGINT, + ledger_name TEXT, + ledger_group_name TEXT, + ledger_amount NUMERIC(18,2), + ledger_count NUMERIC(18,4), + ledger_unit_price NUMERIC(18,4), + ledger_status INT, + discount_money NUMERIC(18,2), + discount_price NUMERIC(18,2), + coupon_deduct_money NUMERIC(18,2), + member_discount_amount NUMERIC(18,2), + option_coupon_deduct_money NUMERIC(18,2), + option_member_discount_money NUMERIC(18,2), + point_discount_money NUMERIC(18,2), + point_discount_money_cost NUMERIC(18,2), + real_goods_money NUMERIC(18,2), + cost_money NUMERIC(18,2), + push_money NUMERIC(18,2), + sales_type INT, + is_single_order INT, + is_delete INT, + goods_remark TEXT, + option_price NUMERIC(18,2), + option_value_name TEXT, + option_name TEXT, + member_coupon_id BIGINT, + package_coupon_id BIGINT, + sales_man_org_id BIGINT, + salesman_name TEXT, + salesman_role_id BIGINT, + salesman_user_id BIGINT, + operator_id BIGINT, + operator_name TEXT, + openSalesman TEXT, + returns_number INT, + site_table_id BIGINT, + tenant_goods_business_id BIGINT, + tenant_goods_category_id BIGINT, + create_time TIMESTAMP, + payload JSONB NOT NULL, + content_hash TEXT NOT NULL, + source_file TEXT, + source_endpoint TEXT, + fetched_at TIMESTAMPTZ DEFAULT now(), + PRIMARY KEY (id, content_hash) ); COMMENT ON TABLE billiards_ods.store_goods_sales_records IS 'ODS 原始明细表:门店商品销售流水。来源:export/test-json-doc/store_goods_sales_records.json;分析:store_goods_sales_records-Analysis.md。字段以导出原样为主;ETL 补充 source_file/source_endpoint/fetched_at,并保留 payload 为原始记录快照。'; diff --git a/etl_billiards/database/schema_dwd_doc.sql b/etl_billiards/database/schema_dwd_doc.sql index 15bf56c..ab99a10 100644 --- a/etl_billiards/database/schema_dwd_doc.sql +++ b/etl_billiards/database/schema_dwd_doc.sql @@ -84,7 +84,7 @@ CREATE TABLE IF NOT EXISTS dim_site ( SCD2_end_time TIMESTAMPTZ DEFAULT '9999-12-31', SCD2_is_current INT DEFAULT 1, SCD2_version INT DEFAULT 1, - PRIMARY KEY (site_id) + PRIMARY KEY (site_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_site IS 'DWD 维度表:dim_site。ODS 来源表:billiards_ods.table_fee_transactions(对应 JSON:table_fee_transactions.json;分析:table_fee_transactions-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -133,7 +133,7 @@ CREATE TABLE IF NOT EXISTS dim_site_Ex ( SCD2_end_time TIMESTAMPTZ DEFAULT '9999-12-31', SCD2_is_current INT DEFAULT 1, SCD2_version INT DEFAULT 1, - PRIMARY KEY (site_id) + PRIMARY KEY (site_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_site_ex IS 'DWD 维度表(扩展字段表):dim_site_ex。ODS 来源表:billiards_ods.table_fee_transactions(对应 JSON:table_fee_transactions.json;分析:table_fee_transactions-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -176,7 +176,7 @@ CREATE TABLE IF NOT EXISTS dim_table ( SCD2_end_time TIMESTAMPTZ DEFAULT '9999-12-31', SCD2_is_current INT DEFAULT 1, SCD2_version INT DEFAULT 1, - PRIMARY KEY (table_id) + PRIMARY KEY (table_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_table IS 'DWD 维度表:dim_table。ODS 来源表:billiards_ods.site_tables_master(对应 JSON:site_tables_master.json;分析:site_tables_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -204,7 +204,7 @@ CREATE TABLE IF NOT EXISTS dim_table_Ex ( SCD2_end_time TIMESTAMPTZ DEFAULT '9999-12-31', SCD2_is_current INT DEFAULT 1, SCD2_version INT DEFAULT 1, - PRIMARY KEY (table_id) + PRIMARY KEY (table_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_table_ex IS 'DWD 维度表(扩展字段表):dim_table_ex。ODS 来源表:billiards_ods.site_tables_master(对应 JSON:site_tables_master.json;分析:site_tables_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -240,7 +240,7 @@ CREATE TABLE IF NOT EXISTS dim_assistant ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (assistant_id) + PRIMARY KEY (assistant_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_assistant IS 'DWD 维度表:dim_assistant。ODS 来源表:billiards_ods.assistant_accounts_master(对应 JSON:assistant_accounts_master.json;分析:assistant_accounts_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -314,7 +314,7 @@ CREATE TABLE IF NOT EXISTS dim_assistant_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (assistant_id) + PRIMARY KEY (assistant_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_assistant_ex IS 'DWD 维度表(扩展字段表):dim_assistant_ex。ODS 来源表:billiards_ods.assistant_accounts_master(对应 JSON:assistant_accounts_master.json;分析:assistant_accounts_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -383,7 +383,7 @@ CREATE TABLE IF NOT EXISTS dim_member ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (member_id) + PRIMARY KEY (member_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_member IS 'DWD 维度表:dim_member。ODS 来源表:billiards_ods.member_profiles(对应 JSON:member_profiles.json;分析:member_profiles-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -415,7 +415,7 @@ CREATE TABLE IF NOT EXISTS dim_member_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (member_id) + PRIMARY KEY (member_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_member_ex IS 'DWD 维度表(扩展字段表):dim_member_ex。ODS 来源表:billiards_ods.member_profiles(对应 JSON:member_profiles.json;分析:member_profiles-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -454,7 +454,7 @@ CREATE TABLE IF NOT EXISTS dim_member_card_account ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (member_card_id) + PRIMARY KEY (member_card_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_member_card_account IS 'DWD 维度表:dim_member_card_account。ODS 来源表:billiards_ods.member_stored_value_cards(对应 JSON:member_stored_value_cards.json;分析:member_stored_value_cards-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -538,7 +538,7 @@ CREATE TABLE IF NOT EXISTS dim_member_card_account_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (member_card_id) + PRIMARY KEY (member_card_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_member_card_account_ex IS 'DWD 维度表(扩展字段表):dim_member_card_account_ex。ODS 来源表:billiards_ods.member_stored_value_cards(对应 JSON:member_stored_value_cards.json;分析:member_stored_value_cards-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -619,7 +619,7 @@ CREATE TABLE IF NOT EXISTS dim_tenant_goods ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (tenant_goods_id) + PRIMARY KEY (tenant_goods_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_tenant_goods IS 'DWD 维度表:dim_tenant_goods。ODS 来源表:billiards_ods.tenant_goods_master(对应 JSON:tenant_goods_master.json;分析:tenant_goods_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -666,7 +666,7 @@ CREATE TABLE IF NOT EXISTS dim_tenant_goods_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (tenant_goods_id) + PRIMARY KEY (tenant_goods_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_tenant_goods_ex IS 'DWD 维度表(扩展字段表):dim_tenant_goods_ex。ODS 来源表:billiards_ods.tenant_goods_master(对应 JSON:tenant_goods_master.json;分析:tenant_goods_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -719,7 +719,7 @@ CREATE TABLE IF NOT EXISTS dim_store_goods ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (site_goods_id) + PRIMARY KEY (site_goods_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_store_goods IS 'DWD 维度表:dim_store_goods。ODS 来源表:billiards_ods.store_goods_master(对应 JSON:store_goods_master.json;分析:store_goods_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -780,7 +780,7 @@ CREATE TABLE IF NOT EXISTS dim_store_goods_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (site_goods_id) + PRIMARY KEY (site_goods_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_store_goods_ex IS 'DWD 维度表(扩展字段表):dim_store_goods_ex。ODS 来源表:billiards_ods.store_goods_master(对应 JSON:store_goods_master.json;分析:store_goods_master-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -833,7 +833,7 @@ CREATE TABLE IF NOT EXISTS dim_goods_category ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (category_id) + PRIMARY KEY (category_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_goods_category IS 'DWD 维度表:dim_goods_category。ODS 来源表:billiards_ods.stock_goods_category_tree(对应 JSON:stock_goods_category_tree.json;分析:stock_goods_category_tree-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -876,7 +876,7 @@ CREATE TABLE IF NOT EXISTS dim_groupbuy_package ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (groupbuy_package_id) + PRIMARY KEY (groupbuy_package_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_groupbuy_package IS 'DWD 维度表:dim_groupbuy_package。ODS 来源表:billiards_ods.group_buy_packages(对应 JSON:group_buy_packages.json;分析:group_buy_packages-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; @@ -927,7 +927,7 @@ CREATE TABLE IF NOT EXISTS dim_groupbuy_package_Ex ( SCD2_end_time TIMESTAMPTZ, SCD2_is_current INT, SCD2_version INT, - PRIMARY KEY (groupbuy_package_id) + PRIMARY KEY (groupbuy_package_id, scd2_start_time) ); COMMENT ON TABLE billiards_dwd.dim_groupbuy_package_ex IS 'DWD 维度表(扩展字段表):dim_groupbuy_package_ex。ODS 来源表:billiards_ods.group_buy_packages(对应 JSON:group_buy_packages.json;分析:group_buy_packages-Analysis.md)。装载/清洗逻辑参考:etl_billiards/tasks/dwd_load_task.py(DwdLoadTask)。'; diff --git a/etl_billiards/docs/DWS 数据库处理需求.md b/etl_billiards/docs/DWS 数据库处理需求.md new file mode 100644 index 0000000..3d29384 --- /dev/null +++ b/etl_billiards/docs/DWS 数据库处理需求.md @@ -0,0 +1,21 @@ +# DWS 数据层需求 +## 简介 +项目路径:C:\dev\LLTQ\ETL\feiqiu-ETL + +本文档描述在ETL已完成的DWD层数据基础上对DWS层的数据处理: +- 完成对DWS层数据库的处理,即数据库设计,成果为DDL的SQL语句。 +- 数据读取处理到落库,即DWD读取,Python处理,SQL写入。 + +文档更多聚焦业务描述,你需要使用专业技能,使用面向对象编程OOP思想,完成程序设计直至代码完成: +- 参考.\README.md 了解现在项目现状。 +- 参考.\etl_billiards\docs\dwd_main_tables_dictionary.md 了解 DWD的schema的表和字段(若与数据库有出路,则以当前数据库为准。) +- SQL和Python代码需要详尽的,高密度的中文注释。 +- 完成内容,需要详尽高密度的补充至.\README.md,以方便后续维护。 +- DWS的表与表的字段 参考.\etl_billiards\docs\dwd_main_tables_dictionary.md 完成类似的数据库文档,方便后续维护。 +- 注意中文编码需求。 + +## 具体需求 +### 助教视角 +- 需要 + + diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_assistant_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_assistant_ex.md new file mode 100644 index 0000000..4de70d7 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_assistant_ex.md @@ -0,0 +1,80 @@ +# dim_assistant_ex 助教档案扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_assistant_ex | +| 主键 | assistant_id, scd2_start_time | +| 主表 | dim_assistant | +| 记录数 | 69 | +| 说明 | 助教档案的扩展字段,包含个人资料、评分、状态配置、灯控等详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_id | BIGINT | NO | PK | 助教 ID → dim_assistant | +| 2 | gender | INTEGER | YES | | 性别。**枚举值**: 0(59)=未填写, 2(10)=女(**[1=男 待确认]**) | +| 3 | birth_date | TIMESTAMPTZ | YES | | 出生日期 | +| 4 | avatar | TEXT | YES | | 头像 URL(默认: https://oss.ficoo.vip/maUiImages/images/defaultAvatar.png) | +| 5 | introduce | TEXT | YES | | 个人简介(当前数据全为空) | +| 6 | video_introduction_url | TEXT | YES | | 视频介绍 URL | +| 7 | height | NUMERIC(5,2) | YES | | 身高(厘米) | +| 8 | weight | NUMERIC(5,2) | YES | | 体重(公斤) | +| 9 | shop_name | TEXT | YES | | 门店名称快照。**当前值**: "朗朗桌球" | +| 10 | group_id | BIGINT | YES | | 分组 ID(当前数据全为 0) | +| 11 | group_name | TEXT | YES | | 分组名称(当前数据全为空) | +| 12 | person_org_id | BIGINT | YES | | 人事组织 ID | +| 13 | staff_id | BIGINT | YES | | 员工 ID(当前数据全为 0) | +| 14 | staff_profile_id | BIGINT | YES | | 员工档案 ID(当前数据全为 0) | +| 15 | assistant_grade | DOUBLE PRECISION | YES | | 平均评分 | +| 16 | sum_grade | DOUBLE PRECISION | YES | | 累计评分 | +| 17 | get_grade_times | INTEGER | YES | | 评分次数(当前数据全为 0) | +| 18 | charge_way | INTEGER | YES | | 计费方式。**枚举值**: 2(69)=计时 **[其他值待确认]** | +| 19 | allow_cx | INTEGER | YES | | 允许促销计费。**枚举值**: 1(69)=允许 | +| 20 | is_guaranteed | INTEGER | YES | | 是否保底。**枚举值**: 1(69)=有保底 | +| 21 | salary_grant_enabled | INTEGER | YES | | 薪资发放开关。**枚举值**: 2(69)=**[含义待确认]** | +| 22 | entry_type | INTEGER | YES | | 入职类型。**枚举值**: 1(68)=正式, 3(1)=**[待确认]** | +| 23 | entry_sign_status | INTEGER | YES | | 入职签约状态。**枚举值**: 0(69)=未签约 | +| 24 | resign_sign_status | INTEGER | YES | | 离职签约状态。**枚举值**: 0(69)=未签约 | +| 25 | work_status | INTEGER | YES | | 工作状态。**枚举值**: 1(29)=在岗, 2(40)=离岗 | +| 26 | show_status | INTEGER | YES | | 展示状态。**枚举值**: 1(69)=显示 | +| 27 | show_sort | INTEGER | YES | | 展示排序序号 | +| 28 | online_status | INTEGER | YES | | 在线状态。**枚举值**: 1(69)=在线 | +| 29 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0(69)=未删除 | +| 30 | criticism_status | INTEGER | YES | | 投诉状态。**枚举值**: 1(68)=**[待确认]**, 2(1)=**[待确认]** | +| 31 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 32 | update_time | TIMESTAMPTZ | YES | | 更新时间 | +| 33 | start_time | TIMESTAMPTZ | YES | | 配置生效开始时间 | +| 34 | end_time | TIMESTAMPTZ | YES | | 配置生效结束时间 | +| 35 | last_table_id | BIGINT | YES | | 最近服务台桌 ID → dim_table | +| 36 | last_table_name | TEXT | YES | | 最近服务台桌名称。**样本值**: "发财", "C2", "VIP包厢 VIP5" | +| 37 | last_update_name | TEXT | YES | | 最近更新操作人。**样本值**: "教练:周蒙", "管理员:郑丽珊" | +| 38 | order_trade_no | BIGINT | YES | | 最近关联订单号 | +| 39 | ding_talk_synced | INTEGER | YES | | 钉钉同步状态。**枚举值**: 1(69)=已同步 | +| 40 | site_light_cfg_id | BIGINT | YES | | 灯控配置 ID(当前数据全为 0) | +| 41 | light_equipment_id | TEXT | YES | | 灯控设备 ID(当前数据全为空) | +| 42 | light_status | INTEGER | YES | | 灯控状态。**枚举值**: 2(69)=**[含义待确认]** | +| 43 | is_team_leader | INTEGER | YES | | 是否组长。**枚举值**: 0(69)=否 | +| 44 | serial_number | BIGINT | YES | | 序列号 | +| 45 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 46 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 47 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 48 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.*, e.* +FROM billiards_dwd.dim_assistant m +JOIN billiards_dwd.dim_assistant_ex e + ON m.assistant_id = e.assistant_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_groupbuy_package_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_groupbuy_package_ex.md new file mode 100644 index 0000000..b9d2dca --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_groupbuy_package_ex.md @@ -0,0 +1,64 @@ +# dim_groupbuy_package_ex 团购套餐扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_groupbuy_package_ex | +| 主键 | groupbuy_package_id, scd2_start_time | +| 主表 | dim_groupbuy_package | +| 记录数 | 34 | +| 说明 | 团购套餐的扩展配置,包含使用时段、台区限制、套餐类型等详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | groupbuy_package_id | BIGINT | NO | PK | 套餐 ID → dim_groupbuy_package | +| 2 | site_name | VARCHAR(100) | YES | | 门店名称快照。**当前值**: "朗朗桌球" | +| 3 | usable_count | INTEGER | YES | | 可使用次数(当前数据全为 0,表示不限次) | +| 4 | date_type | INTEGER | YES | | 日期类型。**枚举值**: 1(34)=**[含义待确认]** | +| 5 | usable_range | VARCHAR(255) | YES | | 可用日期范围描述(当前数据全为空) | +| 6 | date_info | VARCHAR(255) | YES | | 日期信息 | +| 7 | start_clock | VARCHAR(16) | YES | | 可用开始时间。**枚举值**: "00:00:00"(29), "10:00:00"(4), "23:00:00"(1) | +| 8 | end_clock | VARCHAR(16) | YES | | 可用结束时间。**枚举值**: "1.00:00:00"(29)=次日0点, "23:59:59"(3), "1.02:00:00"(2)=次日2点 | +| 9 | add_start_clock | VARCHAR(16) | YES | | 附加时段开始时间 | +| 10 | add_end_clock | VARCHAR(16) | YES | | 附加时段结束时间 | +| 11 | area_tag_type | INTEGER | YES | | 区域标记类型。**枚举值**: 1(34)=**[含义待确认]** | +| 12 | table_area_id | BIGINT | YES | | 台区 ID(当前数据全为 0) | +| 13 | tenant_table_area_id | BIGINT | YES | | 租户级台区 ID(当前数据全为 0) | +| 14 | table_area_id_list | VARCHAR(512) | YES | | 台区 ID 列表(当前数据全为空) | +| 15 | group_type | INTEGER | YES | | 团购类型。**枚举值**: 1(34)=**[含义待确认]** | +| 16 | system_group_type | INTEGER | YES | | 系统团购类型。**枚举值**: 1(34)=**[含义待确认]** | +| 17 | package_type | INTEGER | YES | | 套餐类型。**枚举值**: 1(26)=普通套餐 **[待确认]**, 2(8)=VIP套餐 **[待确认]** | +| 18 | effective_status | INTEGER | YES | | 生效状态。**枚举值**: 1(24)=有效, 3(10)=失效 **[待确认]** | +| 19 | max_selectable_categories | INTEGER | YES | | 最大可选分类数(当前数据全为 0) | +| 20 | creator_name | VARCHAR(100) | YES | | 创建人。**样本值**: "店长:郑丽珊", "管理员:郑丽珊" | +| 21 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 22 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 23 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 24 | scd2_version | INTEGER | YES | | 版本号 | + +## 样本数据 + +| groupbuy_package_id | start_clock | end_clock | package_type | effective_status | creator_name | +|--------------------|-------------|-----------|--------------|------------------|--------------| +| 2798905767676933 | 00:00:00 | 1.00:00:00 | 2 | 1 | 店长:郑丽珊 | +| 2798901295615045 | 00:00:00 | 1.00:00:00 | 2 | 3 | 店长:郑丽珊 | +| 2798731703045189 | 00:00:00 | 1.00:00:00 | 1 | 1 | 店长:郑丽珊 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.package_name, m.duration_seconds, e.start_clock, e.end_clock, e.effective_status +FROM billiards_dwd.dim_groupbuy_package m +JOIN billiards_dwd.dim_groupbuy_package_ex e + ON m.groupbuy_package_id = e.groupbuy_package_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_card_account_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_card_account_ex.md new file mode 100644 index 0000000..32d1d05 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_card_account_ex.md @@ -0,0 +1,90 @@ +# dim_member_card_account_ex 会员卡账户扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_member_card_account_ex | +| 主键 | member_card_id, scd2_start_time | +| 主表 | dim_member_card_account | +| 记录数 | 945 | +| 说明 | 会员卡账户扩展表,包含折扣配置、抵扣规则、使用限制等详细配置 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | member_card_id | BIGINT | NO | PK | 会员卡 ID → dim_member_card_account | +| 2 | site_name | TEXT | YES | | 门店名称。**当前值**: "朗朗桌球" | +| 3 | tenant_name | VARCHAR(64) | YES | | 租户名称(当前数据全为空) | +| 4 | tenantavatar | TEXT | YES | | 租户头像(当前数据全为空) | +| 5 | effect_site_id | BIGINT | YES | | 生效门店 ID(0=不限门店) | +| 6 | able_cross_site | INTEGER | YES | | 允许跨门店。**枚举值**: 1(945)=允许 | +| 7 | card_physics_type | INTEGER | YES | | 物理卡类型。**枚举值**: 1(945)=**[待确认]** | +| 8 | card_no | TEXT | YES | | 物理卡号(当前数据全为空) | +| 9 | bind_password | TEXT | YES | | 绑定密码(当前数据全为空) | +| 10 | use_scene | TEXT | YES | | 使用场景(当前数据全为空) | +| 11 | denomination | NUMERIC(18,2) | YES | | 面额/初始额度 | +| 12 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 13 | disable_start_time | TIMESTAMPTZ | YES | | 禁用开始时间 | +| 14 | disable_end_time | TIMESTAMPTZ | YES | | 禁用结束时间 | +| 15 | is_allow_give | INTEGER | YES | | 允许转赠。**枚举值**: 0(945)=不允许 | +| 16 | is_allow_order_deduct | INTEGER | YES | | 允许订单抵扣。**枚举值**: 0(945)=不允许 | +| 17 | sort | INTEGER | YES | | 排序序号 | +| 18 | table_discount | NUMERIC(10,2) | YES | | 台费折扣率(10.0=不打折) | +| 19 | goods_discount | NUMERIC(10,2) | YES | | 商品折扣率 | +| 20 | assistant_discount | NUMERIC(10,2) | YES | | 助教折扣率 | +| 21 | assistant_reward_discount | NUMERIC(10,2) | YES | | 助教奖励折扣率 | +| 22 | table_service_discount | NUMERIC(10,2) | YES | | 台费服务折扣率 | +| 23 | goods_service_discount | NUMERIC(10,2) | YES | | 商品服务折扣率 | +| 24 | assistant_service_discount | NUMERIC(10,2) | YES | | 助教服务折扣率 | +| 25 | coupon_discount | NUMERIC(10,2) | YES | | 券折扣率 | +| 26 | table_discount_sub_switch | INTEGER | YES | | 台费折扣叠加开关。**枚举值**: 2(945)=关闭 **[1=开启 待确认]** | +| 27 | goods_discount_sub_switch | INTEGER | YES | | 商品折扣叠加开关 | +| 28 | assistant_discount_sub_switch | INTEGER | YES | | 助教折扣叠加开关 | +| 29 | assistant_reward_discount_sub_switch | INTEGER | YES | | 助教奖励折扣叠加开关 | +| 30 | goods_discount_range_type | INTEGER | YES | | 商品折扣范围类型。**枚举值**: 1(945)=**[待确认]** | +| 31 | table_deduct_radio | NUMERIC(10,2) | YES | | 台费抵扣比例(100.0=全额抵扣) | +| 32 | goods_deduct_radio | NUMERIC(10,2) | YES | | 商品抵扣比例 | +| 33 | assistant_deduct_radio | NUMERIC(10,2) | YES | | 助教抵扣比例 | +| 34 | table_service_deduct_radio | NUMERIC(10,2) | YES | | 台费服务抵扣比例 | +| 35 | goods_service_deduct_radio | NUMERIC(10,2) | YES | | 商品服务抵扣比例 | +| 36 | assistant_service_deduct_radio | NUMERIC(10,2) | YES | | 助教服务抵扣比例 | +| 37 | assistant_reward_deduct_radio | NUMERIC(10,2) | YES | | 助教奖励抵扣比例 | +| 38 | coupon_deduct_radio | NUMERIC(10,2) | YES | | 券抵扣比例 | +| 39 | cardsettlededuct | NUMERIC(18,2) | YES | | 结算扣卡金额配置 | +| 40 | tablecarddeduct | NUMERIC(18,2) | YES | | 台费扣卡金额 | +| 41 | tableservicecarddeduct | NUMERIC(18,2) | YES | | 台费服务扣卡金额 | +| 42 | goodscardeduct | NUMERIC(18,2) | YES | | 商品扣卡金额 | +| 43 | goodsservicecarddeduct | NUMERIC(18,2) | YES | | 商品服务扣卡金额 | +| 44 | assistantcarddeduct | NUMERIC(18,2) | YES | | 助教扣卡金额 | +| 45 | assistantservicecarddeduct | NUMERIC(18,2) | YES | | 助教服务扣卡金额 | +| 46 | assistantrewardcarddeduct | NUMERIC(18,2) | YES | | 助教奖励扣卡金额 | +| 47 | couponcarddeduct | NUMERIC(18,2) | YES | | 券扣卡金额 | +| 48 | deliveryfeededuct | NUMERIC(18,2) | YES | | 配送费扣卡金额 | +| 49 | tableareaid | TEXT | YES | | 可用台区 ID 列表(当前数据全为空) | +| 50 | goodscategoryid | TEXT | YES | | 可用商品分类 ID 列表(当前数据全为空) | +| 51 | pdassisnatlevel | TEXT | YES | | 陪打助教等级限制。**当前值**: "{}" | +| 52 | cxassisnatlevel | TEXT | YES | | 促销助教等级限制。**当前值**: "{}" | +| 53 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 54 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 55 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 56 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 关联查询卡片及折扣配置 +SELECT + m.member_card_type_name, m.balance, + e.table_discount, e.goods_discount, e.assistant_discount +FROM billiards_dwd.dim_member_card_account m +JOIN billiards_dwd.dim_member_card_account_ex e + ON m.member_card_id = e.member_card_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_ex.md new file mode 100644 index 0000000..5f3b0f1 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_member_ex.md @@ -0,0 +1,51 @@ +# dim_member_ex 会员档案扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_member_ex | +| 主键 | member_id, scd2_start_time | +| 主表 | dim_member | +| 记录数 | 556 | +| 说明 | 会员档案扩展表,包含积分、成长值、状态等字段 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | member_id | BIGINT | NO | PK | 会员 ID → dim_member | +| 2 | referrer_member_id | BIGINT | YES | | 推荐人会员 ID(当前数据全为 0,表示无推荐人) | +| 3 | point | NUMERIC(18,2) | YES | | 积分余额 | +| 4 | register_site_name | TEXT | YES | | 注册门店名称。**当前值**: "朗朗桌球" | +| 5 | growth_value | NUMERIC(18,2) | YES | | 成长值 | +| 6 | user_status | INTEGER | YES | | 用户状态。**枚举值**: 1(556)=正常 | +| 7 | status | INTEGER | YES | | 账户状态。**枚举值**: 1(490)=正常, 3(66)=**[含义待确认]** | +| 8 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 9 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 10 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 11 | scd2_version | INTEGER | YES | | 版本号 | + +## 样本数据 + +| member_id | point | growth_value | user_status | status | +|-----------|-------|--------------|-------------|--------| +| 3043883848157381 | 0.00 | 0.00 | 1 | 1 | +| 3037269565082949 | 0.00 | 0.00 | 1 | 1 | +| 3025342944414469 | 0.00 | 0.00 | 1 | 1 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.*, e.point, e.growth_value, e.status +FROM billiards_dwd.dim_member m +JOIN billiards_dwd.dim_member_ex e + ON m.member_id = e.member_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_site_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_site_ex.md new file mode 100644 index 0000000..5e77cbd --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_site_ex.md @@ -0,0 +1,57 @@ +# dim_site_ex 门店扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_site_ex | +| 主键 | site_id, scd2_start_time | +| 主表 | dim_site | +| 记录数 | 1 | +| 说明 | 门店扩展表,包含灯控、考勤、客服等配置信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | site_id | BIGINT | NO | PK | 门店 ID → dim_site | +| 2 | avatar | TEXT | YES | | 门店头像 URL | +| 3 | address | TEXT | YES | | 地址(冗余) | +| 4 | longitude | NUMERIC(9,6) | YES | | 经度(冗余) | +| 5 | latitude | NUMERIC(9,6) | YES | | 纬度(冗余) | +| 6 | tenant_site_region_id | BIGINT | YES | | 区域 ID(冗余) | +| 7 | auto_light | INTEGER | YES | | 自动灯控。**枚举值**: 1(1)=启用 | +| 8 | light_status | INTEGER | YES | | 灯控状态。**枚举值**: 1(1)=**[待确认]** | +| 9 | light_type | INTEGER | YES | | 灯控类型。**枚举值**: 0(1)=**[待确认]** | +| 10 | light_token | TEXT | YES | | 灯控令牌 | +| 11 | site_type | INTEGER | YES | | 门店类型(冗余) | +| 12 | site_label | TEXT | YES | | 门店标签(冗余) | +| 13 | attendance_enabled | INTEGER | YES | | 考勤启用。**枚举值**: 1(1)=启用 | +| 14 | attendance_distance | INTEGER | YES | | 考勤距离(米)。**当前值**: 0 | +| 15 | customer_service_qrcode | TEXT | YES | | 客服二维码 URL | +| 16 | customer_service_wechat | TEXT | YES | | 客服微信号 | +| 17 | fixed_pay_qrcode | TEXT | YES | | 固定收款码 URL | +| 18 | prod_env | TEXT | YES | | 环境标识。**当前值**: "1" | +| 19 | shop_status | INTEGER | YES | | 营业状态(冗余) | +| 20 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 21 | update_time | TIMESTAMPTZ | YES | | 更新时间 | +| 22 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 23 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 24 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 25 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.*, e.* +FROM billiards_dwd.dim_site m +JOIN billiards_dwd.dim_site_ex e + ON m.site_id = e.site_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_store_goods_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_store_goods_ex.md new file mode 100644 index 0000000..9c159f0 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_store_goods_ex.md @@ -0,0 +1,62 @@ +# dim_store_goods_ex 门店商品扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_store_goods_ex | +| 主键 | site_goods_id, scd2_start_time | +| 主表 | dim_store_goods | +| 记录数 | 170 | +| 说明 | 门店商品扩展表,包含单位、成本、库存管理、折扣等详细配置 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | site_goods_id | BIGINT | NO | PK | 门店商品 ID → dim_store_goods | +| 2 | site_name | TEXT | YES | | 门店名称。**当前值**: "朗朗桌球" | +| 3 | unit | TEXT | YES | | 商品单位。**枚举值**: "包"(62), "瓶"(49), "个"(17), "份"(14), "根"(10), "杯"(5), "盒"(4), "桶"(3), "盘"(2), "罐"(1), "支"(1), "双"(1), "张"(1) | +| 4 | goods_barcode | TEXT | YES | | 商品条码(当前数据全为空) | +| 5 | goods_cover_url | TEXT | YES | | 商品封面图 URL | +| 6 | pinyin_initial | TEXT | YES | | 拼音首字母(用于搜索) | +| 7 | stock_qty | INTEGER | YES | | 库存数量 | +| 8 | stock_secondary_qty | INTEGER | YES | | 副单位库存(当前数据全为 0) | +| 9 | safety_stock_qty | INTEGER | YES | | 安全库存(当前数据全为 0) | +| 10 | cost_price | NUMERIC(18,4) | YES | | 成本价 | +| 11 | cost_price_type | INTEGER | YES | | 成本价类型。**枚举值**: 1(160)=**[待确认]**, 2(10)=**[待确认]** | +| 12 | provisional_total_cost | NUMERIC(18,2) | YES | | 暂估总成本 | +| 13 | total_purchase_cost | NUMERIC(18,2) | YES | | 采购总成本 | +| 14 | min_discount_price | NUMERIC(18,2) | YES | | 最低折扣价 | +| 15 | is_discountable | INTEGER | YES | | 允许折扣。**枚举值**: 1(170)=允许 | +| 16 | days_on_shelf | INTEGER | YES | | 上架天数 | +| 17 | audit_status | INTEGER | YES | | 审核状态。**枚举值**: 2(170)=**[待确认]** | +| 18 | sale_channel | INTEGER | YES | | 销售渠道(当前数据全为空) | +| 19 | is_warehousing | INTEGER | YES | | 库存管理。**枚举值**: 1(170)=参与库存管理 | +| 20 | freeze_status | INTEGER | YES | | 冻结状态。**枚举值**: 0(170)=未冻结 | +| 21 | forbid_sell_status | INTEGER | YES | | 禁售状态。**枚举值**: 1(170)=**[待确认]** | +| 22 | able_site_transfer | INTEGER | YES | | 允许店间调拨。**枚举值**: 0(1), 2(169) **[待确认]** | +| 23 | custom_label_type | INTEGER | YES | | 自定义标签类型。**枚举值**: 2(170)=**[待确认]** | +| 24 | option_required | INTEGER | YES | | 选项必填。**枚举值**: 1(170)=**[待确认]** | +| 25 | remark | TEXT | YES | | 备注(当前数据全为空) | +| 26 | sort_order | INTEGER | YES | | 排序序号 | +| 27 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 28 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 29 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 30 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.goods_name, m.sale_price, m.sale_qty, e.unit, e.stock_qty, e.cost_price +FROM billiards_dwd.dim_store_goods m +JOIN billiards_dwd.dim_store_goods_ex e + ON m.site_goods_id = e.site_goods_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_table_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_table_ex.md new file mode 100644 index 0000000..80a1774 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_table_ex.md @@ -0,0 +1,50 @@ +# dim_table_ex 台桌扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_table_ex | +| 主键 | table_id, scd2_start_time | +| 主表 | dim_table | +| 记录数 | 74 | +| 说明 | 台桌扩展表,包含展示状态、预约设置、台呢使用等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_id | BIGINT | NO | PK | 台桌 ID → dim_table | +| 2 | show_status | INTEGER | YES | | 展示状态。**枚举值**: 1(70)=显示, 2(4)=隐藏 | +| 3 | is_online_reservation | INTEGER | YES | | 在线预约。**枚举值**: 1(2)=支持, 2(72)=不支持 | +| 4 | table_cloth_use_time | INTEGER | YES | | 台呢已使用时间(当前数据全为空) | +| 5 | table_cloth_use_cycle | INTEGER | YES | | 台呢使用周期(当前数据全为 0) | +| 6 | table_status | INTEGER | YES | | 台桌状态。**枚举值**: 1(66)=空闲, 2(1)=**[待确认]**, 3(7)=使用中 **[待确认]** | +| 7 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 8 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 9 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 10 | scd2_version | INTEGER | YES | | 版本号 | + +## 样本数据 + +| table_id | show_status | is_online_reservation | table_status | +|----------|-------------|-----------------------|--------------| +| 2791964216463493 | 1 | 2 | 1 | +| 2792521437958213 | 1 | 2 | 1 | +| 2793001695301765 | 1 | 2 | 1 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.table_name, m.site_table_area_name, e.show_status, e.table_status +FROM billiards_dwd.dim_table m +JOIN billiards_dwd.dim_table_ex e + ON m.table_id = e.table_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_tenant_goods_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_tenant_goods_ex.md new file mode 100644 index 0000000..fa384f0 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dim_tenant_goods_ex.md @@ -0,0 +1,54 @@ +# dim_tenant_goods_ex 租户商品扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_tenant_goods_ex | +| 主键 | tenant_goods_id, scd2_start_time | +| 主表 | dim_tenant_goods | +| 记录数 | 171 | +| 说明 | 租户商品扩展表,包含图片、条码、成本、折扣配置等详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | tenant_goods_id | BIGINT | NO | PK | 租户商品 ID → dim_tenant_goods | +| 2 | remark_name | VARCHAR(128) | YES | | 备注名称(当前数据全为空) | +| 3 | pinyin_initial | VARCHAR(128) | YES | | 拼音首字母 | +| 4 | goods_cover | VARCHAR(512) | YES | | 商品封面图 URL | +| 5 | goods_bar_code | VARCHAR(64) | YES | | 商品条码(当前数据全为空) | +| 6 | commodity_code | VARCHAR(64) | YES | | 商品编码 | +| 7 | commodity_code_list | VARCHAR(256) | YES | | 商品编码列表 | +| 8 | min_discount_price | NUMERIC(18,2) | YES | | 最低折扣价 | +| 9 | cost_price | NUMERIC(18,2) | YES | | 成本价 | +| 10 | cost_price_type | INTEGER | YES | | 成本价类型。**枚举值**: 1(160), 2(11) **[待确认]** | +| 11 | able_discount | INTEGER | YES | | 允许折扣。**枚举值**: 1(171)=允许 | +| 12 | sale_channel | INTEGER | YES | | 销售渠道(当前数据全为空) | +| 13 | is_warehousing | INTEGER | YES | | 库存管理。**枚举值**: 1(171)=参与库存管理 | +| 14 | is_in_site | BOOLEAN | YES | | 是否在门店。**枚举值**: False(171)=否 | +| 15 | able_site_transfer | INTEGER | YES | | 允许店间调拨。**枚举值**: 0(1), 2(170) **[待确认]** | +| 16 | common_sale_royalty | INTEGER | YES | | 普通销售提成(当前数据全为 0) | +| 17 | point_sale_royalty | INTEGER | YES | | 积分销售提成(当前数据全为 0) | +| 18 | out_goods_id | BIGINT | YES | | 外部商品 ID(当前数据全为 0) | +| 19 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 20 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 21 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 22 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.goods_name, m.market_price, e.cost_price, e.min_discount_price +FROM billiards_dwd.dim_tenant_goods m +JOIN billiards_dwd.dim_tenant_goods_ex e + ON m.tenant_goods_id = e.tenant_goods_id + AND m.scd2_start_time = e.scd2_start_time +WHERE m.scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_service_log_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_service_log_ex.md new file mode 100644 index 0000000..39b1a1c --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_service_log_ex.md @@ -0,0 +1,61 @@ +# dwd_assistant_service_log_ex 助教服务流水扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_assistant_service_log_ex | +| 主键 | assistant_service_id | +| 主表 | dwd_assistant_service_log | +| 记录数 | 5003 | +| 说明 | 助教服务流水扩展表,包含台桌、折扣、评分、废单等详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_service_id | BIGINT | NO | PK | 服务流水 ID → dwd_assistant_service_log | +| 2 | table_name | VARCHAR(64) | YES | | 台桌名称。**样本值**: "888", "TV", "VIP5", "666", "C1", "VIP1", "S1", "M1", "A1" | +| 3 | assistant_name | VARCHAR(64) | YES | | 助教真实姓名。**样本值**: "陈嘉怡", "张永英", "邹绮", "胡敏" | +| 4 | ledger_name | VARCHAR(128) | YES | | 账本名称(工号-昵称)。**样本值**: "2-佳怡", "23-婉婉", "15-七七" | +| 5 | ledger_group_name | VARCHAR(128) | YES | | 账本分组名称(当前数据全为空) | +| 6 | ledger_count | INTEGER | YES | | 计费时长(秒,与主表 income_seconds 类似) | +| 7 | member_discount_amount | NUMERIC(10,2) | YES | | 会员折扣金额 | +| 8 | manual_discount_amount | NUMERIC(10,2) | YES | | 手动折扣金额 | +| 9 | service_money | NUMERIC(10,2) | YES | | 服务费金额 | +| 10 | returns_clock | INTEGER | YES | | 退时长(当前数据全为 0) | +| 11 | ledger_start_time | TIMESTAMPTZ | YES | | 账本开始时间 | +| 12 | ledger_end_time | TIMESTAMPTZ | YES | | 账本结束时间 | +| 13 | ledger_status | INTEGER | YES | | 账本状态。**枚举值**: 1(5003)=已结算 | +| 14 | is_confirm | INTEGER | YES | | 是否确认。**枚举值**: 2(5003)=**[待确认]** | +| 15 | is_single_order | INTEGER | YES | | 是否独立订单。**枚举值**: 1(5003)=是 | +| 16 | is_not_responding | INTEGER | YES | | 无响应。**枚举值**: 0(5003)=正常 | +| 17 | is_trash | INTEGER | YES | | 是否废单。**枚举值**: 0(5003)=正常 | +| 18 | trash_applicant_id | BIGINT | YES | | 废单申请人 ID(当前数据全为 0) | +| 19 | trash_applicant_name | VARCHAR(64) | YES | | 废单申请人姓名(当前数据全为空) | +| 20 | trash_reason | VARCHAR(255) | YES | | 废单原因(当前数据全为空) | +| 21 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前数据全为 0) | +| 22 | salesman_name | VARCHAR(64) | YES | | 销售员姓名(当前数据全为空) | +| 23 | salesman_org_id | BIGINT | YES | | 销售员组织 ID(当前数据全为 0) | +| 24 | skill_grade | INTEGER | YES | | 技能评分(当前数据全为 0) | +| 25 | service_grade | INTEGER | YES | | 服务评分(当前数据全为 0) | +| 26 | composite_grade | NUMERIC(5,2) | YES | | 综合评分 | +| 27 | sum_grade | NUMERIC(10,2) | YES | | 累计评分 | +| 28 | get_grade_times | INTEGER | YES | | 评分次数(当前数据全为 0) | +| 29 | grade_status | INTEGER | YES | | 评分状态。**枚举值**: 0(216)=未评分, 1(4787)=已评分 **[待确认]** | +| 30 | composite_grade_time | TIMESTAMPTZ | YES | | 评分时间 | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT m.nickname, m.ledger_amount, e.table_name, e.assistant_name, e.grade_status +FROM billiards_dwd.dwd_assistant_service_log m +JOIN billiards_dwd.dwd_assistant_service_log_ex e + ON m.assistant_service_id = e.assistant_service_id +WHERE m.is_delete = 0; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_trash_event_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_trash_event_ex.md new file mode 100644 index 0000000..fb0db73 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_assistant_trash_event_ex.md @@ -0,0 +1,49 @@ +# dwd_assistant_trash_event_ex 助教服务作废扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_assistant_trash_event_ex | +| 主键 | assistant_trash_event_id | +| 主表 | dwd_assistant_trash_event | +| 记录数 | 98 | +| 说明 | 助教服务作废扩展表,记录台桌和台区名称 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_trash_event_id | BIGINT | NO | PK | 作废事件 ID → dwd_assistant_trash_event | +| 2 | table_name | VARCHAR(64) | YES | | 台桌名称。**热门值**: "888"(14), "发财"(8), "C1"(7), "M7"(6) | +| 3 | table_area_name | VARCHAR(64) | YES | | 台区名称。**枚举值**: "C区"(16), "K包"(14), "A区"(11), "发财"(8), "B区"(7), "麻将房"(7), "补时长"(7), "VIP包厢"(6) | + +## 台区作废分布 + +| 台区名称 | 作废次数 | 占比 | +|----------|----------|------| +| C区 | 16 | 16.3% | +| K包 | 14 | 14.3% | +| A区 | 11 | 11.2% | +| 发财 | 8 | 8.2% | +| B区 | 7 | 7.1% | +| 麻将房 | 7 | 7.1% | +| 补时长 | 7 | 7.1% | +| VIP包厢 | 6 | 6.1% | + +## 样本数据 + +| table_name | table_area_name | +|------------|-----------------| +| C1 | C区 | +| 补时长5 | 补时长 | +| VIP1 | VIP包厢 | +| 888 | K包 | + +## 使用说明 + +与主表 `dwd_assistant_trash_event` 通过 `assistant_trash_event_id` 关联,提供台桌和台区名称信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_groupbuy_redemption_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_groupbuy_redemption_ex.md new file mode 100644 index 0000000..3115093 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_groupbuy_redemption_ex.md @@ -0,0 +1,62 @@ +# dwd_groupbuy_redemption_ex 团购核销扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_groupbuy_redemption_ex | +| 主键 | redemption_id | +| 主表 | dwd_groupbuy_redemption | +| 记录数 | 11427 | +| 说明 | 团购核销扩展表,记录门店、台桌名称、操作员等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | redemption_id | BIGINT | NO | PK | 核销 ID → dwd_groupbuy_redemption | +| 2 | site_name | VARCHAR(64) | YES | | 门店名称。**枚举值**: "朗朗桌球"(11427) | +| 3 | table_name | VARCHAR(64) | YES | | 台桌名称。**热门值**: "A3"(892), "A4"(858), "A5"(835), "A7"(774) | +| 4 | table_area_name | VARCHAR(64) | YES | | 台区名称。**枚举值**: "A区"(9294), "B区"(998), "斯诺克区"(962), "麻将房"(137) | +| 5 | order_pay_id | BIGINT | YES | | 支付单 ID(当前数据全为 0) | +| 6 | goods_option_price | NUMERIC(18,2) | YES | | 商品选项价格 | +| 7 | goods_promotion_money | NUMERIC(18,2) | YES | | 商品促销金额 | +| 8 | table_service_promotion_money | NUMERIC(18,2) | YES | | 台服促销金额 | +| 9 | assistant_promotion_money | NUMERIC(18,2) | YES | | 助教促销金额 | +| 10 | assistant_service_promotion_money | NUMERIC(18,2) | YES | | 助教服务促销金额 | +| 11 | reward_promotion_money | NUMERIC(18,2) | YES | | 奖励促销金额 | +| 12 | recharge_promotion_money | NUMERIC(18,2) | YES | | 充值促销金额 | +| 13 | offer_type | INTEGER | YES | | 优惠类型。**枚举值**: 1(11427) | +| 14 | ledger_status | INTEGER | YES | | 账本状态。**枚举值**: 1(11427)=已结算 | +| 15 | operator_id | BIGINT | YES | | 操作员 ID | +| 16 | operator_name | VARCHAR(64) | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(11426), "收银员:郑丽珍"(1) | +| 17 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前数据全为 0) | +| 18 | salesman_name | VARCHAR(64) | YES | | 销售员名称(当前数据全为 NULL) | +| 19 | salesman_role_id | BIGINT | YES | | 销售员角色 ID(当前数据全为 0) | +| 20 | salesman_org_id | BIGINT | YES | | 销售员组织 ID(当前数据全为 0) | +| 21 | ledger_group_name | VARCHAR(128) | YES | | 账本分组名称(当前数据全为 NULL) | + +## 台区核销分布 + +| 台区名称 | 核销数量 | 占比 | +|----------|----------|------| +| A区 | 9294 | 81.3% | +| B区 | 998 | 8.7% | +| 斯诺克区 | 962 | 8.4% | +| 麻将房 | 137 | 1.2% | + +## 样本数据 + +| table_name | table_area_name | operator_name | ledger_status | +|------------|-----------------|---------------|---------------| +| A17 | A区 | 收银员:郑丽珊 | 1 | +| A4 | A区 | 收银员:郑丽珊 | 1 | +| B5 | B区 | 收银员:郑丽珊 | 1 | + +## 使用说明 + +与主表 `dwd_groupbuy_redemption` 通过 `redemption_id` 关联,提供门店、台桌名称、操作员等扩展信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_member_balance_change_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_member_balance_change_ex.md new file mode 100644 index 0000000..5ffc86b --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_member_balance_change_ex.md @@ -0,0 +1,49 @@ +# dwd_member_balance_change_ex 会员余额变动扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_member_balance_change_ex | +| 主键 | balance_change_id | +| 主表 | dwd_member_balance_change | +| 记录数 | 4745 | +| 说明 | 会员余额变动扩展表,记录操作员和门店名称等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | balance_change_id | BIGINT | NO | PK | 变动流水 ID → dwd_member_balance_change | +| 2 | pay_site_name | VARCHAR(64) | YES | | 支付门店名称。**枚举值**: "朗朗桌球"(4720) | +| 3 | register_site_name | VARCHAR(64) | YES | | 注册门店名称。**枚举值**: "朗朗桌球"(4745) | +| 4 | refund_amount | NUMERIC(18,2) | YES | | 退款金额 | +| 5 | operator_id | BIGINT | YES | | 操作员 ID | +| 6 | operator_name | VARCHAR(64) | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(4101), "店长:郑丽珊"(223), "管理员:郑丽珊"(153), "店长:蒋雨轩"(124), "店长:谢晓洪"(115), "店长:黄月柳"(29) | + +## 操作员分布 + +| 操作员名称 | 操作次数 | 占比 | +|------------|----------|------| +| 收银员:郑丽珊 | 4101 | 86.4% | +| 店长:郑丽珊 | 223 | 4.7% | +| 管理员:郑丽珊 | 153 | 3.2% | +| 店长:蒋雨轩 | 124 | 2.6% | +| 店长:谢晓洪 | 115 | 2.4% | +| 店长:黄月柳 | 29 | 0.6% | + +## 样本数据 + +| pay_site_name | register_site_name | operator_name | refund_amount | +|---------------|--------------------|---------------|---------------| +| 朗朗桌球 | 朗朗桌球 | 收银员:郑丽珊 | 0.00 | +| 朗朗桌球 | 朗朗桌球 | 收银员:郑丽珊 | 0.00 | +| 朗朗桌球 | 朗朗桌球 | 收银员:郑丽珊 | 0.00 | + +## 使用说明 + +与主表 `dwd_member_balance_change` 通过 `balance_change_id` 关联,提供操作员和门店名称等扩展信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_platform_coupon_redemption_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_platform_coupon_redemption_ex.md new file mode 100644 index 0000000..18bedac --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_platform_coupon_redemption_ex.md @@ -0,0 +1,47 @@ +# dwd_platform_coupon_redemption_ex 平台券核销扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_platform_coupon_redemption_ex | +| 主键 | platform_coupon_redemption_id | +| 主表 | dwd_platform_coupon_redemption | +| 记录数 | 16977 | +| 说明 | 平台券核销扩展表,记录券封面、备注、操作员等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | platform_coupon_redemption_id | BIGINT | NO | PK | 核销 ID → dwd_platform_coupon_redemption | +| 2 | coupon_cover | VARCHAR(255) | YES | | 券封面图片 URL(当前数据全为 NULL) | +| 3 | coupon_remark | VARCHAR(255) | YES | | 券备注(抖音券有核验信息) | +| 4 | groupon_type | INTEGER | YES | | 团购类型。**枚举值**: 1(16977)=**[待确认]** | +| 5 | operator_id | BIGINT | YES | | 操作员 ID | +| 6 | operator_name | VARCHAR(50) | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(16968), "店长:郑丽珊"(8), "收银员:郑丽珍"(1) | + +## 操作员分布 + +| 操作员名称 | 核销数量 | 占比 | +|------------|----------|------| +| 收银员:郑丽珊 | 16968 | 99.9% | +| 店长:郑丽珊 | 8 | <0.1% | +| 收银员:郑丽珍 | 1 | <0.1% | + +## 样本数据 + +| groupon_type | operator_name | coupon_cover | coupon_remark | +|--------------|---------------|--------------|---------------| +| 1 | 收银员:郑丽珊 | NULL | NULL | +| 1 | 收银员:郑丽珊 | NULL | NULL | + +## 使用说明 + +与主表 `dwd_platform_coupon_redemption` 通过 `platform_coupon_redemption_id` 关联,提供操作员等扩展信息。 + +**注意**: `coupon_remark` 字段在抖音渠道的核销记录中包含核验信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_recharge_order_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_recharge_order_ex.md new file mode 100644 index 0000000..c3acd3d --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_recharge_order_ex.md @@ -0,0 +1,69 @@ +# dwd_recharge_order_ex 充值订单扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_recharge_order_ex | +| 主键 | recharge_order_id | +| 主表 | dwd_recharge_order | +| 记录数 | 455 | +| 说明 | 充值订单扩展表,记录操作员、各类金额明细等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | recharge_order_id | BIGINT | NO | PK | 充值订单 ID → dwd_recharge_order | +| 2 | site_name_snapshot | TEXT | YES | | 门店名称快照。**枚举值**: "朗朗桌球"(374) | +| 3 | settle_status | INTEGER | YES | | 结算状态。**枚举值**: 2(455)=已结算 | +| 4 | is_bind_member | BOOLEAN | YES | | 是否绑定会员。**枚举值**: False(455) | +| 5 | is_activity | BOOLEAN | YES | | 是否活动。**枚举值**: False(455) | +| 6 | is_use_coupon | BOOLEAN | YES | | 是否使用优惠券。**枚举值**: False(455) | +| 7 | is_use_discount | BOOLEAN | YES | | 是否使用折扣。**枚举值**: False(455) | +| 8 | can_be_revoked | BOOLEAN | YES | | 是否可撤销。**枚举值**: False(455) | +| 9 | online_amount | NUMERIC(18,2) | YES | | 在线支付金额 | +| 10 | balance_amount | NUMERIC(18,2) | YES | | 余额支付金额 | +| 11 | card_amount | NUMERIC(18,2) | YES | | 卡支付金额 | +| 12 | coupon_amount | NUMERIC(18,2) | YES | | 优惠券金额 | +| 13 | recharge_card_amount | NUMERIC(18,2) | YES | | 充值卡金额 | +| 14 | gift_card_amount | NUMERIC(18,2) | YES | | 礼品卡金额 | +| 15 | prepay_money | NUMERIC(18,2) | YES | | 预付金额 | +| 16 | consume_money | NUMERIC(18,2) | YES | | 消费金额 | +| 17 | goods_money | NUMERIC(18,2) | YES | | 商品金额 | +| 18 | real_goods_money | NUMERIC(18,2) | YES | | 实收商品金额 | +| 19 | table_charge_money | NUMERIC(18,2) | YES | | 台费金额 | +| 20 | service_money | NUMERIC(18,2) | YES | | 服务费金额 | +| 21 | activity_discount | NUMERIC(18,2) | YES | | 活动折扣金额 | +| 22 | all_coupon_discount | NUMERIC(18,2) | YES | | 优惠券折扣总额 | +| 23 | goods_promotion_money | NUMERIC(18,2) | YES | | 商品促销金额 | +| 24 | assistant_promotion_money | NUMERIC(18,2) | YES | | 助教促销金额 | +| 25 | assistant_pd_money | NUMERIC(18,2) | YES | | 助教陪打金额 | +| 26 | assistant_cx_money | NUMERIC(18,2) | YES | | 助教培训金额 | +| 27 | assistant_manual_discount | NUMERIC(18,2) | YES | | 助教手动折扣 | +| 28 | coupon_sale_amount | NUMERIC(18,2) | YES | | 优惠券销售金额 | +| 29 | member_discount_amount | NUMERIC(18,2) | YES | | 会员折扣金额 | +| 30 | point_discount_price | NUMERIC(18,2) | YES | | 积分抵扣金额 | +| 31 | point_discount_cost | NUMERIC(18,2) | YES | | 积分抵扣成本 | +| 32 | adjust_amount | NUMERIC(18,2) | YES | | 调整金额 | +| 33 | rounding_amount | NUMERIC(18,2) | YES | | 取整金额 | +| 34 | operator_id | BIGINT | YES | | 操作员 ID | +| 35 | operator_name_snapshot | TEXT | YES | | 操作员名称快照。**枚举值**: "收银员:郑丽珊"(455) | +| 36 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前全为 0) | +| 37 | salesman_name | TEXT | YES | | 销售员名称(当前全为 NULL) | +| 38 | order_remark | TEXT | YES | | 订单备注(当前全为 NULL) | +| 39 | table_id | INTEGER | YES | | 台桌 ID(当前全为 0) | +| 40 | serial_number | INTEGER | YES | | 序列号(当前全为 0) | +| 41 | revoke_order_id | BIGINT | YES | | 撤销订单 ID(当前全为 0) | +| 42 | revoke_order_name | TEXT | YES | | 撤销订单名称(当前全为 NULL) | +| 43 | revoke_time | TIMESTAMPTZ | YES | | 撤销时间 | + +## 使用说明 + +与主表 `dwd_recharge_order` 通过 `recharge_order_id` 关联,提供操作员、各类金额明细等扩展信息。 + +**注意**: 样本数据获取时因日期解析错误未能获取。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_refund_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_refund_ex.md new file mode 100644 index 0000000..6af3ddf --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_refund_ex.md @@ -0,0 +1,51 @@ +# dwd_refund_ex 退款流水扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_refund_ex | +| 主键 | refund_id | +| 主表 | dwd_refund | +| 记录数 | 45 | +| 说明 | 退款流水扩展表,记录退款的详细状态和渠道信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | refund_id | BIGINT | NO | PK | 退款流水 ID → dwd_refund | +| 2 | tenant_name | VARCHAR(64) | YES | | 租户名称。**枚举值**: "朗朗桌球"(45) | +| 3 | pay_sn | BIGINT | YES | | 支付序列号(当前全为 0) | +| 4 | refund_amount | NUMERIC(18,2) | YES | | 退款金额(冗余) | +| 5 | round_amount | NUMERIC(18,2) | YES | | 取整金额 | +| 6 | balance_frozen_amount | NUMERIC(18,2) | YES | | 余额冻结金额 | +| 7 | card_frozen_amount | NUMERIC(18,2) | YES | | 卡冻结金额 | +| 8 | pay_status | INTEGER | YES | | 支付状态。**枚举值**: 2(45)=已退款 | +| 9 | action_type | INTEGER | YES | | 操作类型。**枚举值**: 2(45)=退款 | +| 10 | is_revoke | INTEGER | YES | | 是否撤销。**枚举值**: 0(45)=否 | +| 11 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0(45)=未删除 | +| 12 | check_status | INTEGER | YES | | 审核状态。**枚举值**: 1(45)=已审核 | +| 13 | online_pay_channel | INTEGER | YES | | 在线支付渠道(当前全为 0) | +| 14 | online_pay_type | INTEGER | YES | | 在线支付类型(当前全为 0) | +| 15 | pay_terminal | INTEGER | YES | | 支付终端。**枚举值**: 1(45)=POS | +| 16 | pay_config_id | INTEGER | YES | | 支付配置 ID(当前全为 0) | +| 17 | cashier_point_id | INTEGER | YES | | 收银点 ID(当前全为 0) | +| 18 | operator_id | BIGINT | YES | | 操作员 ID(当前全为 0) | +| 19 | channel_payer_id | VARCHAR(128) | YES | | 渠道支付者 ID(当前全为 NULL) | +| 20 | channel_pay_no | VARCHAR(128) | YES | | 渠道支付号(当前全为 NULL) | + +## 样本数据 + +| tenant_name | pay_status | action_type | check_status | +|-------------|------------|-------------|--------------| +| 朗朗桌球 | 2 | 2 | 1 | +| 朗朗桌球 | 2 | 2 | 1 | + +## 使用说明 + +与主表 `dwd_refund` 通过 `refund_id` 关联,提供退款状态和渠道等扩展信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_settlement_head_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_settlement_head_ex.md new file mode 100644 index 0000000..ef85415 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_settlement_head_ex.md @@ -0,0 +1,69 @@ +# dwd_settlement_head_ex 结账头表扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_settlement_head_ex | +| 主键 | order_settle_id | +| 主表 | dwd_settlement_head | +| 记录数 | 23366 | +| 说明 | 结账单扩展表,包含支付明细、撤销信息、操作员、活动标记等详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | order_settle_id | BIGINT | NO | PK | 结账单 ID → dwd_settlement_head | +| 2 | serial_number | INTEGER | YES | | 流水号(当前数据全为 0) | +| 3 | settle_status | INTEGER | YES | | 结账状态。**枚举值**: 2(23366)=已完成 **[待确认]** | +| 4 | can_be_revoked | BOOLEAN | YES | | 可否撤销。**枚举值**: False(23366)=不可撤销 | +| 5 | revoke_order_name | VARCHAR(100) | YES | | 撤销订单名称(当前数据全为空) | +| 6 | revoke_time | TIMESTAMPTZ | YES | | 撤销时间 | +| 7 | is_first_order | BOOLEAN | YES | | 是否首单。**枚举值**: False(23366)=否 | +| 8 | service_money | NUMERIC(18,2) | YES | | 服务费金额 | +| 9 | cash_amount | NUMERIC(18,2) | YES | | 现金支付金额 | +| 10 | card_amount | NUMERIC(18,2) | YES | | 刷卡支付金额 | +| 11 | online_amount | NUMERIC(18,2) | YES | | 在线支付金额 | +| 12 | refund_amount | NUMERIC(18,2) | YES | | 退款金额 | +| 13 | prepay_money | NUMERIC(18,2) | YES | | 预付金额 | +| 14 | payment_method | INTEGER | YES | | 支付方式(当前数据全为 0) | +| 15 | coupon_sale_amount | NUMERIC(18,2) | YES | | 券销售金额 | +| 16 | all_coupon_discount | NUMERIC(18,2) | YES | | 全部券折扣 | +| 17 | goods_promotion_money | NUMERIC(18,2) | YES | | 商品促销金额 | +| 18 | assistant_promotion_money | NUMERIC(18,2) | YES | | 助教促销金额 | +| 19 | activity_discount | NUMERIC(18,2) | YES | | 活动折扣 | +| 20 | assistant_manual_discount | NUMERIC(18,2) | YES | | 助教手动折扣 | +| 21 | point_discount_price | NUMERIC(18,2) | YES | | 积分抵扣金额 | +| 22 | point_discount_cost | NUMERIC(18,2) | YES | | 积分抵扣成本 | +| 23 | is_use_coupon | BOOLEAN | YES | | 是否使用优惠券。**枚举值**: False(23366)=否 | +| 24 | is_use_discount | BOOLEAN | YES | | 是否使用折扣。**枚举值**: False(23366)=否 | +| 25 | is_activity | BOOLEAN | YES | | 是否活动订单。**枚举值**: False(23366)=否 | +| 26 | operator_name | VARCHAR(100) | YES | | 操作员姓名。**枚举值**: "收银员:郑丽珊"(23361), "收银员:郑丽珍"(2), "教练:周蒙"(2), "店长:郑丽珊"(1) | +| 27 | salesman_name | VARCHAR(100) | YES | | 销售员姓名(当前数据全为空) | +| 28 | order_remark | VARCHAR(255) | YES | | 订单备注。**样本值**: "五折"(42), "轩哥"(24), "陈德韩"(7), "免台费"(3) | +| 29 | operator_id | BIGINT | YES | | 操作员 ID | +| 30 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前数据全为 0) | + +## 使用说明 + +```sql +-- 关联主表与扩展表 +SELECT + m.settle_name, m.consume_money, m.pay_amount, + e.operator_name, e.order_remark, e.settle_status +FROM billiards_dwd.dwd_settlement_head m +JOIN billiards_dwd.dwd_settlement_head_ex e + ON m.order_settle_id = e.order_settle_id; + +-- 统计备注订单 +SELECT order_remark, COUNT(*) +FROM billiards_dwd.dwd_settlement_head_ex +WHERE order_remark IS NOT NULL +GROUP BY order_remark +ORDER BY COUNT(*) DESC; +``` diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_store_goods_sale_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_store_goods_sale_ex.md new file mode 100644 index 0000000..9fc6cb8 --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_store_goods_sale_ex.md @@ -0,0 +1,59 @@ +# dwd_store_goods_sale_ex 商品销售扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_store_goods_sale_ex | +| 主键 | store_goods_sale_id | +| 主表 | dwd_store_goods_sale | +| 记录数 | 17563 | +| 说明 | 商品销售扩展表,记录销售详情、折扣优惠等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | store_goods_sale_id | BIGINT | NO | PK | 销售流水 ID → dwd_store_goods_sale | +| 2 | legacy_order_goods_id | BIGINT | YES | | 旧系统订单商品 ID(当前全为 0) | +| 3 | site_name | TEXT | YES | | 门店名称。**枚举值**: "朗朗桌球"(17563) | +| 4 | legacy_site_id | BIGINT | YES | | 旧系统门店 ID | +| 5 | goods_remark | TEXT | YES | | 商品备注。**热门备注**: "哇哈哈矿泉水", "东方树叶", "可乐", "一次性手套", "地道肠" | +| 6 | option_value_name | TEXT | YES | | 选项值名称(当前全为 NULL) | +| 7 | operator_name | TEXT | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(17562), "收银员:郑丽珍"(1) | +| 8 | open_salesman_flag | INTEGER | YES | | 开启销售员标记。**枚举值**: 2(17563)=否 | +| 9 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前全为 0) | +| 10 | salesman_name | TEXT | YES | | 销售员名称(当前全为 NULL) | +| 11 | salesman_role_id | BIGINT | YES | | 销售员角色 ID(当前全为 0) | +| 12 | salesman_org_id | BIGINT | YES | | 销售员组织 ID(当前全为 0) | +| 13 | discount_money | NUMERIC(18,2) | YES | | 折扣金额 | +| 14 | returns_number | INTEGER | YES | | 退货数量(当前全为 0) | +| 15 | coupon_deduct_money | NUMERIC(18,2) | YES | | 优惠券抵扣金额 | +| 16 | member_discount_amount | NUMERIC(18,2) | YES | | 会员折扣金额 | +| 17 | point_discount_money | NUMERIC(18,2) | YES | | 积分抵扣金额 | +| 18 | point_discount_money_cost | NUMERIC(18,2) | YES | | 积分抵扣成本 | +| 19 | package_coupon_id | BIGINT | YES | | 套餐券 ID(当前全为 0) | +| 20 | order_coupon_id | BIGINT | YES | | 订单券 ID(当前全为 0) | +| 21 | member_coupon_id | BIGINT | YES | | 会员券 ID(当前全为 0) | +| 22 | option_price | NUMERIC(18,2) | YES | | 选项价格 | +| 23 | option_member_discount_money | NUMERIC(18,2) | YES | | 选项会员折扣金额 | +| 24 | option_coupon_deduct_money | NUMERIC(18,2) | YES | | 选项券抵扣金额 | +| 25 | push_money | NUMERIC(18,2) | YES | | 推手金额 | +| 26 | is_single_order | INTEGER | YES | | 是否独立订单。**枚举值**: 1(17563)=是 | +| 27 | sales_type | INTEGER | YES | | 销售类型。**枚举值**: 1(17563)=普通销售 | +| 28 | operator_id | BIGINT | YES | | 操作员 ID | + +## 样本数据 + +| site_name | goods_remark | operator_name | discount_money | +|-----------|--------------|---------------|----------------| +| 朗朗桌球 | 鸡翅三个一份 | 收银员:郑丽珊 | 0.00 | +| 朗朗桌球 | NULL | 收银员:郑丽珊 | 0.00 | + +## 使用说明 + +与主表 `dwd_store_goods_sale` 通过 `store_goods_sale_id` 关联,提供销售详情、折扣优惠等扩展信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_adjust_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_adjust_ex.md new file mode 100644 index 0000000..bcd38ac --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_adjust_ex.md @@ -0,0 +1,39 @@ +# dwd_table_fee_adjust_ex 台费调整扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_table_fee_adjust_ex | +| 主键 | table_fee_adjust_id | +| 主表 | dwd_table_fee_adjust | +| 记录数 | 2849 | +| 说明 | 台费调整扩展表,记录调整类型、申请人、操作员等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_fee_adjust_id | BIGINT | NO | PK | 台费调整 ID → dwd_table_fee_adjust | +| 2 | adjust_type | INTEGER | YES | | 调整类型。**枚举值**: 1(2849)=**[待确认]** | +| 3 | ledger_count | INTEGER | YES | | 账本数量。**枚举值**: 1(2849) | +| 4 | ledger_name | VARCHAR(128) | YES | | 账本名称(当前数据全为 NULL) | +| 5 | applicant_name | VARCHAR(64) | YES | | 申请人名称。**枚举值**: "收银员:郑丽珊"(2849) | +| 6 | operator_name | VARCHAR(64) | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(2849) | +| 7 | applicant_id | BIGINT | YES | | 申请人 ID | +| 8 | operator_id | BIGINT | YES | | 操作员 ID | + +## 样本数据 + +| adjust_type | applicant_name | operator_name | +|-------------|----------------|---------------| +| 1 | 收银员:郑丽珊 | 收银员:郑丽珊 | +| 1 | 收银员:郑丽珊 | 收银员:郑丽珊 | + +## 使用说明 + +与主表 `dwd_table_fee_adjust` 通过 `table_fee_adjust_id` 关联,提供调整类型、申请人、操作员等扩展信息。 diff --git a/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_log_ex.md b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_log_ex.md new file mode 100644 index 0000000..343a82f --- /dev/null +++ b/etl_billiards/docs/bd_manual/Ex/BD_manual_dwd_table_fee_log_ex.md @@ -0,0 +1,44 @@ +# dwd_table_fee_log_ex 台费流水扩展表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_table_fee_log_ex | +| 主键 | table_fee_log_id | +| 主表 | dwd_table_fee_log | +| 记录数 | 18386 | +| 说明 | 台费流水扩展表,记录操作员、销售员、时间等扩展信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_fee_log_id | BIGINT | NO | PK | 台费流水 ID → dwd_table_fee_log | +| 2 | operator_name | VARCHAR(64) | YES | | 操作员名称。**枚举值**: "收银员:郑丽珊"(18382), "收银员:郑丽珍"(2), "店长:郑丽珊"(1), "教练:周蒙"(1) | +| 3 | salesman_name | VARCHAR(64) | YES | | 销售员名称(当前数据全为 NULL) | +| 4 | used_card_amount | NUMERIC(18,2) | YES | | 使用卡金额(当前数据全为 0) | +| 5 | service_money | NUMERIC(18,2) | YES | | 服务费金额(当前数据全为 0) | +| 6 | mgmt_fee | NUMERIC(18,2) | YES | | 管理费金额(当前数据全为 0) | +| 7 | fee_total | NUMERIC(18,2) | YES | | 费用合计(当前数据全为 0) | +| 8 | ledger_start_time | TIMESTAMPTZ | YES | | 账本开始时间 | +| 9 | last_use_time | TIMESTAMPTZ | YES | | 最后使用时间 | +| 10 | operator_id | BIGINT | YES | | 操作员 ID。**枚举值**: 3个不同ID | +| 11 | salesman_user_id | BIGINT | YES | | 销售员用户 ID(当前数据全为 0) | +| 12 | salesman_org_id | BIGINT | YES | | 销售员组织 ID(当前数据全为 0) | + +## 样本数据 + +| operator_name | ledger_start_time | last_use_time | +|---------------|-------------------|---------------| +| 收银员:郑丽珊 | 2025-11-09 22:28:57 | 2025-11-09 23:28:57 | +| 收银员:郑丽珊 | 2025-11-09 21:34:27 | 2025-11-09 23:34:27 | +| 收银员:郑丽珊 | 2025-11-09 22:32:55 | 2025-11-09 23:32:55 | + +## 使用说明 + +与主表 `dwd_table_fee_log` 通过 `table_fee_log_id` 关联,提供操作员和时间相关的扩展信息。 diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_billiards_dwd.md b/etl_billiards/docs/bd_manual/main/BD_manual_billiards_dwd.md new file mode 100644 index 0000000..ee6cc18 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_billiards_dwd.md @@ -0,0 +1,118 @@ +# billiards_dwd Schema 数据字典 + +> 生成时间:2026-01-28 +> 数据来源:数据库实时查询 + 500行样本数据分析 +> 不确定内容已使用 **[待确认]** 标记 + +## 概述 + +`billiards_dwd` 是台球门店数据仓库的明细层(DWD),包含维度表(DIM)和事实表(DWD)。本 Schema 基于 SCD2 缓慢变化维度设计,支持历史数据追溯。 + +--- + +## 维度表 (Dimension Tables) + +| 序号 | 表名 | 说明 | 主键 | 扩展表 | 文档链接 | +|------|------|------|------|--------|----------| +| 1 | dim_assistant | 助教信息 | assistant_id | dim_assistant_ex | [主表](BD_manual_dim_assistant.md) / [扩展表](BD_manual_dim_assistant_ex.md) | +| 2 | dim_goods_category | 商品分类 | goods_category_id | 无 | [主表](BD_manual_dim_goods_category.md) | +| 3 | dim_groupbuy_package | 团购套餐 | groupbuy_package_id | dim_groupbuy_package_ex | [主表](BD_manual_dim_groupbuy_package.md) / [扩展表](BD_manual_dim_groupbuy_package_ex.md) | +| 4 | dim_member | 会员信息 | member_id | dim_member_ex | [主表](BD_manual_dim_member.md) / [扩展表](BD_manual_dim_member_ex.md) | +| 5 | dim_member_card_account | 会员卡账户 | member_card_account_id | dim_member_card_account_ex | [主表](BD_manual_dim_member_card_account.md) / [扩展表](BD_manual_dim_member_card_account_ex.md) | +| 6 | dim_site | 门店信息 | site_id | dim_site_ex | [主表](BD_manual_dim_site.md) / [扩展表](BD_manual_dim_site_ex.md) | +| 7 | dim_store_goods | 门店商品 | store_goods_id | dim_store_goods_ex | [主表](BD_manual_dim_store_goods.md) / [扩展表](BD_manual_dim_store_goods_ex.md) | +| 8 | dim_table | 台桌信息 | table_id | dim_table_ex | [主表](BD_manual_dim_table.md) / [扩展表](BD_manual_dim_table_ex.md) | +| 9 | dim_tenant_goods | 租户商品 | tenant_goods_id | dim_tenant_goods_ex | [主表](BD_manual_dim_tenant_goods.md) / [扩展表](BD_manual_dim_tenant_goods_ex.md) | + +--- + +## 事实表 (Fact Tables) + +| 序号 | 表名 | 说明 | 主键 | 扩展表 | 文档链接 | +|------|------|------|------|--------|----------| +| 1 | dwd_assistant_service_log | 助教服务流水 | assistant_service_log_id | dwd_assistant_service_log_ex | [主表](BD_manual_dwd_assistant_service_log.md) / [扩展表](BD_manual_dwd_assistant_service_log_ex.md) | +| 2 | dwd_assistant_trash_event | 助教服务作废 | assistant_trash_event_id | dwd_assistant_trash_event_ex | [主表](BD_manual_dwd_assistant_trash_event.md) / [扩展表](BD_manual_dwd_assistant_trash_event_ex.md) | +| 3 | dwd_groupbuy_redemption | 团购券核销 | redemption_id | dwd_groupbuy_redemption_ex | [主表](BD_manual_dwd_groupbuy_redemption.md) / [扩展表](BD_manual_dwd_groupbuy_redemption_ex.md) | +| 4 | dwd_member_balance_change | 会员余额变动 | balance_change_id | dwd_member_balance_change_ex | [主表](BD_manual_dwd_member_balance_change.md) / [扩展表](BD_manual_dwd_member_balance_change_ex.md) | +| 5 | dwd_payment | 支付流水 | payment_id | 无 | [主表](BD_manual_dwd_payment.md) | +| 6 | dwd_platform_coupon_redemption | 平台券核销 | platform_coupon_redemption_id | dwd_platform_coupon_redemption_ex | [主表](BD_manual_dwd_platform_coupon_redemption.md) / [扩展表](BD_manual_dwd_platform_coupon_redemption_ex.md) | +| 7 | dwd_recharge_order | 充值订单 | recharge_order_id | dwd_recharge_order_ex | [主表](BD_manual_dwd_recharge_order.md) / [扩展表](BD_manual_dwd_recharge_order_ex.md) | +| 8 | dwd_refund | 退款流水 | refund_id | dwd_refund_ex | [主表](BD_manual_dwd_refund.md) / [扩展表](BD_manual_dwd_refund_ex.md) | +| 9 | dwd_settlement_head | 结账单 | settlement_head_id | dwd_settlement_head_ex | [主表](BD_manual_dwd_settlement_head.md) / [扩展表](BD_manual_dwd_settlement_head_ex.md) | +| 10 | dwd_store_goods_sale | 商品销售流水 | store_goods_sale_id | dwd_store_goods_sale_ex | [主表](BD_manual_dwd_store_goods_sale.md) / [扩展表](BD_manual_dwd_store_goods_sale_ex.md) | +| 11 | dwd_table_fee_adjust | 台费调整 | table_fee_adjust_id | dwd_table_fee_adjust_ex | [主表](BD_manual_dwd_table_fee_adjust.md) / [扩展表](BD_manual_dwd_table_fee_adjust_ex.md) | +| 12 | dwd_table_fee_log | 台费计费流水 | table_fee_log_id | dwd_table_fee_log_ex | [主表](BD_manual_dwd_table_fee_log.md) / [扩展表](BD_manual_dwd_table_fee_log_ex.md) | + +--- + +## SCD2 公共字段 + +所有维度表都实现了 SCD2(缓慢变化维度类型2),包含以下公共字段: + +| 字段名 | 类型 | 说明 | +|--------|------|------| +| scd2_start_time | TIMESTAMPTZ | 版本生效开始时间 | +| scd2_end_time | TIMESTAMPTZ | 版本生效结束时间(NULL 或 9999-12-31 表示当前有效) | +| scd2_is_current | INTEGER | 是否当前版本(1=是, 0=否) | +| scd2_version | INTEGER | 版本号 | + +--- + +## 常见 ID 关联说明 + +| ID 字段 | 关联表 | 说明 | +|---------|--------|------| +| tenant_id | - | 租户 ID,标识所属租户 | +| site_id | dim_site | 门店 ID | +| member_id | dim_member | 会员 ID(0=散客) | +| tenant_member_card_id | dim_member_card_account | 会员卡账户 ID | +| assistant_id | dim_assistant | 助教 ID | +| table_id / site_table_id | dim_table | 台桌 ID | +| tenant_goods_id | dim_tenant_goods | 租户商品 ID | +| site_goods_id | dim_store_goods | 门店商品 ID | +| order_settle_id | dwd_settlement_head | 结账单 ID | + +--- + +## 表设计模式 + +### 主表 + 扩展表模式 + +大部分表采用"主表 + 扩展表"的设计模式: +- **主表**:包含核心业务字段(如金额、状态、关键 ID) +- **扩展表**:包含附属信息(如操作员、门店名称快照、各类详细字段) +- 两表通过主键一对一关联 + +### 枚举值说明 + +文档中的枚举值格式为 `值(数量)=含义`,例如: +- `1(100)=有效` 表示值为 1 的记录有 100 条,含义为"有效" +- **[待确认]** 表示该值的含义无法从数据中确定 + +--- + +## 数据量统计 + +| 表名 | 记录数 | +|------|--------| +| dwd_payment | 22,949 | +| dwd_settlement_head | 22,475 | +| dwd_table_fee_log | 18,386 | +| dwd_store_goods_sale | 17,563 | +| dwd_platform_coupon_redemption | 16,977 | +| dwd_groupbuy_redemption | 11,420 | +| dwd_member_balance_change | 4,745 | +| dwd_table_fee_adjust | 2,849 | +| dwd_assistant_service_log | 1,090 | +| dwd_recharge_order | 455 | +| dwd_assistant_trash_event | 98 | +| dwd_refund | 45 | + +--- + +## 注意事项 + +1. **枚举值推断**:文档中的枚举值含义基于 500 行样本数据推断,可能不完整 +2. **[待确认] 标记**:不确定的字段含义或枚举值已明确标记 +3. **数据时效性**:文档基于 2026-01-28 的数据库快照生成 +4. **扩展表样本数据**:部分扩展表因日期解析问题无法获取样本数据 diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_assistant.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_assistant.md new file mode 100644 index 0000000..ab32a7e --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_assistant.md @@ -0,0 +1,47 @@ +# dim_assistant 助教档案主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_assistant | +| 主键 | assistant_id, scd2_start_time | +| 扩展表 | dim_assistant_ex | +| 记录数 | 69 | +| 说明 | 助教人员档案的核心信息,包括工号、姓名、联系方式、团队归属、等级等 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_id | BIGINT | NO | PK | 助教唯一标识 ID | +| 2 | user_id | BIGINT | YES | | 关联用户 ID(当前数据全为 0,**[作用待确认]**) | +| 3 | assistant_no | TEXT | YES | | 助教工号,如 "11"、"27" | +| 4 | real_name | TEXT | YES | | 真实姓名,如 "梁婷婷"、"周佳怡" | +| 5 | nickname | TEXT | YES | | 昵称/花名,如 "柚子"、"周周"、"Amy" | +| 6 | mobile | TEXT | YES | | 手机号码 | +| 7 | tenant_id | BIGINT | YES | | 租户 ID(当前值: 2790683160709957) | +| 8 | site_id | BIGINT | YES | | 门店 ID → dim_site(当前值: 2790685415443269) | +| 9 | team_id | BIGINT | YES | | 团队 ID | +| 10 | team_name | TEXT | YES | | 团队名称。**枚举值**: "1组"(对应 team_id = 2792011585884037), "2组"(对应 team_id = 2959085810992645) | +| 11 | level | INTEGER | YES | | 助教等级。**枚举值**: 8 = 助教管理, 10 = 初级, 20 = 中级, 30 = 高级, 40 =专家 | +| 12 | entry_time | TIMESTAMPTZ | YES | | 入职时间 | +| 13 | resign_time | TIMESTAMPTZ | YES | | 离职时间(远未来日期如 2225-xx-xx 表示在职) | +| 14 | leave_status | INTEGER | YES | | 在职状态。**枚举值**: 0 = 在职, 1 = 已离职 | +| 15 | assistant_status | INTEGER | YES | | 观察者状态。**枚举值**: 1 = 为非观察者, 2 = 为观察者。 | +| 16 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 17 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 18 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 19 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 查询当前在职助教 +SELECT * FROM billiards_dwd.dim_assistant +WHERE scd2_is_current = 1 AND leave_status = 0; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_goods_category.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_goods_category.md new file mode 100644 index 0000000..d612682 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_goods_category.md @@ -0,0 +1,68 @@ +# dim_goods_category 商品分类维度表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_goods_category | +| 主键 | category_id, scd2_start_time | +| 扩展表 | 无 | +| 记录数 | 26 | +| 说明 | 商品分类树结构表,支持一级/二级分类层次 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | category_id | BIGINT | NO | PK | 分类唯一标识 | +| 2 | tenant_id | BIGINT | YES | | 租户 ID(当前值: 2790683160709957) | +| 3 | category_name | VARCHAR | YES | | 分类名称。**样本值**: "槟榔", "皮头" 等 | +| 4 | alias_name | VARCHAR | YES | | 分类别名(当前数据大部分为空) | +| 5 | parent_category_id | BIGINT | YES | | 父级分类 ID(0=一级分类)→ 自关联 | +| 6 | business_name | VARCHAR | YES | | 业务大类名称。**样本值**: "酒水", "器材" 等 | +| 7 | tenant_goods_business_id | BIGINT | YES | | 业务大类 ID | +| 8 | category_level | INTEGER | YES | | 分类层级。**枚举值**: 1=一级大类, 2=二级子类 | +| 9 | is_leaf | INTEGER | YES | | 是否叶子节点。**枚举值**: 0=非叶子, 1=叶子 | +| 10 | open_salesman | INTEGER | YES | | 营业员开关。 | +| 11 | sort_order | INTEGER | YES | | 排序序号 | +| 12 | is_warehousing | INTEGER | YES | | 是否库存管理。**枚举值**: 1=参与库存管理 | +| 13 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 14 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 15 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 16 | scd2_version | INTEGER | YES | | 版本号 | + +## 分类树结构示例 + +``` +槟榔(一级) +├── 槟榔(二级) + +器材(一级) +├── 皮头 +├── 球杆 +├── 其他 + +酒水(一级) +├── 饮料 +├── 酒水 +├── 茶水 +├── 咖啡 +├── 加料 +├── 洋酒 +``` + +## 使用说明 + +```sql +-- 查询一级分类 +SELECT * FROM billiards_dwd.dim_goods_category +WHERE scd2_is_current = 1 AND parent_category_id = 0; + +-- 查询某一级分类下的二级分类 +SELECT * FROM billiards_dwd.dim_goods_category +WHERE scd2_is_current = 1 AND parent_category_id = <一级分类ID>; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_groupbuy_package.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_groupbuy_package.md new file mode 100644 index 0000000..bf2565d --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_groupbuy_package.md @@ -0,0 +1,49 @@ +# dim_groupbuy_package 团购套餐主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_groupbuy_package | +| 主键 | groupbuy_package_id, scd2_start_time | +| 扩展表 | dim_groupbuy_package_ex | +| 记录数 | 34 | +| 说明 | 内部团购/套餐定义,记录套餐名称、价格、时长、适用台区等核心信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | groupbuy_package_id | BIGINT | NO | PK | 团购套餐 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID(当前值: 2790683160709957) | +| 3 | site_id | BIGINT | YES | | 门店 ID → dim_site(当前值: 2790685415443269) | +| 4 | package_name | VARCHAR | YES | | 套餐名称。**样本值**: "中八、斯诺克包厢两小时", "斯诺克两小时"等 | +| 5 | package_template_id | BIGINT | YES | | 套餐模板 ID | +| 6 | selling_price | NUMERIC(10,2) | YES | | 售卖价格(每笔订单不同,从核销记录中dwd_groupbuy_redemption获取) | +| 7 | coupon_face_value | NUMERIC(10,2) | YES | | 券面值(每笔订单不同,从核销记录中dwd_groupbuy_redemption获取) | +| 8 | duration_seconds | INTEGER | YES | | 套餐时长(秒)。**样本值**: 3600=1小时, 7200=2小时, 14400=4小时 等 | +| 9 | start_time | TIMESTAMPTZ | YES | | 套餐生效开始时间 | +| 10 | end_time | TIMESTAMPTZ | YES | | 套餐生效结束时间 | +| 11 | table_area_name | VARCHAR | YES | | 适用台区名称。**枚举值**: "A区", "VIP包厢", "斯诺克区", "B区", "麻将房", "888" | +| 12 | is_enabled | INTEGER | YES | | 启用状态。**枚举值**: 1=启用, 2=停用 | +| 13 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 14 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 15 | tenant_table_area_id_list | VARCHAR | YES | | 租户级台区 ID 列表 | +| 16 | card_type_ids | VARCHAR | YES | | 允许使用的卡类型 ID 列表(当前数据为 "0") | +| 17 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 18 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 19 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 20 | scd2_version | INTEGER | YES | | 版本号 | + +## 使用说明 + +```sql +-- 查询当前启用的套餐 +SELECT * FROM billiards_dwd.dim_groupbuy_package +WHERE scd2_is_current = 1 AND is_delete = 0 AND is_enabled = 1; + +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_member.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_member.md new file mode 100644 index 0000000..a8df160 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_member.md @@ -0,0 +1,49 @@ +# dim_member 会员档案主表 + +> 生成时间:2026-01-28 + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_member | +| 主键 | member_id, scd2_start_time | +| 扩展表 | dim_member_ex | +| 记录数 | 556 | +| 说明 | 租户会员档案主表,记录会员基本信息和卡种等级 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | member_id | BIGINT | NO | PK | 租户内会员 ID(tenant_member_id) | +| 2 | system_member_id | BIGINT | YES | | 系统级会员 ID | +| 3 | tenant_id | BIGINT | YES | | 租户 ID(当前值: 2790683160709957) | +| 4 | register_site_id | BIGINT | YES | | 注册门店 ID → dim_site(当前值: 2790685415443269) | +| 5 | mobile | TEXT | YES | | 手机号码 | +| 6 | nickname | TEXT | YES | | 昵称。**样本值**: "陈先生", "张先生", "李先生",等 | +| 7 | member_card_grade_code | BIGINT | YES | | 卡等级代码 | +| 8 | member_card_grade_name | TEXT | YES | | 卡等级名称。**枚举值**: "储值卡", "台费卡", "年卡", "活动抵用券", "月卡" | +| 9 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 10 | update_time | TIMESTAMPTZ | YES | | 更新时间 | +| 11 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 12 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 13 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 14 | scd2_version | INTEGER | YES | | 版本号 | + + + +## 使用说明 + +```sql +-- 查询当前有效会员 +SELECT * FROM billiards_dwd.dim_member +WHERE scd2_is_current = 1; + +-- 按卡类型统计会员数 +SELECT member_card_grade_name, COUNT(*) +FROM billiards_dwd.dim_member +WHERE scd2_is_current = 1 +GROUP BY member_card_grade_name; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_member_card_account.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_member_card_account.md new file mode 100644 index 0000000..defa9e6 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_member_card_account.md @@ -0,0 +1,63 @@ +# dim_member_card_account 会员卡账户主表 + +> 生成时间:2026-01-28 + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_member_card_account | +| 主键 | member_card_id, scd2_start_time | +| 扩展表 | dim_member_card_account_ex | +| 记录数 | 945 | +| 说明 | 会员卡账户主表,记录卡种、余额、有效期等核心信息。一个会员可持有多张卡。 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | member_card_id | BIGINT | NO | PK | 会员卡账户 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | register_site_id | BIGINT | YES | | 开卡门店 ID → dim_site | +| 4 | tenant_member_id | BIGINT | YES | | 持卡会员 ID → dim_member(0=未绑定会员) | +| 5 | system_member_id | BIGINT | YES | | 系统级会员 ID | +| 6 | card_type_id | BIGINT | YES | | 卡种 ID | +| 7 | member_card_grade_code | BIGINT | YES | | 卡等级代码 | +| 8 | member_card_grade_code_name | TEXT | YES | | 卡等级名称。**枚举值**: "储值卡", "台费卡", "活动抵用券", "酒水卡", "月卡", "年卡" | +| 9 | member_card_type_name | TEXT | YES | | 卡类型名称(与 grade_code_name 相同) | +| 10 | member_name | TEXT | YES | | 持卡人姓名快照 | +| 11 | member_mobile | TEXT | YES | | 持卡人手机号快照 | +| 12 | balance | NUMERIC(18,2) | YES | | 当前余额(元) | +| 13 | start_time | TIMESTAMPTZ | YES | | 卡生效时间 | +| 14 | end_time | TIMESTAMPTZ | YES | | 卡失效时间(2225-01-01=长期有效) | +| 15 | last_consume_time | TIMESTAMPTZ | YES | | 最近消费时间 | +| 16 | status | INTEGER | YES | | 卡状态。**枚举值**: 1=正常, 4=过期 | +| 17 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 18 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 19 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 20 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 21 | scd2_version | INTEGER | YES | | 版本号 | + +## 卡种分布 + +| card_type_id | 卡类型 | 说明 | +|--------------|--------|------| +| 2793249295533893 | 储值卡 | 充值获得,可抵扣任意费用 | +| 2791990152417157 | 台费卡 | 充值赠送,即可抵扣台费 | +| 2793266846533445 | 活动抵用券 | 充值赠送,不可抵扣助教费 | +| 2794699703437125 | 酒水卡 | 充值赠送,仅可抵扣酒水饮料食品商品 | +| 2793306611533637 | 月卡 | 充值获得,时长卡,仅可抵扣台费 | +| 2791987095408517 | 年卡 | 充值获得,时长卡,仅可抵扣台费 | + + +## 使用说明 + +```sql +-- 查询有效的储值卡 +SELECT * FROM billiards_dwd.dim_member_card_account +WHERE scd2_is_current = 1 + AND is_delete = 0 + AND status = 1 + AND member_card_type_name = '储值卡'; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_site.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_site.md new file mode 100644 index 0000000..0f7034a --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_site.md @@ -0,0 +1,51 @@ +# dim_site 门店主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_site | +| 主键 | site_id, scd2_start_time | +| 扩展表 | dim_site_ex | +| 记录数 | 1 | +| 说明 | 门店维度主表,记录门店基本信息(地址、联系方式等) | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | site_id | BIGINT | NO | PK | 门店 ID | +| 2 | org_id | BIGINT | YES | | 组织机构 ID | +| 3 | tenant_id | BIGINT | YES | | 租户 ID(当前值: 2790683160709957) | +| 4 | shop_name | TEXT | YES | | 门店名称。**当前值**: "朗朗桌球" | +| 5 | site_label | TEXT | YES | | 门店标签。**当前值**: "A" | +| 6 | full_address | TEXT | YES | | 详细地址。**当前值**: "广东省广州市天河区丽阳街12号" | +| 7 | address | TEXT | YES | | 地址描述。**当前值**: "广东省广州市天河区天园街道朗朗桌球" | +| 8 | longitude | NUMERIC(10,6) | YES | | 经度。**当前值**: 113.360321 | +| 9 | latitude | NUMERIC(10,6) | YES | | 纬度。**当前值**: 23.133629 | +| 10 | tenant_site_region_id | BIGINT | YES | | 区域 ID。**当前值**: 156440100 | +| 11 | business_tel | TEXT | YES | | 联系电话。**当前值**: "13316068642" | +| 12 | site_type | INTEGER | YES | | 门店类型。**枚举值**: 1(1)=**[待确认]** | +| 13 | shop_status | INTEGER | YES | | 营业状态。**枚举值**: 1(1)=营业中 **[待确认]** | +| 14 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 15 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 16 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 17 | scd2_version | INTEGER | YES | | 版本号 | + +## 当前门店数据 + +| site_id | shop_name | full_address | longitude | latitude | +|---------|-----------|--------------|-----------|----------| +| 2790685415443269 | 朗朗桌球 | 广东省广州市天河区丽阳街12号 | 113.360321 | 23.133629 | + +## 使用说明 + +```sql +-- 查询当前有效门店 +SELECT * FROM billiards_dwd.dim_site +WHERE scd2_is_current = 1; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_store_goods.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_store_goods.md new file mode 100644 index 0000000..40db18f --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_store_goods.md @@ -0,0 +1,61 @@ +# dim_store_goods 门店商品主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_store_goods | +| 主键 | site_goods_id, scd2_start_time | +| 扩展表 | dim_store_goods_ex | +| 记录数 | 170 | +| 说明 | 门店级商品库存维度表,记录门店的商品库存、价格、销量等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | site_goods_id | BIGINT | NO | PK | 门店商品 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID → dim_site | +| 4 | tenant_goods_id | BIGINT | YES | | 租户商品 ID → dim_tenant_goods | +| 5 | goods_name | TEXT | YES | | 商品名称。**样本值**: "双中支中华", "炫赫门小南京"等 | +| 6 | goods_category_id | BIGINT | YES | | 一级分类 ID → dim_goods_category | +| 7 | goods_second_category_id | BIGINT | YES | | 二级分类 ID → dim_goods_category | +| 8 | category_level1_name | TEXT | YES | | 一级分类名称。**样本值**: "零食", "酒水", "其他", "香烟" 等 | +| 9 | category_level2_name | TEXT | YES | | 二级分类名称。**样本值**: "零食", "饮料", "其他2", "香烟", "雪糕", "酒水", "球杆", "槟榔" 等 | +| 10 | batch_stock_qty | INTEGER | YES | | 批次库存数量 | +| 11 | sale_qty | INTEGER | YES | | 销售数量 | +| 12 | total_sales_qty | INTEGER | YES | | 累计销售数量 | +| 13 | sale_price | NUMERIC(18,2) | YES | | 销售价格(元) | +| 14 | created_at | TIMESTAMPTZ | YES | | 创建时间 | +| 15 | updated_at | TIMESTAMPTZ | YES | | 更新时间 | +| 16 | avg_monthly_sales | NUMERIC(18,4) | YES | | 月均销量 | +| 17 | goods_state | INTEGER | YES | | 商品状态。**枚举值**: 1=上架, 2=下架 | +| 18 | enable_status | INTEGER | YES | | 启用状态。**枚举值**: 1=启用 | +| 19 | send_state | INTEGER | YES | | 配送状态。暂无作用 | +| 20 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 21 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 22 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 23 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 24 | scd2_version | INTEGER | YES | | 版本号 | + +## 样本数据 + +| goods_name | category_level1_name | sale_price | sale_qty | goods_state | +|------------|----------------------|------------|----------|-------------| +| 双中支中华 | 香烟 | 72.00 | 94 | 1 | +| 炫赫门小南京 | 香烟 | 28.00 | 110 | 1 | +| 细荷花 | 香烟 | 55.00 | 184 | 1 | +| 可乐 | 酒水 | 5.00 | 78 | 1 | + +## 使用说明 + +```sql +-- 查询当前上架商品 +SELECT * FROM billiards_dwd.dim_store_goods +WHERE scd2_is_current = 1 AND goods_state = 1 AND is_delete = 0; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_table.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_table.md new file mode 100644 index 0000000..72e24e9 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_table.md @@ -0,0 +1,66 @@ +# dim_table 台桌主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_table | +| 主键 | table_id, scd2_start_time | +| 扩展表 | dim_table_ex | +| 记录数 | 74 | +| 说明 | 台桌维度主表,记录台桌名称、所属台区、单价等核心信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_id | BIGINT | NO | PK | 台桌 ID | +| 2 | site_id | BIGINT | YES | | 门店 ID → dim_site | +| 3 | table_name | TEXT | YES | | 台桌名称。**样本值**: "A1", "A2", "B1", "B2", "S1", "C1", "VIP1", "M3", "666" 等 | +| 4 | site_table_area_id | BIGINT | YES | | 台区 ID | +| 5 | site_table_area_name | TEXT | YES | | 台区名称。**样本值**: "A区", "B区", "补时长", "C区", "麻将房", "K包", "VIP包厢", "斯诺克区", "666", "k包活动区", "M7" 等 | +| 6 | tenant_table_area_id | BIGINT | YES | | 租户级台区 ID | +| 7 | table_price | NUMERIC(18,2) | YES | | 台桌单价(当前数据全为 0.00) | +| 8 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 9 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 10 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 11 | scd2_version | INTEGER | YES | | 版本号 | + +## 台区分布 + +| 台区名称 | 台桌数量 | 大类/索引 | +|----------|----------|----------| +| A区 | 18 | 台球/打球/中八/追分 | +| B区 | 15 | 台球/打球/中八/追分 | +| 补时长 | 7 | 补时长 | +| C区 | 6 | 台球/打球/中八/追分 | +| 麻将房 | 5 | 麻将/麻将棋牌 | +| M7 | 2 | 麻将/麻将棋牌 | +| M8 | 1 | 麻将/麻将棋牌 | +| K包 | 4 | K包/K歌/KTV | +| VIP包厢 | 4 | 台球/打球/中八/追分 (V5为 台球/打球/斯诺克) | +| 斯诺克区 | 4 | 台球/打球/斯诺克 | +| 666 | 2 | 麻将/麻将棋牌 | +| TV台 | 1 | 台球/打球/中八/追分 | +| k包活动区 | 2 | K包/K歌/KTV | +| 幸会158 | 2 | K包/K歌/KTV | +| 发财 | 1 | 麻将/麻将棋牌 | + +## 使用说明 + +```sql +-- 查询当前有效台桌 +SELECT * FROM billiards_dwd.dim_table +WHERE scd2_is_current = 1; + +-- 按台区统计台桌数 +SELECT site_table_area_name, COUNT(*) +FROM billiards_dwd.dim_table +WHERE scd2_is_current = 1 +GROUP BY site_table_area_name +ORDER BY COUNT(*) DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dim_tenant_goods.md b/etl_billiards/docs/bd_manual/main/BD_manual_dim_tenant_goods.md new file mode 100644 index 0000000..84f7f0c --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dim_tenant_goods.md @@ -0,0 +1,47 @@ +# dim_tenant_goods 租户商品主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dim_tenant_goods | +| 主键 | tenant_goods_id, scd2_start_time | +| 扩展表 | dim_tenant_goods_ex | +| 记录数 | 171 | +| 说明 | 租户级商品档案主表(SKU 定义),被门店商品表引用 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | tenant_goods_id | BIGINT | NO | PK | 租户商品 ID(SKU) | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | supplier_id | BIGINT | YES | | 供应商 ID(当前数据全为 0) | +| 4 | category_name | VARCHAR | YES | | 分类名称(二级分类)。**样本值**: "零食", "饮料", "香烟"等 | +| 5 | goods_category_id | BIGINT | YES | | 一级分类 ID | +| 6 | goods_second_category_id | BIGINT | YES | | 二级分类 ID | +| 7 | goods_name | VARCHAR | YES | | 商品名称。**样本值**: "海之言", "西梅多多饮品", "美汁源果粒橙", "三诺橙汁"等 | +| 8 | goods_number | VARCHAR | YES | | 商品编号(序号) | +| 9 | unit | VARCHAR | YES | | 商品单位。**枚举值**: "包", "瓶", "个", "份"等 | +| 10 | market_price | NUMERIC(18,2) | YES | | 市场价/吊牌价(元) | +| 11 | goods_state | INTEGER | YES | | 商品状态。**枚举值**: 1=上架, 2=下架 | +| 12 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 13 | update_time | TIMESTAMPTZ | YES | | 更新时间 | +| 14 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 15 | scd2_start_time | TIMESTAMPTZ | NO | PK | SCD2 版本生效时间 | +| 16 | scd2_end_time | TIMESTAMPTZ | YES | | SCD2 版本失效时间 | +| 17 | scd2_is_current | INTEGER | YES | | 当前版本标记 | +| 18 | scd2_version | INTEGER | YES | | 版本号 | + + +## 使用说明 + +```sql +-- 查询当前有效的租户商品 +SELECT * FROM billiards_dwd.dim_tenant_goods +WHERE scd2_is_current = 1 AND is_delete = 0; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_service_log.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_service_log.md new file mode 100644 index 0000000..e814d8c --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_service_log.md @@ -0,0 +1,67 @@ +# dwd_assistant_service_log 助教服务流水主表 + +> 生成时间:2026-01-28 + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_assistant_service_log | +| 主键 | assistant_service_id | +| 扩展表 | dwd_assistant_service_log_ex | +| 记录数 | 5003 | +| 说明 | 助教服务计费流水事实表,记录每次陪打/教学服务的详细信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_service_id | BIGINT | NO | PK | 服务流水 ID | +| 2 | order_trade_no | BIGINT | YES | | 订单号 → dwd_settlement_head | +| 3 | order_settle_id | BIGINT | YES | | 结账单 ID → dwd_settlement_head | +| 4 | order_pay_id | BIGINT | YES | | 支付单 ID(当前数据全为 0) | +| 5 | order_assistant_id | BIGINT | YES | | 订单助教 ID | +| 6 | order_assistant_type | INTEGER | YES | | 服务类型。**枚举值**: 1=基础课 或 包厢课, 2=附加课/激励课 | +| 7 | tenant_id | BIGINT | YES | | 租户 ID | +| 8 | site_id | BIGINT | YES | | 门店 ID | +| 9 | site_table_id | BIGINT | YES | | 台桌 ID → dim_table(0=非台桌服务) | +| 10 | tenant_member_id | BIGINT | YES | | 会员 ID → dim_member(0=散客) | +| 11 | system_member_id | BIGINT | YES | | 系统会员 ID(0=散客) | +| 12 | assistant_no | VARCHAR | YES | | 助教工号。**样本值**: "2", "9"等 | +| 13 | nickname | VARCHAR | YES | | 助教昵称。**样本值**: "佳怡", "婉婉", "七七"等 | +| 14 | site_assistant_id | BIGINT | YES | | 助教 ID → dim_assistant | +| 15 | user_id | BIGINT | YES | | 助教用户 ID | +| 16 | assistant_team_id | BIGINT | YES | | 助教团队 ID。**枚举值**: 2792011585884037=1组, 2959085810992645=2组 | +| 17 | person_org_id | BIGINT | YES | | 人事组织 ID | +| 18 | assistant_level | INTEGER | YES | | 助教等级。**枚举值**: 8=助教管理, 10=初级, 20=中级, 30=高级, 40=星级 | +| 19 | level_name | VARCHAR | YES | | 等级名称。**枚举值**: "助教管理", "初级", "中级", "高级", "星级" | +| 20 | skill_id | BIGINT | YES | | 技能 ID | +| 21 | skill_name | VARCHAR | YES | | 技能名称。**枚举值**: "基础课", "附加课/激励课", "包厢课" | +| 22 | ledger_unit_price | NUMERIC(10,2) | YES | | 单价(元/小时),**样本值**: 98.00/108.00/190.00 等 | +| 23 | ledger_amount | NUMERIC(10,2) | YES | | 计费金额 | +| 24 | projected_income | NUMERIC(10,2) | YES | | 预估收入 | +| 25 | coupon_deduct_money | NUMERIC(10,2) | YES | | 券抵扣金额 | +| 26 | income_seconds | INTEGER | YES | | 计费时长(秒)。常见值: 3600=1h, 7200=2h, 10800=3h | +| 27 | real_use_seconds | INTEGER | YES | | 实际使用时长(秒) | +| 28 | add_clock | INTEGER | YES | | 加时时长(秒),大多为 0 | +| 29 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 30 | start_use_time | TIMESTAMPTZ | YES | | 服务开始时间 | +| 31 | last_use_time | TIMESTAMPTZ | YES | | 服务结束时间 | +| 32 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | + + +## 使用说明 + +```sql +-- 统计助教服务收入 +SELECT + nickname, level_name, + COUNT(*) AS service_count, + SUM(ledger_amount) AS total_amount, + SUM(income_seconds)/3600.0 AS total_hours +FROM billiards_dwd.dwd_assistant_service_log +WHERE is_delete = 0 +GROUP BY nickname, level_name +ORDER BY total_amount DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_trash_event.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_trash_event.md new file mode 100644 index 0000000..c333185 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_assistant_trash_event.md @@ -0,0 +1,43 @@ +# dwd_assistant_trash_event 助教服务作废主表 + +> 生成时间:2026-01-28 + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_assistant_trash_event | +| 主键 | assistant_trash_event_id | +| 扩展表 | dwd_assistant_trash_event_ex | +| 记录数 | 98 | +| 说明 | 助教服务作废事实表,记录被取消/作废的助教服务记录 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | assistant_trash_event_id | BIGINT | NO | PK | 作废事件 ID | +| 2 | site_id | BIGINT | YES | | 门店 ID | +| 3 | table_id | BIGINT | YES | | 台桌 ID → dim_table | +| 4 | table_area_id | BIGINT | YES | | 台区 ID | +| 5 | assistant_no | VARCHAR | YES | | 助教工号/昵称。**样本值**: "七七", "乔西", "球球"等 | +| 6 | assistant_name | VARCHAR | YES | | 助教名称,与 assistant_no 相同 | +| 7 | charge_minutes_raw | INTEGER | YES | | 原计费时长(秒)。**样本值**: 0, 3600=1h, 10800=3h 等 | +| 8 | abolish_amount | NUMERIC(18,2) | YES | | 作废金额(元)。**样本值**: 0.00, 190.00, 570.00 等 | +| 9 | trash_reason | VARCHAR | YES | | 作废原因(当前数据全为 NULL) | +| 10 | create_time | TIMESTAMPTZ | YES | | 创建时间 | + + +## 使用说明 + +```sql +-- 助教作废金额统计 +SELECT + assistant_name, + COUNT(*) AS trash_count, + SUM(abolish_amount) AS total_abolished +FROM billiards_dwd.dwd_assistant_trash_event +GROUP BY assistant_name +ORDER BY total_abolished DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_groupbuy_redemption.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_groupbuy_redemption.md new file mode 100644 index 0000000..81c67af --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_groupbuy_redemption.md @@ -0,0 +1,57 @@ +# dwd_groupbuy_redemption 团购核销主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_groupbuy_redemption | +| 主键 | redemption_id | +| 扩展表 | dwd_groupbuy_redemption_ex | +| 记录数 | 11420 | +| 说明 | 团购券核销事实表,记录团购券的核销使用明细 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | redemption_id | BIGINT | NO | PK | 核销 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID | +| 4 | table_id | BIGINT | YES | | 台桌 ID → dim_table | +| 5 | tenant_table_area_id | BIGINT | YES | | 台区 ID | +| 6 | table_charge_seconds | INTEGER | YES | | 台费计费时长(秒)。**样本值**: 3600=1h, 7200=2h, 10800=3h 等 | +| 7 | order_trade_no | BIGINT | YES | | 订单号 | +| 8 | order_settle_id | BIGINT | YES | | 结账单 ID → dwd_settlement_head | +| 9 | order_coupon_id | BIGINT | YES | | 订单券 ID | +| 10 | coupon_origin_id | BIGINT | YES | | 券来源 ID | +| 11 | promotion_activity_id | BIGINT | YES | | 促销活动 ID | +| 12 | promotion_coupon_id | BIGINT | YES | | 促销券 ID → dim_groupbuy_package | +| 13 | order_coupon_channel | INTEGER | YES | | 券渠道。**枚举值**: 1=美团, 2=抖音 | +| 14 | ledger_unit_price | NUMERIC(18,2) | YES | | 单价(元)。**样本值**: 29.90, 12.12, 11.11, 39.90 等 | +| 15 | ledger_count | INTEGER | YES | | 计费数量(秒)。**样本值**: 3600=1h, 7200=2h 等 | +| 16 | ledger_amount | NUMERIC(18,2) | YES | | 账本金额(元)。**样本值**: 48.00, 96.00, 68.00 等 | +| 17 | coupon_money | NUMERIC(18,2) | YES | | 券面额(元)。**样本值**: 48.00, 116.00, 96.00, 68.00 等 | +| 18 | promotion_seconds | INTEGER | YES | | 促销时长(秒)。**样本值**: 3600=1h, 7200=2h, 14400=4h 等 | +| 19 | coupon_code | VARCHAR | YES | | 券码 | +| 20 | is_single_order | INTEGER | YES | | 是否独立订单。**枚举值**: 0=否, 1=是 | +| 21 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 22 | ledger_name | VARCHAR | YES | | 套餐名称。**样本值**: "全天A区中八一小时", "中八A区新人特惠一小时" 等 | +| 23 | create_time | TIMESTAMPTZ | YES | | 创建时间 | + +## 使用说明 + +```sql +-- 各套餐核销统计 +SELECT + ledger_name, + COUNT(*) AS redemption_count, + SUM(ledger_amount) AS total_amount +FROM billiards_dwd.dwd_groupbuy_redemption +WHERE is_delete = 0 +GROUP BY ledger_name +ORDER BY redemption_count DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_member_balance_change.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_member_balance_change.md new file mode 100644 index 0000000..57007c2 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_member_balance_change.md @@ -0,0 +1,72 @@ +# dwd_member_balance_change 会员余额变动主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_member_balance_change | +| 主键 | balance_change_id | +| 扩展表 | dwd_member_balance_change_ex | +| 记录数 | 4745 | +| 说明 | 会员卡余额变动流水事实表,记录每次余额变动的金额和原因 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | balance_change_id | BIGINT | NO | PK | 变动流水 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID | +| 4 | register_site_id | BIGINT | YES | | 注册门店 ID | +| 5 | tenant_member_id | BIGINT | YES | | 会员 ID → dim_member | +| 6 | system_member_id | BIGINT | YES | | 系统会员 ID | +| 7 | tenant_member_card_id | BIGINT | YES | | 会员卡 ID → dim_member_card_account | +| 8 | card_type_id | BIGINT | YES | | 卡类型 ID | +| 9 | card_type_name | VARCHAR | YES | | 卡类型名称。**枚举值**: "储值卡", "活动抵用券", "台费卡", "酒水卡", "年卡", "月卡" | +| 10 | member_name | VARCHAR | YES | | 会员名称快照 | +| 11 | member_mobile | VARCHAR | YES | | 会员手机号快照 | +| 12 | balance_before | NUMERIC(18,2) | YES | | 变动前余额 | +| 13 | change_amount | NUMERIC(18,2) | YES | | 变动金额(正=充值/赠送,负=消费) | +| 14 | balance_after | NUMERIC(18,2) | YES | | 变动后余额 | +| 15 | from_type | INTEGER | YES | | 变动来源。**枚举值**: 1=结账/消费, 2=结账撤销, 3=现付充值, 4=活动赠送, 7=充值撤销/退款, 9=手动调整 | +| 16 | payment_method | INTEGER | YES | | 支付方式,暂未启用。 | +| 17 | change_time | TIMESTAMPTZ | YES | | 变动时间 | +| 18 | is_delete | INTEGER | YES | | 删除标记 | +| 19 | remark | VARCHAR | YES | | 备注。**样本值**: "注销会员", "充值退款" 等 | + +## 卡类型余额变动分布 + +| 卡类型 | 变动次数 | 说明 | +|--------|----------|------| +| 储值卡 | 2825 | 最主要的消费卡种 | +| 活动抵用券 | 1275 | 营销活动赠送 | +| 台费卡 | 482 | 台费专用卡 | +| 酒水卡 | 149 | 酒水专用卡 | + +## 样本数据 + +| member_name | card_type_name | balance_before | change_amount | balance_after | from_type | +|-------------|----------------|----------------|---------------|---------------|-----------| +| 曾丹烨 | 储值卡 | 816.30 | -120.00 | 696.30 | 1 | +| 葛先生 | 储值卡 | 6745.27 | -144.00 | 6601.27 | 1 | +| 陈腾鑫 | 储值卡 | 293.20 | -114.61 | 178.59 | 1 | +| 轩哥 | 酒水卡 | 532.00 | -41.00 | 491.00 | 1 | + +## 使用说明 + +```sql +-- 会员消费总额排行 +SELECT + member_name, + member_mobile, + card_type_name, + SUM(CASE WHEN change_amount < 0 THEN ABS(change_amount) ELSE 0 END) AS total_consume +FROM billiards_dwd.dwd_member_balance_change +WHERE is_delete = 0 +GROUP BY member_name, member_mobile, card_type_name +ORDER BY total_consume DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_payment.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_payment.md new file mode 100644 index 0000000..b1e708f --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_payment.md @@ -0,0 +1,47 @@ +# dwd_payment 支付流水表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_payment | +| 主键 | payment_id | +| 扩展表 | 无 | +| 记录数 | 22949 | +| 说明 | 支付流水事实表,记录每笔支付的方式、金额、时间等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | payment_id | BIGINT | NO | PK | 支付流水 ID | +| 2 | site_id | BIGINT | YES | | 门店 ID | +| 3 | relate_type | INTEGER | YES | | 关联业务类型。**枚举值**: 1=预付, 2=结账, 5=充值, 6=线上商城 | +| 4 | relate_id | BIGINT | YES | | 关联业务 ID | +| 5 | pay_amount | NUMERIC(18,2) | YES | | 支付金额(元) | +| 6 | pay_status | INTEGER | YES | | 支付状态。**枚举值**: 2=已支付 | +| 7 | payment_method | INTEGER | YES | | 支付方式。**枚举值**: 2=现金支付 , 4=离线支付 | +| 8 | online_pay_channel | INTEGER | YES | | 在线支付渠道(当前数据全为 0) | +| 9 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 10 | pay_time | TIMESTAMPTZ | YES | | 支付时间 | +| 11 | pay_date | DATE | YES | | 支付日期 | + + + +## 使用说明 + +```sql +-- 每日支付金额统计 +SELECT + pay_date, + COUNT(*) AS pay_count, + SUM(pay_amount) AS total_amount +FROM billiards_dwd.dwd_payment +WHERE pay_status = 2 +GROUP BY pay_date +ORDER BY pay_date DESC; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_platform_coupon_redemption.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_platform_coupon_redemption.md new file mode 100644 index 0000000..e957d09 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_platform_coupon_redemption.md @@ -0,0 +1,57 @@ +# dwd_platform_coupon_redemption 平台券核销主表 + +> 生成时间:2026-01-28 + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_platform_coupon_redemption | +| 主键 | platform_coupon_redemption_id | +| 扩展表 | dwd_platform_coupon_redemption_ex | +| 记录数 | 16977 | +| 说明 | 平台优惠券核销事实表,记录美团/抖音等平台券的核销明细 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | platform_coupon_redemption_id | BIGINT | NO | PK | 核销 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID | +| 4 | coupon_code | VARCHAR | YES | | 券码 | +| 5 | coupon_channel | INTEGER | YES | | 券渠道。**枚举值**: 1=美团, 2=抖音 | +| 6 | coupon_name | VARCHAR | YES | | 券名称。**样本值**: "【全天可用】中八桌球一小时(A区)", "【全天可用】中八桌球两小时(A区)" 等 | +| 7 | sale_price | NUMERIC(10,2) | YES | | 售卖价(元)。**样本值**: 29.90, 69.90, 59.90, 39.90, 19.90 等 | +| 8 | coupon_money | NUMERIC(10,2) | YES | | 券面额(元)。**样本值**: 48.00, 96.00, 116.00, 68.00 等 | +| 9 | coupon_free_time | INTEGER | YES | | 券赠送时长(当前数据全为 0) | +| 10 | channel_deal_id | BIGINT | YES | | 渠道交易 ID | +| 11 | deal_id | BIGINT | YES | | 交易 ID | +| 12 | group_package_id | BIGINT | YES | | 团购套餐 ID(当前数据全为 0) | +| 13 | site_order_id | BIGINT | YES | | 门店订单 ID | +| 14 | table_id | BIGINT | YES | | 台桌 ID → dim_table | +| 15 | certificate_id | VARCHAR | YES | | 凭证 ID | +| 16 | verify_id | VARCHAR | YES | | 核验 ID(仅抖音券有值) | +| 17 | use_status | INTEGER | YES | | 使用状态。**枚举值**: 1=已使用, 2=已撤销 | +| 18 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 19 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 20 | consume_time | TIMESTAMPTZ | YES | | 核销时间 | + +## 使用说明 + +```sql +-- 各渠道核销统计 +SELECT + CASE coupon_channel + WHEN 1 THEN '美团' + WHEN 2 THEN '抖音' + ELSE '其他' + END AS channel, + COUNT(*) AS redemption_count, + SUM(coupon_money) AS total_coupon_value, + SUM(sale_price) AS total_sale_price +FROM billiards_dwd.dwd_platform_coupon_redemption +WHERE is_delete = 0 AND use_status = 1 +GROUP BY coupon_channel; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_recharge_order.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_recharge_order.md new file mode 100644 index 0000000..437a6b9 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_recharge_order.md @@ -0,0 +1,53 @@ +# dwd_recharge_order 充值订单主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_recharge_order | +| 主键 | recharge_order_id | +| 扩展表 | dwd_recharge_order_ex | +| 记录数 | 455 | +| 说明 | 会员充值订单事实表,记录会员卡充值的金额、方式等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | recharge_order_id | BIGINT | NO | PK | 充值订单 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID | +| 4 | member_id | BIGINT | YES | | 会员 ID → dim_member | +| 5 | member_name_snapshot | TEXT | YES | | 会员名称快照 | +| 6 | member_phone_snapshot | TEXT | YES | | 会员电话快照 | +| 7 | tenant_member_card_id | BIGINT | YES | | 会员卡账户 ID → dim_member_card_account | +| 8 | member_card_type_name | TEXT | YES | | 卡类型名称。**枚举值**: "储值卡", "月卡" | +| 9 | settle_relate_id | BIGINT | YES | | 结算关联 ID | +| 10 | settle_type | INTEGER | YES | | 结算类型。**枚举值**: 5=充值订单, 7=充值退款 | +| 11 | settle_name | TEXT | YES | | 结算名称。**枚举值**: "充值订单", "充值退款" | +| 12 | is_first | INTEGER | YES | | 是否首充。**枚举值**: 1=是, 2=否 | +| 13 | pay_amount | NUMERIC(18,2) | YES | | 充值金额(元,撤销为负数) | +| 14 | refund_amount | NUMERIC(18,2) | YES | | 退款金额 | +| 15 | point_amount | NUMERIC(18,2) | YES | | 积分金额 | +| 16 | cash_amount | NUMERIC(18,2) | YES | | 现金金额 | +| 17 | payment_method | INTEGER | YES | | 支付方式,暂未启用。 | +| 18 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 19 | pay_time | TIMESTAMPTZ | YES | | 支付时间 | + + +## 使用说明 + +```sql +-- 充值总额统计(不含撤销) +SELECT + member_card_type_name, + COUNT(*) AS order_count, + SUM(pay_amount) AS total_recharge +FROM billiards_dwd.dwd_recharge_order +WHERE settle_type = 5 +GROUP BY member_card_type_name; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_refund.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_refund.md new file mode 100644 index 0000000..861c06c --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_refund.md @@ -0,0 +1,45 @@ +# dwd_refund 退款流水主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_refund | +| 主键 | refund_id | +| 扩展表 | dwd_refund_ex | +| 记录数 | 45 | +| 说明 | 退款流水事实表,记录退款的金额、关联业务等信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | refund_id | BIGINT | NO | PK | 退款流水 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID | +| 4 | relate_type | INTEGER | YES | | 关联业务类型。**枚举值**: 1(7)=预付退款 , 2(31)=结账退款, 5(7)=充值退款 | +| 5 | relate_id | BIGINT | YES | | 关联业务 ID | +| 6 | pay_amount | NUMERIC(18,2) | YES | | 退款金额(元,负数) | +| 7 | channel_fee | NUMERIC(18,2) | YES | | 渠道手续费 | +| 8 | pay_time | TIMESTAMPTZ | YES | | 退款时间 | +| 9 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 10 | payment_method | INTEGER | YES | | 支付方式,暂无用途。 | +| 11 | member_id | BIGINT | YES | | 会员 ID(当前数据全为 0) | +| 12 | member_card_id | BIGINT | YES | | 会员卡 ID(当前数据全为 0) | + + +## 使用说明 + +```sql +-- 退款统计 +SELECT + relate_type, + COUNT(*) AS refund_count, + SUM(ABS(pay_amount)) AS total_refund +FROM billiards_dwd.dwd_refund +GROUP BY relate_type; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_settlement_head.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_settlement_head.md new file mode 100644 index 0000000..ddf7944 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_settlement_head.md @@ -0,0 +1,74 @@ +# dwd_settlement_head 结账头表主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_settlement_head | +| 主键 | order_settle_id | +| 扩展表 | dwd_settlement_head_ex | +| 记录数 | 23366 | +| 说明 | 结账单头表事实表,是核心交易表,记录每笔结账的消费金额、支付方式、折扣等汇总信息 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | order_settle_id | BIGINT | NO | PK | 结账单 ID | +| 2 | tenant_id | BIGINT | YES | | 租户 ID | +| 3 | site_id | BIGINT | YES | | 门店 ID → dim_site | +| 4 | site_name | VARCHAR | YES | | 门店名称。**当前值**: "朗朗桌球" | +| 5 | table_id | BIGINT | YES | | 台桌 ID → dim_table(0=非台桌订单,如商城订单) | +| 6 | settle_name | VARCHAR | YES | | 结账名称。**样本值**: "商城订单", "A区 A3", "A区 A4", "斯诺克区 S1" | +| 7 | order_trade_no | BIGINT | YES | | 订单号 | +| 8 | create_time | TIMESTAMPTZ | YES | | 创建时间 | +| 9 | pay_time | TIMESTAMPTZ | YES | | 支付时间 | +| 10 | settle_type | INTEGER | YES | | 结账类型。**枚举值**: 1=台桌结账, 3=商城订单, 6=退货订单, 7=退款订单 | +| 11 | revoke_order_id | BIGINT | YES | | 撤销订单 ID(当前数据全为 0) | +| 12 | member_id | BIGINT | YES | | 会员 ID → dim_member(0=散客,占比约 82.8%) | +| 13 | member_name | VARCHAR | YES | | 会员名称 | +| 14 | member_phone | VARCHAR | YES | | 会员电话 | +| 15 | member_card_account_id | BIGINT | YES | | 会员卡账户 ID(当前数据全为 0) | +| 16 | member_card_type_name | VARCHAR | YES | | 卡类型名称(当前数据全为空) | +| 17 | is_bind_member | BOOLEAN | YES | | 是否绑定会员。**枚举值**: False=否 | +| 18 | member_discount_amount | NUMERIC(18,2) | YES | | 会员折扣金额 | +| 19 | consume_money | NUMERIC(18,2) | YES | | 消费总金额(元) | +| 20 | table_charge_money | NUMERIC(18,2) | YES | | 台费金额 | +| 21 | goods_money | NUMERIC(18,2) | YES | | 商品金额 | +| 22 | real_goods_money | NUMERIC(18,2) | YES | | 实收商品金额 | +| 23 | assistant_pd_money | NUMERIC(18,2) | YES | | 助教陪打费用 | +| 24 | assistant_cx_money | NUMERIC(18,2) | YES | | 助教促销费用 | +| 25 | adjust_amount | NUMERIC(18,2) | YES | | 调整金额 | +| 26 | pay_amount | NUMERIC(18,2) | YES | | 实付金额 | +| 27 | balance_amount | NUMERIC(18,2) | YES | | 余额支付金额 | +| 28 | recharge_card_amount | NUMERIC(18,2) | YES | | 储值卡支付金额 | +| 29 | gift_card_amount | NUMERIC(18,2) | YES | | 礼品卡支付金额 | +| 30 | coupon_amount | NUMERIC(18,2) | YES | | 券抵扣金额 | +| 31 | rounding_amount | NUMERIC(18,2) | YES | | 抹零金额 | +| 32 | point_amount | NUMERIC(18,2) | YES | | 积分抵扣等值金额 | + + +## 使用说明 + +```sql +-- 每日营收统计 +SELECT + DATE(pay_time) AS pay_date, + COUNT(*) AS order_count, + SUM(consume_money) AS total_consume, + SUM(pay_amount) AS total_pay +FROM billiards_dwd.dwd_settlement_head +GROUP BY DATE(pay_time) +ORDER BY pay_date DESC; + +-- 台费 vs 商品 vs 助教收入 +SELECT + SUM(table_charge_money) AS table_revenue, + SUM(goods_money) AS goods_revenue, + SUM(assistant_pd_money + assistant_cx_money) AS assistant_revenue +FROM billiards_dwd.dwd_settlement_head; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_store_goods_sale.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_store_goods_sale.md new file mode 100644 index 0000000..58f8d77 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_store_goods_sale.md @@ -0,0 +1,61 @@ +# dwd_store_goods_sale 商品销售主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_store_goods_sale | +| 主键 | store_goods_sale_id | +| 扩展表 | dwd_store_goods_sale_ex | +| 记录数 | 17563 | +| 说明 | 商品销售流水事实表,记录每笔商品销售明细 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | store_goods_sale_id | BIGINT | NO | PK | 销售流水 ID | +| 2 | order_trade_no | BIGINT | YES | | 订单号 | +| 3 | order_settle_id | BIGINT | YES | | 结账单 ID → dwd_settlement_head | +| 4 | order_pay_id | BIGINT | YES | | 支付单 ID(当前数据全为 0) | +| 5 | order_goods_id | BIGINT | YES | | 订单商品 ID(0=商城订单) | +| 6 | site_id | BIGINT | YES | | 门店 ID | +| 7 | tenant_id | BIGINT | YES | | 租户 ID | +| 8 | site_goods_id | BIGINT | YES | | 门店商品 ID → dim_store_goods | +| 9 | tenant_goods_id | BIGINT | YES | | 租户商品 ID → dim_tenant_goods | +| 10 | tenant_goods_category_id | BIGINT | YES | | 商品分类 ID | +| 11 | tenant_goods_business_id | BIGINT | YES | | 业务大类 ID | +| 12 | site_table_id | BIGINT | YES | | 台桌 ID(0=商城订单,非台桌消费) | +| 13 | ledger_name | VARCHAR | YES | | 商品名称。**样本值**: "哇哈哈矿泉水", "东方树叶", "可乐" 等 | +| 14 | ledger_group_name | VARCHAR | YES | | 商品分类。**样本值**: "酒水", "零食", "香烟" 等 | +| 15 | ledger_unit_price | NUMERIC(18,2) | YES | | 单价(元) | +| 16 | ledger_count | INTEGER | YES | | 购买数量。**样本值**: 1, 2, 3, 4 等 | +| 17 | ledger_amount | NUMERIC(18,2) | YES | | 销售金额(元) | +| 18 | discount_price | NUMERIC(18,2) | YES | | 折扣金额 | +| 19 | real_goods_money | NUMERIC(18,2) | YES | | 实收金额 | +| 20 | cost_money | NUMERIC(18,2) | YES | | 成本金额 | +| 21 | ledger_status | INTEGER | YES | | 账本状态。**枚举值**: 1=已结算 | +| 22 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | +| 23 | create_time | TIMESTAMPTZ | YES | | 创建时间 | + + +## 使用说明 + +```sql +-- 热销商品排行 +SELECT + ledger_name, + ledger_group_name, + COUNT(*) AS sale_count, + SUM(ledger_count) AS total_qty, + SUM(real_goods_money) AS total_revenue +FROM billiards_dwd.dwd_store_goods_sale +WHERE is_delete = 0 +GROUP BY ledger_name, ledger_group_name +ORDER BY total_revenue DESC +LIMIT 20; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_adjust.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_adjust.md new file mode 100644 index 0000000..1695f13 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_adjust.md @@ -0,0 +1,43 @@ +# dwd_table_fee_adjust 台费调整主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_table_fee_adjust | +| 主键 | table_fee_adjust_id | +| 扩展表 | dwd_table_fee_adjust_ex | +| 记录数 | 2849 | +| 说明 | 台费调整事实表,记录台费调整的金额和时间 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_fee_adjust_id | BIGINT | NO | PK | 台费调整 ID | +| 2 | order_trade_no | BIGINT | YES | | 订单号 | +| 3 | order_settle_id | BIGINT | YES | | 结账单 ID → dwd_settlement_head | +| 4 | tenant_id | BIGINT | YES | | 租户 ID | +| 5 | site_id | BIGINT | YES | | 门店 ID | +| 6 | table_id | BIGINT | YES | | 台桌 ID → dim_table | +| 7 | table_area_id | BIGINT | YES | | 台区 ID | +| 8 | table_area_name | VARCHAR | YES | | 台区名称(当前数据全为 NULL) | +| 9 | tenant_table_area_id | BIGINT | YES | | 租户台区 ID | +| 10 | ledger_amount | NUMERIC(18,2) | YES | | 调整金额(元) | +| 11 | ledger_status | INTEGER | YES | | 账本状态。**枚举值**: 0=待确认, 1=已确认 | +| 12 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | + +## 使用说明 + +```sql +-- 台费调整统计 +SELECT + COUNT(*) AS adjust_count, + SUM(ledger_amount) AS total_adjust +FROM billiards_dwd.dwd_table_fee_adjust +WHERE is_delete = 0 AND ledger_status = 1; +``` diff --git a/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_log.md b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_log.md new file mode 100644 index 0000000..abbd9e5 --- /dev/null +++ b/etl_billiards/docs/bd_manual/main/BD_manual_dwd_table_fee_log.md @@ -0,0 +1,64 @@ +# dwd_table_fee_log 台费流水主表 + +> 生成时间:2026-01-28 + + +## 表信息 + +| 属性 | 值 | +|------|-----| +| Schema | billiards_dwd | +| 表名 | dwd_table_fee_log | +| 主键 | table_fee_log_id | +| 扩展表 | dwd_table_fee_log_ex | +| 记录数 | 18386 | +| 说明 | 台费计费流水事实表,记录每次台桌使用的计费明细 | + +## 字段说明 + +| 序号 | 字段名 | 类型 | 可空 | 主键 | 说明 | +|------|--------|------|------|------|------| +| 1 | table_fee_log_id | BIGINT | NO | PK | 台费流水 ID | +| 2 | order_trade_no | BIGINT | YES | | 订单号 | +| 3 | order_settle_id | BIGINT | YES | | 结账单 ID → dwd_settlement_head | +| 4 | order_pay_id | BIGINT | YES | | 支付单 ID(当前数据全为 0) | +| 5 | tenant_id | BIGINT | YES | | 租户 ID | +| 6 | site_id | BIGINT | YES | | 门店 ID | +| 7 | site_table_id | BIGINT | YES | | 台桌 ID → dim_table | +| 8 | site_table_area_id | BIGINT | YES | | 台区 ID | +| 9 | site_table_area_name | VARCHAR | YES | | 台区名称。**枚举值**: "A区", "B区", "斯诺克区", "麻将房", "C区", "补时长", "VIP包厢" 等 | +| 10 | tenant_table_area_id | BIGINT | YES | | 租户级台区 ID | +| 11 | member_id | BIGINT | YES | | 会员 ID(0=散客,占比约 82.4%) | +| 12 | ledger_name | VARCHAR | YES | | 台桌名称。**样本值**: "A3", "A5", "A4", "S1", "B5", "M3" 等 | +| 13 | ledger_unit_price | NUMERIC(18,2) | YES | | 单价(元/小时),如 48.00/58.00/68.00 | +| 14 | ledger_count | INTEGER | YES | | 计费时长(秒)。**样本值**: 3600=1h, 7200=2h, 10800=3h 等 | +| 15 | ledger_amount | NUMERIC(18,2) | YES | | 计费金额(元) | +| 16 | real_table_charge_money | NUMERIC(18,2) | YES | | 实收台费金额 | +| 17 | coupon_promotion_amount | NUMERIC(18,2) | YES | | 券促销金额 | +| 18 | member_discount_amount | NUMERIC(18,2) | YES | | 会员折扣金额 | +| 19 | adjust_amount | NUMERIC(18,2) | YES | | 调整金额 | +| 20 | real_table_use_seconds | INTEGER | YES | | 实际使用时长(秒) | +| 21 | add_clock_seconds | INTEGER | YES | | 加时时长(秒),大多为 0 | +| 22 | start_use_time | TIMESTAMPTZ | YES | | 开台时间 | +| 23 | ledger_end_time | TIMESTAMPTZ | YES | | 结账时间 | +| 24 | create_time | TIMESTAMPTZ | YES | | 记录创建时间 | +| 25 | ledger_status | INTEGER | YES | | 账本状态。**枚举值**: 1=已结算 | +| 26 | is_single_order | INTEGER | YES | | 是否独立订单。**枚举值**: 0=合并订单, 1=独立订单 | +| 27 | is_delete | INTEGER | YES | | 删除标记。**枚举值**: 0=未删除 | + + +## 使用说明 + +```sql +-- 各台区台费收入统计 +SELECT + site_table_area_name, + COUNT(*) AS usage_count, + SUM(ledger_amount) AS total_fee, + SUM(real_table_charge_money) AS real_fee, + SUM(coupon_promotion_amount) AS coupon_fee +FROM billiards_dwd.dwd_table_fee_log +WHERE is_delete = 0 +GROUP BY site_table_area_name +ORDER BY total_fee DESC; +``` diff --git a/etl_billiards/docs/table_2025-12-19/_generate_assistant_tables.py b/etl_billiards/docs/table_2025-12-19/_generate_assistant_tables.py deleted file mode 100644 index 93301b6..0000000 --- a/etl_billiards/docs/table_2025-12-19/_generate_assistant_tables.py +++ /dev/null @@ -1,585 +0,0 @@ -# -*- coding: utf-8 -*- -"""生成 2025年10-12月 助教排行榜 + 助教详情表(CSV + MD)。 - -输出目录:etl_billiards/docs/table_2025-12-19 - -注意:客户流水/充值归因涉及“多助教/多订单命中”时按全额复制计入,会导致助教汇总>门店汇总,表格说明会写明。 -""" - -from __future__ import annotations - -import csv -import re -from dataclasses import dataclass -from decimal import Decimal -from pathlib import Path -from statistics import median -from typing import Any - -import psycopg2 -import psycopg2.extras - - -SITE_ID = 2790685415443269 -TZ = "Asia/Shanghai" - -WIN_OCT = ("2025-10-01 00:00:00+08", "2025-11-01 00:00:00+08") -WIN_NOV = ("2025-11-01 00:00:00+08", "2025-12-01 00:00:00+08") -WIN_DEC = ("2025-12-01 00:00:00+08", "2026-01-01 00:00:00+08") -WIN_ALL = (WIN_OCT[0], WIN_DEC[1]) - -MONTHS = [ - ("2025-10", "10月", WIN_OCT), - ("2025-11", "11月", WIN_NOV), - ("2025-12", "12月", WIN_DEC), -] - -REPO_ROOT = Path(__file__).resolve().parents[3] -ENV_PATH = REPO_ROOT / "etl_billiards" / ".env" -OUT_DIR = Path(__file__).resolve().parent - - -@dataclass(frozen=True) -class SqlBlock: - title: str - sql: str - - -def read_pg_dsn() -> str: - text = ENV_PATH.read_text(encoding="utf-8") - m = re.search(r"^PG_DSN=(.+)$", text, re.M) - if not m: - raise RuntimeError(f"未在 {ENV_PATH} 中找到 PG_DSN") - return m.group(1).strip() - - -def conn(): - return psycopg2.connect(read_pg_dsn(), connect_timeout=10) - - -def sanitize_filename(name: str) -> str: - name = name.strip() - name = re.sub(r"[<>:\"/\\|?*]+", "_", name) - name = re.sub(r"\s+", " ", name) - return name - - -def d(v: Any) -> Decimal: - if v is None: - return Decimal("0") - if isinstance(v, Decimal): - return v - return Decimal(str(v)) - - -def fmt_money(v: Any) -> str: - return f"{d(v):.2f}" - - -def fmt_hours(v: Any, digits: int = 2) -> str: - q = Decimal("1").scaleb(-digits) - return f"{d(v).quantize(q):f}h" - - -def write_csv(path: Path, title: str, description: str, header_rows: list[list[str]], rows: list[list[Any]]) -> None: - path.parent.mkdir(parents=True, exist_ok=True) - with path.open("w", newline="", encoding="utf-8") as f: - w = csv.writer(f) - w.writerow([title]) - w.writerow([description]) - w.writerow([]) - for hr in header_rows: - w.writerow(hr) - for r in rows: - w.writerow(["" if v is None else v for v in r]) - - -def write_csv_sections(path: Path, title: str, description: str, section_rows: list[list[Any]]) -> None: - path.parent.mkdir(parents=True, exist_ok=True) - with path.open("w", newline="", encoding="utf-8") as f: - w = csv.writer(f) - w.writerow([title]) - w.writerow([description]) - w.writerow([]) - for r in section_rows: - w.writerow(["" if v is None else v for v in r]) - - -def write_md(path: Path, title: str, thinking: str, description: str, sql_blocks: list[SqlBlock]) -> None: - parts: list[str] = [] - parts.append(f"# {title}\n") - parts.append("## 思考过程\n") - parts.append(thinking.strip() + "\n") - parts.append("\n## 查询说明\n") - parts.append(description.strip() + "\n") - parts.append("\n## SQL\n") - for b in sql_blocks: - parts.append(f"\n### {b.title}\n") - parts.append("```sql\n") - parts.append(b.sql.strip() + "\n") - parts.append("```\n") - path.parent.mkdir(parents=True, exist_ok=True) - path.write_text("".join(parts), encoding="utf-8") - - -def fetch_all(cur, sql: str, params: dict[str, Any]) -> list[dict[str, Any]]: - cur.execute(sql, params) - return list(cur.fetchall()) - - -def month_case(ts_expr: str) -> str: - parts = [] - for month_key, _, (ws, we) in MONTHS: - parts.append( - f"when {ts_expr} >= '{ws}'::timestamptz and {ts_expr} < '{we}'::timestamptz then '{month_key}'" - ) - return "case " + " ".join(parts) + " else null end" - - -def sql_order_base(window_start: str, window_end: str) -> str: - return f""" -with base_orders as ( - select - tfl.order_settle_id, - max(tfl.member_id) as member_id, - min(tfl.start_use_time) as order_start_time, - max(tfl.ledger_end_time) as order_end_time, - sum(tfl.ledger_amount) as table_amount - from billiards_dwd.dwd_table_fee_log tfl - where tfl.site_id = %(site_id)s - and coalesce(tfl.is_delete,0) = 0 - and tfl.start_use_time >= '{window_start}'::timestamptz - and tfl.start_use_time < '{window_end}'::timestamptz - group by tfl.order_settle_id -), -assistant_amount as ( - select - asl.order_settle_id, - sum(asl.ledger_amount) as assistant_amount - from billiards_dwd.dwd_assistant_service_log asl - join base_orders bo on bo.order_settle_id = asl.order_settle_id - where asl.site_id = %(site_id)s - and coalesce(asl.is_delete,0) = 0 - group by asl.order_settle_id -), -goods_amount as ( - select - g.order_settle_id, - sum(g.ledger_amount) as goods_amount - from billiards_dwd.dwd_store_goods_sale g - join base_orders bo on bo.order_settle_id = g.order_settle_id - where g.site_id = %(site_id)s - and coalesce(g.is_delete,0) = 0 - group by g.order_settle_id -), -orders as ( - select - bo.order_settle_id, - bo.member_id, - bo.order_start_time, - bo.order_end_time, - coalesce(bo.table_amount,0) + coalesce(a.assistant_amount,0) + coalesce(g.goods_amount,0) as order_amount - from base_orders bo - left join assistant_amount a on a.order_settle_id = bo.order_settle_id - left join goods_amount g on g.order_settle_id = bo.order_settle_id -) -""" - - -def dense_rank_desc(values: dict[str, Decimal]) -> dict[str, int]: - uniq = sorted({v for v in values.values() if v > 0}, reverse=True) - rank_map = {v: i + 1 for i, v in enumerate(uniq)} - return {k: rank_map.get(v, 0) for k, v in values.items()} - - -def calc_diff(all_values: dict[str, Decimal], current: Decimal) -> tuple[Decimal, Decimal]: - xs = [v for v in all_values.values() if v > 0] - if not xs or current <= 0: - return Decimal("0"), Decimal("0") - avg = sum(xs) / Decimal(len(xs)) - med = Decimal(str(median([float(v) for v in xs]))) - return current - avg, current - med - - -def main() -> None: - OUT_DIR.mkdir(parents=True, exist_ok=True) - - with conn() as c, c.cursor(cursor_factory=psycopg2.extras.RealDictCursor) as cur: - assistants_rows = fetch_all( - cur, - """ -select distinct nickname as assistant -from billiards_dwd.dwd_assistant_service_log -where site_id=%(site_id)s and coalesce(is_delete,0)=0 - and start_use_time >= %(window_start)s::timestamptz - and start_use_time < %(window_end)s::timestamptz -order by assistant; -""", - {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}, - ) - assistants = [r["assistant"] for r in assistants_rows if r.get("assistant")] - - # 助教-客户-月份:服务时长 - sql_svc = f""" -with raw as ( - select - asl.nickname as assistant, - asl.tenant_member_id as member_id, - {month_case('asl.start_use_time')} as month_key, - asl.order_assistant_type, - asl.income_seconds - from billiards_dwd.dwd_assistant_service_log asl - where asl.site_id=%(site_id)s and coalesce(asl.is_delete,0)=0 - and asl.start_use_time >= %(window_start)s::timestamptz - and asl.start_use_time < %(window_end)s::timestamptz - and asl.tenant_member_id is not null and asl.tenant_member_id<>0 -) -select - assistant, - member_id, - month_key, - sum(case when order_assistant_type=1 then income_seconds else 0 end)/3600.0 as base_hours, - sum(case when order_assistant_type=2 then income_seconds else 0 end)/3600.0 as extra_hours -from raw -where month_key is not null -group by assistant, member_id, month_key; -""" - svc_rows = fetch_all(cur, sql_svc, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}) - - # 助教-客户-月份:客户流水 - sql_rev = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -, assistant_orders as ( - select distinct order_settle_id, nickname as assistant - from billiards_dwd.dwd_assistant_service_log - where site_id=%(site_id)s and coalesce(is_delete,0)=0 - and start_use_time >= %(window_start)s::timestamptz - and start_use_time < %(window_end)s::timestamptz -), -raw as ( - select - ao.assistant, - o.member_id, - {month_case('o.order_start_time')} as month_key, - o.order_amount - from orders o - join assistant_orders ao on ao.order_settle_id=o.order_settle_id - where o.member_id is not null and o.member_id<>0 -) -select - assistant, - member_id, - month_key, - sum(order_amount) as revenue_amount -from raw -where month_key is not null -group by assistant, member_id, month_key; -""" - rev_rows = fetch_all(cur, sql_rev, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}) - - # 助教-客户-月份:充值归因 - sql_rech = f""" -with base_orders as ( - select - tfl.order_settle_id, - max(tfl.member_id) as member_id, - min(tfl.start_use_time) as table_start_time, - max(tfl.ledger_end_time) as table_end_time - from billiards_dwd.dwd_table_fee_log tfl - where tfl.site_id=%(site_id)s and coalesce(tfl.is_delete,0)=0 - and tfl.start_use_time >= %(window_start)s::timestamptz - and tfl.start_use_time < %(window_end)s::timestamptz - group by tfl.order_settle_id -), -assistant_time as ( - select - asl.order_settle_id, - min(asl.start_use_time) as assistant_start_time, - max(asl.last_use_time) as assistant_end_time - from billiards_dwd.dwd_assistant_service_log asl - join base_orders bo on bo.order_settle_id=asl.order_settle_id - where asl.site_id=%(site_id)s and coalesce(asl.is_delete,0)=0 - group by asl.order_settle_id -), -order_windows as ( - select - bo.order_settle_id, - bo.member_id, - least(bo.table_start_time, coalesce(at.assistant_start_time, bo.table_start_time)) as win_start, - greatest(bo.table_end_time, coalesce(at.assistant_end_time, bo.table_end_time)) as win_end - from base_orders bo - left join assistant_time at on at.order_settle_id=bo.order_settle_id - where bo.member_id is not null and bo.member_id<>0 -), -assistant_orders as ( - select distinct order_settle_id, nickname as assistant - from billiards_dwd.dwd_assistant_service_log - where site_id=%(site_id)s and coalesce(is_delete,0)=0 - and start_use_time >= %(window_start)s::timestamptz - and start_use_time < %(window_end)s::timestamptz -), -recharge_pay as ( - select - p.pay_time, - r.member_id, - p.pay_amount - from billiards_dwd.dwd_payment p - join billiards_dwd.dwd_recharge_order r on r.recharge_order_id=p.relate_id - where p.site_id=%(site_id)s - and p.relate_type=5 - and p.pay_status=2 - and p.pay_amount>0 - and p.pay_time >= %(window_start)s::timestamptz - and p.pay_time < %(window_end)s::timestamptz -), -matched as ( - select - rp.pay_time, - ow.order_settle_id, - ow.member_id, - rp.pay_amount - from recharge_pay rp - join order_windows ow - on ow.member_id=rp.member_id - and rp.pay_time >= ow.win_start - interval '30 minutes' - and rp.pay_time <= ow.win_end + interval '30 minutes' -), -raw as ( - select - ao.assistant, - m.member_id, - {month_case('m.pay_time')} as month_key, - m.pay_amount - from matched m - join assistant_orders ao on ao.order_settle_id=m.order_settle_id -) -select - assistant, - member_id, - month_key, - sum(pay_amount) as recharge_amount -from raw -where month_key is not null -group by assistant, member_id, month_key; -""" - rech_rows = fetch_all(cur, sql_rech, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}) - - # 汇总:月度助教指标 - svc_map = {mk: {a: {"base": Decimal('0'), "extra": Decimal('0')} for a in assistants} for mk,_,_ in MONTHS} - for r in svc_rows: - mk = r["month_key"]; a = r["assistant"] - if mk in svc_map and a in svc_map[mk]: - svc_map[mk][a]["base"] += d(r["base_hours"]) - svc_map[mk][a]["extra"] += d(r["extra_hours"]) - - revenue_map = {mk: {a: Decimal('0') for a in assistants} for mk,_,_ in MONTHS} - for r in rev_rows: - mk = r["month_key"]; a = r["assistant"] - if mk in revenue_map and a in revenue_map[mk]: - revenue_map[mk][a] += d(r["revenue_amount"]) - - recharge_map = {mk: {a: Decimal('0') for a in assistants} for mk,_,_ in MONTHS} - for r in rech_rows: - mk = r["month_key"]; a = r["assistant"] - if mk in recharge_map and a in recharge_map[mk]: - recharge_map[mk][a] += d(r["recharge_amount"]) - - # ====== 输出4张排行榜 ====== - def write_rank(file_stem: str, title: str, desc: str, rows: list[list[Any]]): - write_csv(OUT_DIR / f"{file_stem}.csv", title, desc, [["月份", "排名", "助教昵称", "指标"]], rows) - write_md(OUT_DIR / f"{file_stem}.md", title, "按月聚合并做dense_rank排名。", desc, []) - - rows = [] - for mk,_,_ in MONTHS: - values = {a: svc_map[mk][a]["base"] for a in assistants} - ranks = dense_rank_desc(values) - for a in sorted(assistants, key=lambda x: (ranks[x] if ranks[x] else 999999, x)): - v = values[a] - if v > 0: - rows.append([mk, ranks[a], a, fmt_hours(v, 2)]) - write_rank( - "助教_基础课时长排行_2025年10-12月", - "2025年10-12月 助教基础课时长排行榜", - "口径:order_assistant_type=1,时长=income_seconds/3600(小时),按月排名。", - rows, - ) - - rows = [] - for mk,_,_ in MONTHS: - values = {a: svc_map[mk][a]["extra"] for a in assistants} - ranks = dense_rank_desc(values) - for a in sorted(assistants, key=lambda x: (ranks[x] if ranks[x] else 999999, x)): - v = values[a] - if v > 0: - rows.append([mk, ranks[a], a, fmt_hours(v, 2)]) - write_rank( - "助教_附加课时长排行_2025年10-12月", - "2025年10-12月 助教附加课(超休)时长排行榜", - "口径:order_assistant_type=2,超休时长=income_seconds/3600(小时),按月排名。", - rows, - ) - - rows = [] - for mk,_,_ in MONTHS: - values = revenue_map[mk] - ranks = dense_rank_desc(values) - for a in sorted(assistants, key=lambda x: (ranks[x] if ranks[x] else 999999, x)): - v = values[a] - if v > 0: - rows.append([mk, ranks[a], a, fmt_money(v)]) - write_rank( - "助教_客户流水排行_2025年10-12月", - "2025年10-12月 助教客户流水排行榜(全额复制口径)", - "口径:客户流水=台费+助教+商品应付金额按订单归集后,全额计入订单内每位助教;多助教会导致汇总>门店总额。", - rows, - ) - - rows = [] - for mk,_,_ in MONTHS: - values = recharge_map[mk] - ranks = dense_rank_desc(values) - for a in sorted(assistants, key=lambda x: (ranks[x] if ranks[x] else 999999, x)): - v = values[a] - if v > 0: - rows.append([mk, ranks[a], a, fmt_money(v)]) - write_rank( - "助教_客户充值归因排行_2025年10-12月", - "2025年10-12月 助教客户充值归因排行榜(全额复制口径)", - "口径:充值支付(dwd_payment.relate_type=5)在消费窗口±30分钟内命中且订单有助教,则全额计入助教;多助教/多订单命中会重复计入。", - rows, - ) - - # ====== 输出助教详情(每人一份) ====== - # 会员昵称 - cur.execute("select member_id, nickname from billiards_dwd.dim_member where scd2_is_current=1") - member_name = {r["member_id"]: (r.get("nickname") or "") for r in cur.fetchall()} - - # 索引:assistant->member->month - svc_idx = {a: {} for a in assistants} - for r in svc_rows: - a = r["assistant"]; mid = int(r["member_id"]); mk = r["month_key"] - svc_idx.setdefault(a, {}).setdefault(mid, {})[mk] = {"base": d(r["base_hours"]), "extra": d(r["extra_hours"])} - - rev_idx = {a: {} for a in assistants} - for r in rev_rows: - a = r["assistant"]; mid = int(r["member_id"]); mk = r["month_key"] - rev_idx.setdefault(a, {}).setdefault(mid, {})[mk] = d(r["revenue_amount"]) - - rech_idx = {a: {} for a in assistants} - for r in rech_rows: - a = r["assistant"]; mid = int(r["member_id"]); mk = r["month_key"] - rech_idx.setdefault(a, {}).setdefault(mid, {})[mk] = d(r["recharge_amount"]) - - for a in assistants: - safe = sanitize_filename(a) - csv_path = OUT_DIR / f"助教详情_{safe}.csv" - md_path = OUT_DIR / f"助教详情_{safe}.md" - - # 评价(简短) - base_total = sum((svc_map[mk][a]["base"] for mk,_,_ in MONTHS), Decimal('0')) - extra_total = sum((svc_map[mk][a]["extra"] for mk,_,_ in MONTHS), Decimal('0')) - rev_total = sum((revenue_map[mk][a] for mk,_,_ in MONTHS), Decimal('0')) - rech_total = sum((recharge_map[mk][a] for mk,_,_ in MONTHS), Decimal('0')) - - # 头部客户 Top100(按12月消费业绩) - members = set(rev_idx.get(a, {}).keys()) | set(svc_idx.get(a, {}).keys()) | set(rech_idx.get(a, {}).keys()) - def rev_dec(mid: int) -> Decimal: - return rev_idx.get(a, {}).get(mid, {}).get('2025-12', Decimal('0')) - top_members = sorted(members, key=lambda mid: rev_dec(mid), reverse=True)[:100] - - top3 = '、'.join([(member_name.get(mid) or str(mid)) for mid in top_members[:3]]) - assistant_review = ( - f"评价:基础{fmt_hours(base_total,1)},附加{fmt_hours(extra_total,1)};" - f"客户流水¥{rev_total:.2f},充值归因¥{rech_total:.2f};" - f"头部客户(12月)Top3:{top3 or '无'}。" - ) - - # Part1-4 - part1=[]; part2=[]; part3=[]; part4=[] - for mk, mcn, _ in MONTHS: - base_v = svc_map[mk][a]["base"] - extra_v = svc_map[mk][a]["extra"] - rev_v = revenue_map[mk][a] - rech_v = recharge_map[mk][a] - - base_all = {x: svc_map[mk][x]["base"] for x in assistants} - extra_all = {x: svc_map[mk][x]["extra"] for x in assistants} - rev_all = {x: revenue_map[mk][x] for x in assistants} - rech_all = {x: recharge_map[mk][x] for x in assistants} - - base_rank = dense_rank_desc(base_all).get(a, 0) - extra_rank = dense_rank_desc(extra_all).get(a, 0) - rev_rank = dense_rank_desc(rev_all).get(a, 0) - rech_rank = dense_rank_desc(rech_all).get(a, 0) - - base_da, base_dm = calc_diff(base_all, base_v) - extra_da, extra_dm = calc_diff(extra_all, extra_v) - rev_da, rev_dm = calc_diff(rev_all, rev_v) - rech_da, rech_dm = calc_diff(rech_all, rech_v) - - part1.append([mcn, fmt_hours(base_v,2), base_rank or "", fmt_hours(base_da,2), fmt_hours(base_dm,2)]) - part2.append([mcn, fmt_hours(extra_v,2), extra_rank or "", fmt_hours(extra_da,2), fmt_hours(extra_dm,2)]) - part3.append([mcn, fmt_money(rev_v), rev_rank or "", fmt_money(rev_da), fmt_money(rev_dm)]) - part4.append([mcn, fmt_money(rech_v), rech_rank or "", fmt_money(rech_da), fmt_money(rech_dm)]) - - # Part5 rows - part5=[] - for i, mid in enumerate(top_members, start=1): - def h_pair(month_key: str) -> str: - v = svc_idx.get(a, {}).get(mid, {}).get(month_key, {}) - return f"{fmt_hours(v.get('base',Decimal('0')),1)} / {fmt_hours(v.get('extra',Decimal('0')),1)}" - def rev_m(month_key: str) -> Decimal: - return rev_idx.get(a, {}).get(mid, {}).get(month_key, Decimal('0')) - def rech_m(month_key: str) -> Decimal: - return rech_idx.get(a, {}).get(mid, {}).get(month_key, Decimal('0')) - name = member_name.get(mid) or str(mid) - part5.append([ - i, - name, - h_pair('2025-12'), fmt_money(rev_m('2025-12')), fmt_money(rech_m('2025-12')), - h_pair('2025-11'), fmt_money(rev_m('2025-11')), fmt_money(rech_m('2025-11')), - h_pair('2025-10'), fmt_money(rev_m('2025-10')), fmt_money(rech_m('2025-10')), - ]) - - title = f"助教详情:{a}(2025年10-12月)" - desc = ( - "本表包含5个部分:基础课业绩、附加课业绩、客户消费业绩、客户充值业绩、头部客户情况。" - "均值/中位数差值对比集合为当月该指标>0的助教。" - "充值/客户流水多助教与多订单命中均按全额复制计入,故汇总可能大于门店总额。" - ) - - rows=[] - rows += [["一、基础课业绩"], ["说明:" + assistant_review], []] - rows += [["月份", "基础课业绩", "基础课业绩", "基础课业绩", "基础课业绩"], ["月份", "小时数", "排名", "平均值差值小时数", "中位数值差值小时数"]] - rows += part1 - rows += [[], ["二、附加课业绩"], ["说明:附加课=order_assistant_type=2。"], []] - rows += [["月份", "附加课业绩", "附加课业绩", "附加课业绩", "附加课业绩"], ["月份", "小时数", "排名", "平均值差值小时数", "中位数值差值小时数"]] - rows += part2 - rows += [[], ["三、客户消费业绩"], ["说明:订单台费+助教+商品应付金额全额计入订单内助教。"], []] - rows += [["月份", "客户消费业绩", "客户消费业绩", "客户消费业绩", "客户消费业绩"], ["月份", "合计元", "排名", "平均值差值元", "中位数值差值元"]] - rows += part3 - rows += [[], ["四、客户充值业绩"], ["说明:充值命中消费窗口±30分钟且有助教则归因;全额复制。"], []] - rows += [["月份", "客户充值业绩", "客户充值业绩", "客户充值业绩", "客户充值业绩"], ["月份", "合计元", "排名", "平均值差值元", "中位数值差值元"]] - rows += part4 - rows += [[], ["五、头部客户(按12月消费业绩排序,Top100)"], ["说明:基础/附加课时=基础h/附加h。"], []] - rows += [["排名", "客户名称", "12月", "12月", "12月", "11月", "11月", "11月", "10月", "10月", "10月"], - ["排名", "客户名称", "基础/附加课时", "消费业绩(元)", "客户充值(元)", "基础/附加课时", "消费业绩(元)", "客户充值(元)", "基础/附加课时", "消费业绩(元)", "客户充值(元)"]] - rows += part5 - - write_csv_sections(csv_path, title, desc, rows) - write_md( - md_path, - title, - "按模板拆分5部分输出;月度排名采用dense_rank;均值/中位数在当月该指标>0助教集合上计算。", - desc + "\n" + assistant_review, - [ - SqlBlock("服务时长(助教-客户-月份)", sql_svc), - SqlBlock("客户流水(助教-客户-月份)", sql_rev), - SqlBlock("充值归因(助教-客户-月份)", sql_rech), - ], - ) - - print(f"完成:{OUT_DIR}") - - -if __name__ == "__main__": - main() diff --git a/etl_billiards/docs/table_2025-12-19/_generate_tables.py b/etl_billiards/docs/table_2025-12-19/_generate_tables.py deleted file mode 100644 index 5bcbf63..0000000 --- a/etl_billiards/docs/table_2025-12-19/_generate_tables.py +++ /dev/null @@ -1,1087 +0,0 @@ -# -*- coding: utf-8 -*- -"""生成 2025年10-12月 报表(CSV + MD)。 - -输出目录:etl_billiards/docs/table_2025-12-19 - -重要口径(已按需求固化): -- 门店:site_id=2790685415443269 -- 月份切割:北京时间(+08)当月1日 00:00:00 -- 消费/流水:应付金额(不扣优惠),= 台费(dwd_table_fee_log.ledger_amount) + 助教(dwd_assistant_service_log.ledger_amount) + 商品(dwd_store_goods_sale.ledger_amount) -- 助教时长:income_seconds(计费秒数)换算小时 -- 优惠:台费调账 dwd_table_fee_adjust.ledger_amount + 会员折扣 dwd_table_fee_log.member_discount_amount -- 多助教/充值归因:全额复制计入(会导致汇总>门店总额),在表格说明中提示 -""" - -from __future__ import annotations - -import csv -import re -from dataclasses import dataclass -from decimal import Decimal -from pathlib import Path -from typing import Any - -import psycopg2 -import psycopg2.extras - - -SITE_ID = 2790685415443269 -TZ = "Asia/Shanghai" - -WIN_OCT = ("2025-10-01 00:00:00+08", "2025-11-01 00:00:00+08") -WIN_NOV = ("2025-11-01 00:00:00+08", "2025-12-01 00:00:00+08") -WIN_DEC = ("2025-12-01 00:00:00+08", "2026-01-01 00:00:00+08") -WIN_ALL = (WIN_OCT[0], WIN_DEC[1]) - -MONTHS = [ - ("2025-10", "10月", WIN_OCT), - ("2025-11", "11月", WIN_NOV), - ("2025-12", "12月", WIN_DEC), -] - -REPO_ROOT = Path(__file__).resolve().parents[3] -ENV_PATH = REPO_ROOT / "etl_billiards" / ".env" -OUT_DIR = Path(__file__).resolve().parent - - -@dataclass(frozen=True) -class SqlBlock: - title: str - sql: str - - -def read_pg_dsn() -> str: - text = ENV_PATH.read_text(encoding="utf-8") - m = re.search(r"^PG_DSN=(.+)$", text, re.M) - if not m: - raise RuntimeError(f"未在 {ENV_PATH} 中找到 PG_DSN") - return m.group(1).strip() - - -def conn(): - return psycopg2.connect(read_pg_dsn(), connect_timeout=10) - - -def sanitize_filename(name: str) -> str: - name = name.strip() - name = re.sub(r"[<>:\"/\\|?*]+", "_", name) - name = re.sub(r"\s+", " ", name) - return name - - -def mask_phone(phone: str | None) -> str: - if not phone: - return "" - digits = re.sub(r"\D", "", phone) - if len(digits) < 7: - return phone - return re.sub(r"^(\d{3})\d{4}(\d+)$", r"\1****\2", digits) - - -def d(v: Any) -> Decimal: - if v is None: - return Decimal("0") - if isinstance(v, Decimal): - return v - return Decimal(str(v)) - - -def fmt_money(v: Any) -> str: - return f"{d(v):.2f}" - - -def fmt_hours(v: Any, digits: int = 1) -> str: - q = Decimal("1").scaleb(-digits) - return f"{d(v).quantize(q):f}h" - - -def write_csv(path: Path, title: str, description: str, header_rows: list[list[str]], rows: list[list[Any]]) -> None: - path.parent.mkdir(parents=True, exist_ok=True) - with path.open("w", newline="", encoding="utf-8") as f: - w = csv.writer(f) - w.writerow([title]) - w.writerow([description]) - w.writerow([]) # 说明与表头之间空 1 行 - for hr in header_rows: - w.writerow(hr) - for r in rows: - w.writerow(["" if v is None else v for v in r]) - - -def write_md(path: Path, title: str, thinking: str, description: str, sql_blocks: list[SqlBlock]) -> None: - parts: list[str] = [] - parts.append(f"# {title}\n") - parts.append("## 思考过程\n") - parts.append(thinking.strip() + "\n") - parts.append("\n## 查询说明\n") - parts.append(description.strip() + "\n") - parts.append("\n## SQL\n") - for b in sql_blocks: - parts.append(f"\n### {b.title}\n") - parts.append("```sql\n") - parts.append(b.sql.strip() + "\n") - parts.append("```\n") - path.parent.mkdir(parents=True, exist_ok=True) - path.write_text("".join(parts), encoding="utf-8") - - -def fetch_all(cur, sql: str, params: dict[str, Any]) -> list[dict[str, Any]]: - cur.execute(sql, params) - return list(cur.fetchall()) - - -def month_case(ts_expr: str) -> str: - parts = [] - for month_key, _, (ws, we) in MONTHS: - parts.append( - f"when {ts_expr} >= '{ws}'::timestamptz and {ts_expr} < '{we}'::timestamptz then '{month_key}'" - ) - return "case " + " ".join(parts) + " else null end" - - -def sql_order_base(window_start: str, window_end: str) -> str: - return f""" -with base_orders as ( - select - tfl.order_settle_id, - max(tfl.member_id) as member_id, - min(tfl.start_use_time) as order_start_time, - max(tfl.ledger_end_time) as order_end_time, - sum(tfl.ledger_amount) as table_amount, - sum(tfl.real_table_use_seconds) as table_use_seconds - from billiards_dwd.dwd_table_fee_log tfl - where tfl.site_id = %(site_id)s - and coalesce(tfl.is_delete,0) = 0 - and tfl.start_use_time >= '{window_start}'::timestamptz - and tfl.start_use_time < '{window_end}'::timestamptz - group by tfl.order_settle_id -), -assistant_info as ( - select - asl.order_settle_id, - sum(asl.ledger_amount) as assistant_amount, - min(asl.start_use_time) as assistant_start_time, - max(asl.last_use_time) as assistant_end_time - from billiards_dwd.dwd_assistant_service_log asl - join base_orders bo on bo.order_settle_id = asl.order_settle_id - where asl.site_id = %(site_id)s - and coalesce(asl.is_delete,0) = 0 - group by asl.order_settle_id -), -goods_amount as ( - select - g.order_settle_id, - sum(g.ledger_amount) as goods_amount - from billiards_dwd.dwd_store_goods_sale g - join base_orders bo on bo.order_settle_id = g.order_settle_id - where g.site_id = %(site_id)s - and coalesce(g.is_delete,0) = 0 - group by g.order_settle_id -), -orders as ( - select - bo.order_settle_id, - bo.member_id, - least(bo.order_start_time, coalesce(a.assistant_start_time, bo.order_start_time)) as order_start_time, - greatest(bo.order_end_time, coalesce(a.assistant_end_time, bo.order_end_time)) as order_end_time, - bo.table_use_seconds, - coalesce(bo.table_amount,0) + coalesce(a.assistant_amount,0) + coalesce(g.goods_amount,0) as order_amount - from base_orders bo - left join assistant_info a on a.order_settle_id = bo.order_settle_id - left join goods_amount g on g.order_settle_id = bo.order_settle_id -) -""" - - -def build_finance_discount(cur) -> None: - title = "2025年10-12月 财务优惠(会员折扣+台费调账)分布" - desc = ( - "优惠=会员折扣(dwd_table_fee_log.member_discount_amount)+台费调账(dwd_table_fee_adjust.ledger_amount)," - "按订单归集后汇总到客户(member_id),按订单最早开台时间切月;不含团购抵扣等其它优惠。" - ) - thinking = "用台费订单为基准关联调账表,再按客户+月份汇总,输出“谁享受了优惠”及金额分布。" - - sql = f""" -with base_orders as ( - select - tfl.order_settle_id, - max(tfl.member_id) as member_id, - min(tfl.start_use_time) as order_start_time, - sum(tfl.member_discount_amount) as member_discount_amount - from billiards_dwd.dwd_table_fee_log tfl - where tfl.site_id = %(site_id)s - and coalesce(tfl.is_delete,0) = 0 - and tfl.start_use_time >= %(window_start)s::timestamptz - and tfl.start_use_time < %(window_end)s::timestamptz - group by tfl.order_settle_id -), -adjusts as ( - select - tfa.order_settle_id, - sum(tfa.ledger_amount) as adjust_amount - from billiards_dwd.dwd_table_fee_adjust tfa - join base_orders bo on bo.order_settle_id = tfa.order_settle_id - where tfa.site_id = %(site_id)s - and coalesce(tfa.is_delete,0) = 0 - group by tfa.order_settle_id -) -, x as ( - select - bo.member_id, - {month_case('bo.order_start_time')} as month_key, - coalesce(bo.member_discount_amount,0) as member_discount_amount, - coalesce(a.adjust_amount,0) as adjust_amount - from base_orders bo - left join adjusts a on a.order_settle_id = bo.order_settle_id -) -select - member_id, - month_key, - sum(member_discount_amount) as member_discount_sum, - sum(adjust_amount) as adjust_sum -from x -where month_key is not null -group by member_id, month_key; -""" - - rows = fetch_all( - cur, - sql, - {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}, - ) - - member_ids = sorted({r["member_id"] for r in rows if r["member_id"] not in (None, 0)}) - cur.execute( - """ -select member_id, nickname, mobile, member_card_grade_name -from billiards_dwd.dim_member -where scd2_is_current=1 and member_id = any(%(ids)s) -""", - {"ids": member_ids}, - ) - member_map = {r["member_id"]: {"name": (r.get("nickname") or ""), "mobile": (r.get("mobile") or ""), "vip": (r.get("member_card_grade_name") or "")} for r in cur.fetchall()} - - per_member: dict[int, dict[str, Decimal]] = {} - for r in rows: - mid = r["member_id"] - if not mid or mid == 0: - continue - per_member.setdefault(mid, {}) - mk = r["month_key"] - per_member[mid][f"{mk}_member"] = d(r["member_discount_sum"]) - per_member[mid][f"{mk}_adjust"] = d(r["adjust_sum"]) - - out_rows: list[list[Any]] = [] - for mid, info_d in per_member.items(): - info = member_map.get(mid, {"name": "", "mobile": "", "vip": ""}) - row: list[Any] = [info["name"], mask_phone(info["mobile"]), info["vip"]] - total = Decimal("0") - for mk, _, _ in MONTHS: - md = info_d.get(f"{mk}_member", Decimal("0")) - ad = info_d.get(f"{mk}_adjust", Decimal("0")) - row += [fmt_money(md), fmt_money(ad), fmt_money(md + ad)] - total += md + ad - row.append(fmt_money(total)) - out_rows.append(row) - - out_rows.sort(key=lambda r: Decimal(r[-1]), reverse=True) - - csv_path = OUT_DIR / "财务_优惠分布_2025年10-12月.csv" - md_path = OUT_DIR / "财务_优惠分布_2025年10-12月.md" - - write_csv( - csv_path, - title, - desc, - [ - [ - "客户名称", - "手机号(脱敏)", - "VIP卡/等级", - "10月", - "10月", - "10月", - "11月", - "11月", - "11月", - "12月", - "12月", - "12月", - "10-12月", - ], - [ - "客户名称", - "手机号(脱敏)", - "VIP卡/等级", - "会员折扣(元)", - "台费调账(元)", - "合计优惠(元)", - "会员折扣(元)", - "台费调账(元)", - "合计优惠(元)", - "会员折扣(元)", - "台费调账(元)", - "合计优惠(元)", - "合计优惠(元)", - ], - ], - out_rows, - ) - - write_md(md_path, title, thinking, desc, [SqlBlock("优惠分布(客户+月份)", sql)]) - - -def build_customer_top100(cur) -> list[int]: - title_total = "2025年10-12月 客户消费能力Top100(总表)" - title_split = "2025年10-12月 客户消费能力Top100(分表)" - - desc_total = ( - "消费=台费(dwd_table_fee_log.ledger_amount)+助教(dwd_assistant_service_log.ledger_amount)+商品(dwd_store_goods_sale.ledger_amount),均为应付金额(不扣优惠),以台费订单为基准串联;" - "充值=充值支付流水(dwd_payment.relate_type=5, pay_status=2, pay_amount>0)按支付时间切月;" - "储值卡未使用金额=当前有效储值卡余额之和(dim_member_card_account.balance, member_card_type_name='储值卡');" - "喜爱助教=基础课时长+附加课时长*1.5(income_seconds换算小时),总表按10-12月汇总Top5。" - ) - desc_split = "与总表同口径;分表仅计算12月喜爱助教Top5,并展示10-12月各月消费/充值。" - - thinking = ( - "以台费订单为基准汇总三类明细,满足应付金额口径,并输出Top100客户的消费/充值/助教偏好。" - "按你的要求,先生成评价为空的版本,再在脚本末尾回填评价。" - ) - - sql_top100 = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + """ -select - o.member_id, - sum(o.order_amount) as consume_total, - count(*) as order_cnt -from orders o -where o.member_id is not null and o.member_id <> 0 -group by o.member_id -order by consume_total desc -limit 100; -""" - - sql_monthly_consume = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -, x as ( - select - o.member_id, - {month_case('o.order_start_time')} as month_key, - o.order_amount - from orders o - where o.member_id is not null and o.member_id <> 0 -) -select - member_id, - month_key, - sum(order_amount) as consume_sum -from x -where month_key is not null -group by member_id, month_key; -""" - - sql_monthly_recharge = f""" -with pay as ( - select - p.pay_time, - r.member_id, - p.pay_amount - from billiards_dwd.dwd_payment p - join billiards_dwd.dwd_recharge_order r on r.recharge_order_id = p.relate_id - where p.site_id = %(site_id)s - and p.relate_type = 5 - and p.pay_status = 2 - and p.pay_amount > 0 - and p.pay_time >= %(window_start)s::timestamptz - and p.pay_time < %(window_end)s::timestamptz -) -, x as ( - select - member_id, - {month_case('pay_time')} as month_key, - pay_amount - from pay -) -select - member_id, - month_key, - sum(pay_amount) as recharge_sum -from x -where month_key is not null -group by member_id, month_key; -""" - - sql_fav_all = f""" -with x as ( - select - asl.tenant_member_id as member_id, - asl.nickname as assistant_nickname, - sum(case when asl.order_assistant_type=1 then asl.income_seconds else asl.income_seconds*1.5 end) / 3600.0 as weighted_hours - from billiards_dwd.dwd_assistant_service_log asl - where asl.site_id = %(site_id)s - and coalesce(asl.is_delete,0)=0 - and asl.tenant_member_id is not null and asl.tenant_member_id <> 0 - and asl.start_use_time >= %(window_start)s::timestamptz - and asl.start_use_time < %(window_end)s::timestamptz - group by asl.tenant_member_id, asl.nickname -), -ranked as ( - select *, row_number() over(partition by member_id order by weighted_hours desc) as rn - from x -) -select - member_id, - string_agg(assistant_nickname || '(' || to_char(round(weighted_hours::numeric, 1), 'FM999999990.0') || 'h)', '、' order by weighted_hours desc) as fav5 -from ranked -where rn <= 5 -group by member_id; -""" - - sql_stored_value = """ -select - tenant_member_id as member_id, - sum(balance) as stored_value_balance -from billiards_dwd.dim_member_card_account -where scd2_is_current=1 - and coalesce(is_delete,0)=0 - and member_card_type_name='储值卡' - and tenant_member_id = any(%(ids)s) -group by tenant_member_id; -""" - - # 评价字段:画像查询(仅用于生成评价文本,不影响Top100口径) - sql_review_profile = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -select - o.member_id, - count(*) as orders, - avg(o.order_amount) as avg_order, - sum(o.table_use_seconds)/3600.0 as play_hours, - avg(o.table_use_seconds)/3600.0 as avg_play_hours, - min((o.order_start_time at time zone '{TZ}')::date) as first_visit_day, - max((o.order_start_time at time zone '{TZ}')::date) as last_visit_day, - count(distinct (o.order_start_time at time zone '{TZ}')::date) as visit_days, - sum(case when o.order_start_time >= '{WIN_OCT[0]}'::timestamptz and o.order_start_time < '{WIN_OCT[1]}'::timestamptz then 1 else 0 end) as orders_oct, - sum(case when o.order_start_time >= '{WIN_NOV[0]}'::timestamptz and o.order_start_time < '{WIN_NOV[1]}'::timestamptz then 1 else 0 end) as orders_nov, - sum(case when o.order_start_time >= '{WIN_DEC[0]}'::timestamptz and o.order_start_time < '{WIN_DEC[1]}'::timestamptz then 1 else 0 end) as orders_dec -from orders o -where o.member_id = any(%(ids)s) -group by o.member_id; -""" - - sql_review_time = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -, t as ( - select - o.member_id, - extract(hour from (o.order_start_time at time zone '{TZ}')) - + extract(minute from (o.order_start_time at time zone '{TZ}'))/60.0 - + extract(second from (o.order_start_time at time zone '{TZ}'))/3600.0 as arrive_h, - extract(hour from (o.order_end_time at time zone '{TZ}')) - + extract(minute from (o.order_end_time at time zone '{TZ}'))/60.0 - + extract(second from (o.order_end_time at time zone '{TZ}'))/3600.0 as leave_h_raw - from orders o - where o.member_id = any(%(ids)s) -), -tt as ( - select - member_id, - arrive_h, - case when leave_h_raw < arrive_h then leave_h_raw + 24 else leave_h_raw end as leave_h - from t -) -select - member_id, - avg(arrive_h) as arrive_avg_h, - percentile_cont(0.5) within group (order by arrive_h) as arrive_med_h, - avg(leave_h) as leave_avg_h, - percentile_cont(0.5) within group (order by leave_h) as leave_med_h -from tt -group by member_id; -""" - - sql_review_pref = """ -select - tfl.member_id, - coalesce(tfl.site_table_area_name,'') as site_table_area_name, - sum(tfl.real_table_use_seconds)/3600.0 as hours -from billiards_dwd.dwd_table_fee_log tfl -where tfl.site_id=%(site_id)s and coalesce(tfl.is_delete,0)=0 - and tfl.start_use_time >= %(window_start)s::timestamptz and tfl.start_use_time < %(window_end)s::timestamptz - and tfl.member_id = any(%(ids)s) -group by tfl.member_id, site_table_area_name; -""" - - sql_review_goods = """ -with base_orders as ( - select order_settle_id, max(member_id) as member_id - from billiards_dwd.dwd_table_fee_log - where site_id=%(site_id)s and coalesce(is_delete,0)=0 - and start_use_time >= %(window_start)s::timestamptz and start_use_time < %(window_end)s::timestamptz - group by order_settle_id -) -select - bo.member_id, - g.ledger_name, - sum(g.ledger_count) as qty, - sum(g.ledger_amount) as amount -from base_orders bo -join billiards_dwd.dwd_store_goods_sale g on g.order_settle_id = bo.order_settle_id -where g.site_id=%(site_id)s and coalesce(g.is_delete,0)=0 - and bo.member_id = any(%(ids)s) -group by bo.member_id, g.ledger_name; -""" - - sql_review_visits = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -select - o.member_id, - (o.order_start_time at time zone '{TZ}')::date as visit_date, - count(*) as orders, - sum(o.order_amount) as amount -from orders o -where o.member_id = any(%(ids)s) -group by o.member_id, visit_date -order by o.member_id, visit_date; -""" - - sql_fav_dec = sql_fav_all.replace("%(window_start)s", "'2025-12-01 00:00:00+08'").replace( - "%(window_end)s", "'2026-01-01 00:00:00+08'" - ) - - top100 = fetch_all(cur, sql_top100, {"site_id": SITE_ID}) - top_ids = [r["member_id"] for r in top100] - - cur.execute( - """ -select member_id, nickname, mobile, member_card_grade_name -from billiards_dwd.dim_member -where scd2_is_current=1 and member_id = any(%(ids)s) -""", - {"ids": top_ids}, - ) - info_map = {r["member_id"]: {"name": (r.get("nickname") or ""), "mobile": (r.get("mobile") or ""), "vip": (r.get("member_card_grade_name") or "")} for r in cur.fetchall()} - - balances = fetch_all(cur, sql_stored_value, {"ids": top_ids}) - balance_map = {r["member_id"]: d(r["stored_value_balance"]) for r in balances} - - monthly_consume = fetch_all(cur, sql_monthly_consume, {"site_id": SITE_ID}) - monthly_recharge = fetch_all(cur, sql_monthly_recharge, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}) - fav_all = fetch_all(cur, sql_fav_all, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1]}) - fav_dec = fetch_all(cur, sql_fav_dec, {"site_id": SITE_ID}) - - consume_map: dict[int, dict[str, Decimal]] = {} - for r in monthly_consume: - consume_map.setdefault(r["member_id"], {})[r["month_key"]] = d(r["consume_sum"]) - - recharge_map: dict[int, dict[str, Decimal]] = {} - for r in monthly_recharge: - recharge_map.setdefault(r["member_id"], {})[r["month_key"]] = d(r["recharge_sum"]) - - fav_all_map = {r["member_id"]: (r["fav5"] or "") for r in fav_all} - fav_dec_map = {r["member_id"]: (r["fav5"] or "") for r in fav_dec} - - rows_total: list[list[Any]] = [] - rows_split: list[list[Any]] = [] - - for idx, r in enumerate(top100, start=1): - mid = r["member_id"] - info = info_map.get(mid, {"name": "", "mobile": "", "vip": ""}) - total_rech = sum(recharge_map.get(mid, {}).values()) if recharge_map.get(mid) else Decimal("0") - rows_total.append([ - idx, - info["name"], - mask_phone(info["mobile"]), - fav_all_map.get(mid, ""), - fmt_money(r["consume_total"]), - fmt_money(total_rech), - fmt_money(balance_map.get(mid, Decimal("0"))), - "", # 评价后续回填 - ]) - - c = consume_map.get(mid, {}) - rc = recharge_map.get(mid, {}) - rows_split.append([ - idx, - info["name"], - mask_phone(info["mobile"]), - fav_dec_map.get(mid, ""), - fmt_money(c.get("2025-12", Decimal("0"))), - fmt_money(rc.get("2025-12", Decimal("0"))), - fmt_money(c.get("2025-11", Decimal("0"))), - fmt_money(rc.get("2025-11", Decimal("0"))), - fmt_money(c.get("2025-10", Decimal("0"))), - fmt_money(rc.get("2025-10", Decimal("0"))), - ]) - - csv_total = OUT_DIR / "客户_Top100_2025年10-12月_总表.csv" - md_total = OUT_DIR / "客户_Top100_2025年10-12月_总表.md" - write_csv( - csv_total, - title_total, - desc_total, - [ - ["排名", "客户名称", "电话号码", "10月-12月", "10月-12月", "10月-12月", "当前", "评价"], - ["排名", "客户名称", "电话号码", "喜爱助教昵称", "总消费(元)", "总充值(元)", "储值卡未使用金额(元)", "评价"], - ], - rows_total, - ) - write_md( - md_total, - title_total, - thinking, - desc_total, - [ - SqlBlock("Top100(按消费总额)", sql_top100), - SqlBlock("按月消费汇总", sql_monthly_consume), - SqlBlock("按月充值汇总", sql_monthly_recharge), - SqlBlock("储值卡未使用金额(当前余额汇总)", sql_stored_value), - SqlBlock("喜爱助教Top5(10-12月)", sql_fav_all), - SqlBlock("评价画像:订单/时长/到店日期", sql_review_profile), - SqlBlock("评价画像:到店/离店时间(小时)", sql_review_time), - SqlBlock("评价画像:球台分区偏好(按时长)", sql_review_pref), - SqlBlock("评价画像:商品明细(名称+数量)", sql_review_goods), - SqlBlock("评价画像:到店日期明细(用于周期/近期分析)", sql_review_visits), - ], - ) - - csv_split = OUT_DIR / "客户_Top100_2025年10-12月_分表.csv" - md_split = OUT_DIR / "客户_Top100_2025年10-12月_分表.md" - write_csv( - csv_split, - title_split, - desc_split, - [ - ["排名", "客户名称", "电话号码", "12月", "12月", "12月", "11月", "11月", "10月", "10月"], - ["排名", "客户名称", "电话号码", "喜爱助教昵称", "消费(元)", "充值(元)", "消费(元)", "充值(元)", "消费(元)", "充值(元)"], - ], - rows_split, - ) - write_md( - md_split, - title_split, - thinking, - desc_split, - [ - SqlBlock("Top100(按消费总额)", sql_top100), - SqlBlock("按月消费汇总", sql_monthly_consume), - SqlBlock("按月充值汇总", sql_monthly_recharge), - SqlBlock("喜爱助教Top5(仅12月)", sql_fav_dec), - ], - ) - - return top_ids - - -def backfill_customer_reviews(cur, top_ids: list[int]) -> None: - def csv_safe_text(text: str) -> str: - return (text or "").replace(",", ",").replace("\r", " ").replace("\n", " ").strip() - - def fmt_clock_time(v: Any, *, prefix_next_day: bool) -> str: - if v is None: - return "" - minutes = int((d(v) * 60).to_integral_value(rounding="ROUND_HALF_UP")) - is_next_day = minutes >= 24 * 60 - minutes = minutes % (24 * 60) - hh = minutes // 60 - mm = minutes % 60 - base = f"{hh:02d}:{mm:02d}" - if is_next_day and prefix_next_day: - return f"次日{base}" - return base - - def norm_area(name: str | None) -> str: - s = (name or "").strip() - if not s: - return "未知" - m = re.search(r"([A-Z])区", s) - if m: - return f"{m.group(1)}区" - if "斯诺克" in s: - return "S区/斯诺克" - if "麻将" in s: - return "麻将" - if "K包" in s or "VIP" in s or "包厢" in s: - return "包厢" - if "团建" in s: - return "团建" - return s - - # 画像(订单维度:订单、时长、到离店时间、到店日期分布) - sql_profile = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -, order_ext as ( - select - o.*, - extract(epoch from (o.order_end_time - o.order_start_time)) as stay_seconds - from orders o -) -select - o.member_id, - count(*) as orders, - avg(o.order_amount) as avg_order, - sum(o.table_use_seconds)/3600.0 as play_hours, - avg(o.table_use_seconds)/3600.0 as avg_play_hours, - sum(case when o.order_start_time >= '{WIN_DEC[0]}'::timestamptz and o.order_start_time < '{WIN_DEC[1]}'::timestamptz then coalesce(o.table_use_seconds,0) else 0 end)/3600.0 as play_hours_dec, - min((o.order_start_time at time zone '{TZ}')::date) as first_visit_day, - max((o.order_start_time at time zone '{TZ}')::date) as last_visit_day, - count(distinct (o.order_start_time at time zone '{TZ}')::date) as visit_days, - count(distinct case when o.order_start_time >= '{WIN_DEC[0]}'::timestamptz and o.order_start_time < '{WIN_DEC[1]}'::timestamptz then (o.order_start_time at time zone '{TZ}')::date else null end) as visit_days_dec, - sum(case when o.order_start_time >= '{WIN_OCT[0]}'::timestamptz and o.order_start_time < '{WIN_OCT[1]}'::timestamptz then 1 else 0 end) as orders_oct, - sum(case when o.order_start_time >= '{WIN_NOV[0]}'::timestamptz and o.order_start_time < '{WIN_NOV[1]}'::timestamptz then 1 else 0 end) as orders_nov, - sum(case when o.order_start_time >= '{WIN_DEC[0]}'::timestamptz and o.order_start_time < '{WIN_DEC[1]}'::timestamptz then 1 else 0 end) as orders_dec, - sum(coalesce(o.stay_seconds,0))/3600.0 as stay_hours_total, - sum(case when o.order_start_time >= '{WIN_DEC[0]}'::timestamptz and o.order_start_time < '{WIN_DEC[1]}'::timestamptz then coalesce(o.stay_seconds,0) else 0 end)/3600.0 as stay_hours_dec -from order_ext o -where o.member_id = any(%(ids)s) -group by o.member_id; -""" - - sql_time = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -, t as ( - select - o.member_id, - extract(hour from (o.order_start_time at time zone '{TZ}')) - + extract(minute from (o.order_start_time at time zone '{TZ}'))/60.0 - + extract(second from (o.order_start_time at time zone '{TZ}'))/3600.0 as arrive_h, - extract(hour from (o.order_end_time at time zone '{TZ}')) - + extract(minute from (o.order_end_time at time zone '{TZ}'))/60.0 - + extract(second from (o.order_end_time at time zone '{TZ}'))/3600.0 as leave_h_raw - from orders o - where o.member_id = any(%(ids)s) -), -tt as ( - select - member_id, - arrive_h, - case when leave_h_raw < arrive_h then leave_h_raw + 24 else leave_h_raw end as leave_h - from t -) -select - member_id, - avg(arrive_h) as arrive_avg_h, - percentile_cont(0.5) within group (order by arrive_h) as arrive_med_h, - avg(leave_h) as leave_avg_h, - percentile_cont(0.5) within group (order by leave_h) as leave_med_h -from tt -group by member_id; -""" - - prof = fetch_all(cur, sql_profile, {"site_id": SITE_ID, "ids": top_ids}) - prof_map = {r["member_id"]: r for r in prof} - - times = fetch_all(cur, sql_time, {"site_id": SITE_ID, "ids": top_ids}) - time_map = {r["member_id"]: r for r in times} - - # 偏好(按球台分区小时) - sql_pref = f""" -select - tfl.member_id, - coalesce(tfl.site_table_area_name,'') as site_table_area_name, - sum(tfl.real_table_use_seconds)/3600.0 as hours -from billiards_dwd.dwd_table_fee_log tfl -where tfl.site_id=%(site_id)s and coalesce(tfl.is_delete,0)=0 - and tfl.start_use_time >= %(window_start)s::timestamptz and tfl.start_use_time < %(window_end)s::timestamptz - and tfl.member_id = any(%(ids)s) -group by tfl.member_id, site_table_area_name; -""" - - prefs = fetch_all( - cur, - sql_pref, - {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1], "ids": top_ids}, - ) - pref_map: dict[int, list[dict[str, Any]]] = {} - for r in prefs: - pref_map.setdefault(r["member_id"], []).append(r) - - # 商品(名称+数量) - sql_food = """ -with base_orders as ( - select order_settle_id, max(member_id) as member_id - from billiards_dwd.dwd_table_fee_log - where site_id=%(site_id)s and coalesce(is_delete,0)=0 - and start_use_time >= %(window_start)s::timestamptz and start_use_time < %(window_end)s::timestamptz - group by order_settle_id -) -select - bo.member_id, - g.ledger_name, - sum(g.ledger_count) as qty, - sum(g.ledger_amount) as amount -from base_orders bo -join billiards_dwd.dwd_store_goods_sale g on g.order_settle_id = bo.order_settle_id -where g.site_id=%(site_id)s and coalesce(g.is_delete,0)=0 - and bo.member_id = any(%(ids)s) -group by bo.member_id, g.ledger_name; -""" - - foods = fetch_all( - cur, - sql_food, - {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1], "ids": top_ids}, - ) - food_map: dict[int, list[dict[str, Any]]] = {} - for r in foods: - food_map.setdefault(r["member_id"], []).append(r) - - sql_visits = sql_order_base(WIN_ALL[0], WIN_ALL[1]) + f""" -select - o.member_id, - (o.order_start_time at time zone '{TZ}')::date as visit_date, - count(*) as orders, - sum(o.order_amount) as amount -from orders o -where o.member_id = any(%(ids)s) -group by o.member_id, visit_date -order by o.member_id, visit_date; -""" - visits = fetch_all(cur, sql_visits, {"site_id": SITE_ID, "ids": top_ids}) - visit_map: dict[int, list[dict[str, Any]]] = {} - for r in visits: - visit_map.setdefault(r["member_id"], []).append(r) - - # 喜爱助教(10-12月) - sql_fav = f""" -with x as ( - select - asl.tenant_member_id as member_id, - asl.nickname as assistant_nickname, - sum(case when asl.order_assistant_type=1 then asl.income_seconds else asl.income_seconds*1.5 end) / 3600.0 as weighted_hours - from billiards_dwd.dwd_assistant_service_log asl - where asl.site_id = %(site_id)s - and coalesce(asl.is_delete,0)=0 - and asl.tenant_member_id = any(%(ids)s) - and asl.start_use_time >= %(window_start)s::timestamptz - and asl.start_use_time < %(window_end)s::timestamptz - group by asl.tenant_member_id, asl.nickname -), -ranked as ( - select *, row_number() over(partition by member_id order by weighted_hours desc) as rn - from x -) -select - member_id, - string_agg(assistant_nickname || '(' || to_char(round(weighted_hours::numeric, 1), 'FM999999990.0') || 'h)', '、' order by weighted_hours desc) as fav5 -from ranked -where rn <= 5 -group by member_id; -""" - - favs = fetch_all(cur, sql_fav, {"site_id": SITE_ID, "window_start": WIN_ALL[0], "window_end": WIN_ALL[1], "ids": top_ids}) - fav_map = {r["member_id"]: (r["fav5"] or "") for r in favs} - - # 到店周期中位(天)与排名:以 Top100 为比较集合;值越小表示到店越频繁,排名越靠前 - gap_med_all: dict[int, int] = {} - gap_med_dec: dict[int, int] = {} - for mid in top_ids: - vrows = visit_map.get(mid, []) - dates_all = [r.get("visit_date") for r in vrows if r.get("visit_date")] - gaps_all: list[int] = [] - for d1, d2 in zip(dates_all, dates_all[1:]): - gaps_all.append((d2 - d1).days) - if gaps_all: - gaps_sorted = sorted(gaps_all) - gap_med_all[mid] = gaps_sorted[len(gaps_sorted) // 2] - - dates_dec = [d for d in dates_all if d.year == 2025 and d.month == 12] - gaps_dec: list[int] = [] - for d1, d2 in zip(dates_dec, dates_dec[1:]): - gaps_dec.append((d2 - d1).days) - if gaps_dec: - gaps_sorted = sorted(gaps_dec) - gap_med_dec[mid] = gaps_sorted[len(gaps_sorted) // 2] - - def dense_rank(values: list[tuple[int, Any]], *, reverse: bool) -> dict[int, int]: - sorted_vals = sorted(values, key=lambda kv: kv[1], reverse=reverse) - out: dict[int, int] = {} - last_v = None - rank = 0 - for mid, v in sorted_vals: - if last_v is None or v != last_v: - rank += 1 - last_v = v - out[mid] = rank - return out - - gap_rank_all = dense_rank([(mid, v) for mid, v in gap_med_all.items()], reverse=False) - gap_rank_dec = dense_rank([(mid, v) for mid, v in gap_med_dec.items()], reverse=False) - - # 在店时长:用台费使用时长(real_table_use_seconds 汇总到 orders.table_use_seconds)作为“在店时长”近似 - play_rank_all = dense_rank( - [(mid, d(prof_map.get(mid, {}).get("play_hours"))) for mid in top_ids if d(prof_map.get(mid, {}).get("play_hours")) > 0], - reverse=True, - ) - play_rank_dec = dense_rank( - [(mid, d(prof_map.get(mid, {}).get("play_hours_dec"))) for mid in top_ids if d(prof_map.get(mid, {}).get("play_hours_dec")) > 0], - reverse=True, - ) - - def build_review( - mid: int, - rank: int, - consume_total: Decimal, - recharge_total: Decimal, - stored_value_balance: Decimal, - ) -> str: - p = prof_map.get(mid) or {} - orders = int(p.get("orders") or 0) - if orders <= 0: - return "" - avg_order = d(p.get("avg_order")) - play_h = d(p.get("play_hours")) - avg_play_h = d(p.get("avg_play_hours")) - - # 偏好:球台分区Top(按时长) - areas_raw = pref_map.get(mid, []) - area_hours: dict[str, Decimal] = {} - for r in areas_raw: - label = norm_area(r.get("site_table_area_name")) - area_hours[label] = area_hours.get(label, Decimal("0")) + d(r.get("hours")) - area_items = sorted(area_hours.items(), key=lambda kv: kv[1], reverse=True) - area_total = sum((v for _, v in area_items), Decimal("0")) - pref_text = "" - if area_total > 0 and area_items: - top_parts = [] - for label, hours in area_items[:4]: - pct = (hours / area_total * 100).quantize(Decimal("1.0")) - top_parts.append(f"{label}({pct}%)") - pref_text = "、".join(top_parts) - - # 时间:到店/离店(小时) - t = time_map.get(mid) or {} - time_text = "" - if t: - a_avg = fmt_clock_time(t.get("arrive_avg_h"), prefix_next_day=False) - a_med = fmt_clock_time(t.get("arrive_med_h"), prefix_next_day=False) - l_avg = fmt_clock_time(t.get("leave_avg_h"), prefix_next_day=True) - l_med = fmt_clock_time(t.get("leave_med_h"), prefix_next_day=True) - if a_avg and a_med and l_avg and l_med: - time_text = f"到店均值{a_avg} 中位{a_med};离店均值{l_avg} 中位{l_med}" - - # 商品:名称+数量+金额 - foods_ = food_map.get(mid, []) - foods_.sort(key=lambda r: d(r["amount"]), reverse=True) - goods_total = sum((d(r["amount"]) for r in foods_), Decimal("0")) - goods_text = "" - if foods_: - parts = [] - for r in foods_[:6]: - name = csv_safe_text(str(r.get("ledger_name") or "")) - qty = d(r.get("qty")) - amt = d(r.get("amount")) - if not name: - continue - qty_i = int(qty) if qty == qty.to_integral_value() else qty - parts.append(f"{name}×{qty_i}(¥{amt:.2f})") - if parts: - goods_text = "、".join(parts) - if consume_total > 0 and goods_total > 0: - ratio = (goods_total / consume_total * 100).quantize(Decimal("1.0")) - goods_text = f"{goods_text}(商品合计¥{goods_total:.2f} 占比{ratio}%)" - - # 到店周期/近期分布(按到店日期) - vrows = visit_map.get(mid, []) - visit_dates = [r.get("visit_date") for r in vrows if r.get("visit_date")] - last_day = p.get("last_visit_day") - visit_days = int(p.get("visit_days") or 0) - visit_days_dec = int(p.get("visit_days_dec") or 0) - orders_dec = int(p.get("orders_dec") or 0) - - # 趋势:按月订单数粗略判断(仅Top100客户画像用途) - orders_oct = int(p.get("orders_oct") or 0) - orders_nov = int(p.get("orders_nov") or 0) - orders_dec2 = int(p.get("orders_dec") or 0) - if orders_dec2 > orders_nov >= orders_oct: - trend = "10-12月到店频次上升,12月更活跃" - elif orders_oct > orders_nov > orders_dec2: - trend = "10-12月到店频次下降,建议重点唤醒" - elif orders_dec2 >= orders_oct and orders_dec2 >= orders_nov: - trend = "12月为高峰月,具备加深运营空间" - else: - trend = "到店频次波动,建议按常用时段做稳定触达" - - # 运营建议(尽量简短、可执行) - advice_parts: list[str] = [] - if stored_value_balance <= 0 and recharge_total > 0: - advice_parts.append("关注是否为临时充值型,建议引导储值梯度与权益") - if stored_value_balance > 0 and stored_value_balance < Decimal("500"): - advice_parts.append("储值余额偏低,建议在其常用时段做补能引导") - if stored_value_balance >= Decimal("10000"): - advice_parts.append("储值余额充足,可提供包厢/团建档期与专属权益") - if pref_text and ("包厢" in pref_text or "团建" in pref_text): - advice_parts.append("重点维护包厢/团建需求,提前锁档与套餐化") - if goods_total >= Decimal("2000"): - advice_parts.append("商品贡献高,可做常购商品补货提醒与组合促销") - if not advice_parts: - advice_parts.append("保持常用时段的稳定服务供给,提升复购粘性") - advice = ";".join(advice_parts[:3]) - - # 综合(按你给的格式组织;排名基于Top100集合) - gap_rank_all_text = f"#{gap_rank_all.get(mid)}" if gap_rank_all.get(mid) else "—" - gap_rank_dec_text = f"#{gap_rank_dec.get(mid)}" if gap_rank_dec.get(mid) else "—" - play_rank_all_text = f"#{play_rank_all.get(mid)}" if play_rank_all.get(mid) else "—" - play_rank_dec_text = f"#{play_rank_dec.get(mid)}" if play_rank_dec.get(mid) else "—" - - composite_lines = [] - composite_lines.append( - f"10-12月到店消费{visit_days}天/{orders}次,到店周期中位{gap_rank_all_text},消费排名#{rank},在店时长{play_rank_all_text}" - ) - composite_lines.append( - f"12月到店消费{visit_days_dec}天/{orders_dec}次,到店周期中位{gap_rank_dec_text},消费排名#{rank},在店时长{play_rank_dec_text}" - ) - if last_day: - composite_lines.append(f"最近到店{last_day}") - composite_lines.append(f"趋势:{trend}") - composite_lines.append(f"围客与客户运营建议:{advice}") - - parts = [ - f"订单:{orders}单,平均单次¥{avg_order:.2f}", - f"打球:{fmt_hours(play_h,1)},平均单次{fmt_hours(avg_play_h,1)}", - ] - if pref_text: - parts.append(f"偏好:{pref_text}") - if time_text: - parts.append(f"时间:{time_text}") - if goods_text: - parts.append(f"商品:{goods_text}") - parts.append("综合:" + ";".join([x for x in composite_lines if x])) - - return csv_safe_text(";".join([p for p in parts if p])) - - # 回写 CSV(保留原有总消费/总充值/储值余额/助教偏好,只更新评价列) - csv_total = OUT_DIR / "客户_Top100_2025年10-12月_总表.csv" - if not csv_total.exists(): - return - - lines = csv_total.read_text(encoding="utf-8").splitlines() - # CSV:前3行是标题、说明、空行;接着2行表头;后面是数据 - head = lines[:5] - data_lines = lines[5:] - - # 解析数据行(简单 split,避免引号复杂情况:本脚本生成的行不含逗号) - new_data = [] - for idx, line in enumerate(data_lines, start=1): - cols = line.split(",") - if len(cols) < 8: - new_data.append(line) - continue - # 按排名映射 member_id - rank = int(cols[0]) - mid = top_ids[rank - 1] if 0 < rank <= len(top_ids) else None - if mid: - consume_total = d(cols[4]) - recharge_total = d(cols[5]) - stored_value_balance = d(cols[6]) - cols[7] = build_review(mid, rank, consume_total, recharge_total, stored_value_balance) - new_data.append(",".join(cols)) - - csv_total.write_text("\n".join(head + new_data) + "\n", encoding="utf-8") - - -def main() -> None: - OUT_DIR.mkdir(parents=True, exist_ok=True) - with conn() as c, c.cursor(cursor_factory=psycopg2.extras.RealDictCursor) as cur: - build_finance_discount(cur) - top_ids = build_customer_top100(cur) - backfill_customer_reviews(cur, top_ids) - - print(f"完成:{OUT_DIR}") - - -if __name__ == "__main__": - main() diff --git a/etl_billiards/gui/utils/app_settings.py b/etl_billiards/gui/utils/app_settings.py index 1089de3..9905724 100644 --- a/etl_billiards/gui/utils/app_settings.py +++ b/etl_billiards/gui/utils/app_settings.py @@ -45,7 +45,7 @@ class AppSettings: "history_start": "", "history_end": "", "lookback_hours": 24, - "include_dimensions": False, + "include_dimensions": True, "auto_backfill": False, "ods_tasks": "", }, @@ -277,7 +277,7 @@ class AppSettings: @property def integrity_include_dimensions(self) -> bool: - return self._settings.get("integrity_check", {}).get("include_dimensions", False) + return self._settings.get("integrity_check", {}).get("include_dimensions", True) @integrity_include_dimensions.setter def integrity_include_dimensions(self, value: bool): diff --git a/etl_billiards/gui/utils/config_helper.py b/etl_billiards/gui/utils/config_helper.py index 4eef080..56b65e8 100644 --- a/etl_billiards/gui/utils/config_helper.py +++ b/etl_billiards/gui/utils/config_helper.py @@ -41,8 +41,19 @@ ENV_GROUPS = { }, "integrity": { "title": "数据完整性配置", - "keys": ["INTEGRITY_MODE", "INTEGRITY_HISTORY_START", "INTEGRITY_HISTORY_END", - "INTEGRITY_INCLUDE_DIMENSIONS", "INTEGRITY_AUTO_CHECK", "INTEGRITY_ODS_TASK_CODES"], + "keys": [ + "INTEGRITY_MODE", + "INTEGRITY_HISTORY_START", + "INTEGRITY_HISTORY_END", + "INTEGRITY_INCLUDE_DIMENSIONS", + "INTEGRITY_AUTO_CHECK", + "INTEGRITY_AUTO_BACKFILL", + "INTEGRITY_COMPARE_CONTENT", + "INTEGRITY_CONTENT_SAMPLE_LIMIT", + "INTEGRITY_BACKFILL_MISMATCH", + "INTEGRITY_RECHECK_AFTER_BACKFILL", + "INTEGRITY_ODS_TASK_CODES", + ], "sensitive": [], }, } diff --git a/etl_billiards/gui/widgets/task_panel.py b/etl_billiards/gui/widgets/task_panel.py index 1880b57..d34d321 100644 --- a/etl_billiards/gui/widgets/task_panel.py +++ b/etl_billiards/gui/widgets/task_panel.py @@ -348,8 +348,8 @@ class TaskPanel(QWidget): integrity_layout.addWidget(self.include_dimensions_check) # 自动补全选项 - self.auto_backfill_check = QCheckBox("校验后自动补全丢失数据") - self.auto_backfill_check.setToolTip("如果发现丢失数据,自动从 API 重新获取并补全到 ODS") + self.auto_backfill_check = QCheckBox("更新并验证(自动回补缺失/不一致)") + self.auto_backfill_check.setToolTip("先校验,再自动从 API 回补缺失/不一致数据;可通过 INTEGRITY_RECHECK_AFTER_BACKFILL 控制是否再校验") integrity_layout.addWidget(self.auto_backfill_check) # 指定 ODS 任务 diff --git a/etl_billiards/quality/integrity_checker.py b/etl_billiards/quality/integrity_checker.py index bd859bf..28b75fa 100644 --- a/etl_billiards/quality/integrity_checker.py +++ b/etl_billiards/quality/integrity_checker.py @@ -147,25 +147,164 @@ def _amount_columns(cols: List[str], types: Dict[str, str]) -> List[str]: return out -def _count_table(cur, schema: str, table: str, time_col: str | None, window: IntegrityWindow | None) -> int: - where = "" +def _build_hash_expr(alias: str, cols: list[str]) -> str: + if not cols: + return "NULL" + parts = ", ".join([f"COALESCE({alias}.\"{c}\"::text,'')" for c in cols]) + return f"md5(concat_ws('||', {parts}))" + + +def _build_snapshot_subquery( + schema: str, + table: str, + cols: list[str], + key_cols: list[str], + order_col: str | None, + where_sql: str, +) -> str: + cols_sql = ", ".join([f'"{c}"' for c in cols]) + if key_cols and order_col: + keys = ", ".join([f'"{c}"' for c in key_cols]) + order_by = ", ".join([*(f'"{c}"' for c in key_cols), f'"{order_col}" DESC NULLS LAST']) + return ( + f'SELECT DISTINCT ON ({keys}) {cols_sql} ' + f'FROM "{schema}"."{table}" {where_sql} ' + f"ORDER BY {order_by}" + ) + return f'SELECT {cols_sql} FROM "{schema}"."{table}" {where_sql}' + + +def _build_snapshot_expr_subquery( + schema: str, + table: str, + select_exprs: list[str], + key_exprs: list[str], + order_col: str | None, + where_sql: str, +) -> str: + select_cols_sql = ", ".join(select_exprs) + table_sql = f'"{schema}"."{table}"' + if key_exprs and order_col: + distinct_on = ", ".join(key_exprs) + order_by = ", ".join([*key_exprs, f'"{order_col}" DESC NULLS LAST']) + return ( + f"SELECT DISTINCT ON ({distinct_on}) {select_cols_sql} " + f"FROM {table_sql} {where_sql} " + f"ORDER BY {order_by}" + ) + return f"SELECT {select_cols_sql} FROM {table_sql} {where_sql}" + + +def _cast_expr(col: str, cast_type: str | None) -> str: + if col.upper() == "NULL": + base = "NULL" + else: + is_expr = not col.isidentifier() or "->" in col or "#>>" in col or "::" in col or "'" in col + base = col if is_expr else f'"{col}"' + if cast_type: + cast_lower = cast_type.lower() + if cast_lower in {"bigint", "integer", "numeric", "decimal"}: + return f"CAST(NULLIF(CAST({base} AS text), '') AS numeric):: {cast_type}" + if cast_lower == "timestamptz": + return f"({base})::timestamptz" + return f"{base}::{cast_type}" + return base + + +def _fetch_pk_columns(cur, schema: str, table: str) -> List[str]: + cur.execute( + """ + SELECT kcu.column_name + FROM information_schema.table_constraints tc + JOIN information_schema.key_column_usage kcu + ON tc.constraint_name = kcu.constraint_name + AND tc.table_schema = kcu.table_schema + WHERE tc.constraint_type = 'PRIMARY KEY' + AND tc.table_schema = %s + AND tc.table_name = %s + ORDER BY kcu.ordinal_position + """, + (schema, table), + ) + return [r[0] for r in cur.fetchall()] + + +def _pick_snapshot_order_column(cols: Iterable[str]) -> str | None: + lower = {c.lower() for c in cols} + for candidate in ("fetched_at", "update_time", "create_time"): + if candidate in lower: + return candidate + return None + + +def _count_table( + cur, + schema: str, + table: str, + time_col: str | None, + window: IntegrityWindow | None, + *, + pk_cols: List[str] | None = None, + snapshot_order_col: str | None = None, + current_only: bool = False, +) -> int: + where_parts: List[str] = [] params: List[Any] = [] + if current_only: + where_parts.append("COALESCE(scd2_is_current,1)=1") if time_col and window: - where = f'WHERE "{time_col}" >= %s AND "{time_col}" < %s' - params = [window.start, window.end] - sql = f'SELECT COUNT(1) FROM "{schema}"."{table}" {where}' + where_parts.append(f'"{time_col}" >= %s AND "{time_col}" < %s') + params.extend([window.start, window.end]) + where = f"WHERE {' AND '.join(where_parts)}" if where_parts else "" + + if pk_cols and snapshot_order_col: + keys = ", ".join(f'"{c}"' for c in pk_cols) + order_by = ", ".join([*(f'"{c}"' for c in pk_cols), f'"{snapshot_order_col}" DESC NULLS LAST']) + sql = ( + f'SELECT COUNT(1) FROM (' + f'SELECT DISTINCT ON ({keys}) 1 FROM "{schema}"."{table}" {where} ' + f'ORDER BY {order_by}' + f') t' + ) + else: + sql = f'SELECT COUNT(1) FROM "{schema}"."{table}" {where}' cur.execute(sql, params) row = cur.fetchone() return int(row[0] if row else 0) -def _sum_column(cur, schema: str, table: str, col: str, time_col: str | None, window: IntegrityWindow | None) -> float: - where = "" +def _sum_column( + cur, + schema: str, + table: str, + col: str, + time_col: str | None, + window: IntegrityWindow | None, + *, + pk_cols: List[str] | None = None, + snapshot_order_col: str | None = None, + current_only: bool = False, +) -> float: + where_parts: List[str] = [] params: List[Any] = [] + if current_only: + where_parts.append("COALESCE(scd2_is_current,1)=1") if time_col and window: - where = f'WHERE "{time_col}" >= %s AND "{time_col}" < %s' - params = [window.start, window.end] - sql = f'SELECT COALESCE(SUM("{col}"), 0) FROM "{schema}"."{table}" {where}' + where_parts.append(f'"{time_col}" >= %s AND "{time_col}" < %s') + params.extend([window.start, window.end]) + where = f"WHERE {' AND '.join(where_parts)}" if where_parts else "" + + if pk_cols and snapshot_order_col: + keys = ", ".join(f'"{c}"' for c in pk_cols) + order_by = ", ".join([*(f'"{c}"' for c in pk_cols), f'"{snapshot_order_col}" DESC NULLS LAST']) + sql = ( + f'SELECT COALESCE(SUM("{col}"), 0) FROM (' + f'SELECT DISTINCT ON ({keys}) "{col}" FROM "{schema}"."{table}" {where} ' + f'ORDER BY {order_by}' + f') t' + ) + else: + sql = f'SELECT COALESCE(SUM("{col}"), 0) FROM "{schema}"."{table}" {where}' cur.execute(sql, params) row = cur.fetchone() return float(row[0] if row else 0) @@ -176,14 +315,21 @@ def run_dwd_vs_ods_check( cfg: AppConfig, window: IntegrityWindow | None, include_dimensions: bool, + compare_content: bool | None = None, + content_sample_limit: int | None = None, ) -> Dict[str, Any]: dsn = cfg["db"]["dsn"] session = cfg["db"].get("session") db_conn = DatabaseConnection(dsn=dsn, session=session) + if compare_content is None: + compare_content = bool(cfg.get("integrity.compare_content", True)) + if content_sample_limit is None: + content_sample_limit = cfg.get("integrity.content_sample_limit") or 50 try: with db_conn.conn.cursor() as cur: results: List[Dict[str, Any]] = [] table_map = DwdLoadTask.TABLE_MAP + total_mismatch = 0 for dwd_table, ods_table in table_map.items(): if not include_dimensions and ".dim_" in dwd_table: continue @@ -193,16 +339,55 @@ def run_dwd_vs_ods_check( dwd_cols, dwd_types = _fetch_columns(cur, schema_dwd, name_dwd) ods_cols, ods_types = _fetch_columns(cur, schema_ods, name_ods) time_col = _pick_time_column(dwd_cols, ods_cols) - count_dwd = _count_table(cur, schema_dwd, name_dwd, time_col, window) - count_ods = _count_table(cur, schema_ods, name_ods, time_col, window) + pk_dwd = _fetch_pk_columns(cur, schema_dwd, name_dwd) + pk_ods_raw = _fetch_pk_columns(cur, schema_ods, name_ods) + pk_ods = [c for c in pk_ods_raw if c.lower() != "content_hash"] + ods_has_snapshot = any(c.lower() == "content_hash" for c in ods_cols) + ods_snapshot_order = _pick_snapshot_order_column(ods_cols) if ods_has_snapshot else None + dwd_current_only = any(c.lower() == "scd2_is_current" for c in dwd_cols) + + count_dwd = _count_table( + cur, + schema_dwd, + name_dwd, + time_col, + window, + current_only=dwd_current_only, + ) + count_ods = _count_table( + cur, + schema_ods, + name_ods, + time_col, + window, + pk_cols=pk_ods if ods_has_snapshot else None, + snapshot_order_col=ods_snapshot_order if ods_has_snapshot else None, + ) dwd_amount_cols = _amount_columns(dwd_cols, dwd_types) ods_amount_cols = _amount_columns(ods_cols, ods_types) common_amount_cols = sorted(set(dwd_amount_cols) & set(ods_amount_cols)) amounts: List[Dict[str, Any]] = [] for col in common_amount_cols: - dwd_sum = _sum_column(cur, schema_dwd, name_dwd, col, time_col, window) - ods_sum = _sum_column(cur, schema_ods, name_ods, col, time_col, window) + dwd_sum = _sum_column( + cur, + schema_dwd, + name_dwd, + col, + time_col, + window, + current_only=dwd_current_only, + ) + ods_sum = _sum_column( + cur, + schema_ods, + name_ods, + col, + time_col, + window, + pk_cols=pk_ods if ods_has_snapshot else None, + snapshot_order_col=ods_snapshot_order if ods_has_snapshot else None, + ) amounts.append( { "column": col, @@ -212,6 +397,151 @@ def run_dwd_vs_ods_check( } ) + mismatch = None + mismatch_samples: list[dict] = [] + mismatch_error = None + if compare_content: + dwd_cols_lower = [c.lower() for c in dwd_cols] + ods_cols_lower = [c.lower() for c in ods_cols] + dwd_col_set = set(dwd_cols_lower) + ods_col_set = set(ods_cols_lower) + scd_cols = {c.lower() for c in DwdLoadTask.SCD_COLS} + ods_exclude = { + "payload", "source_file", "source_endpoint", "fetched_at", "content_hash", "record_index" + } + numeric_types = { + "integer", + "bigint", + "smallint", + "numeric", + "double precision", + "real", + "decimal", + } + text_types = {"text", "character varying", "varchar"} + mapping = { + dst.lower(): (src, cast_type) + for dst, src, cast_type in (DwdLoadTask.FACT_MAPPINGS.get(dwd_table) or []) + } + business_keys = [c for c in pk_dwd if c.lower() not in scd_cols] + def resolve_ods_expr(col: str) -> str | None: + mapped = mapping.get(col) + if mapped: + src, cast_type = mapped + return _cast_expr(src, cast_type) + if col in ods_col_set: + d_type = dwd_types.get(col) + o_type = ods_types.get(col) + if d_type in numeric_types and o_type in text_types: + return _cast_expr(col, d_type) + return f'"{col}"' + if "id" in ods_col_set and col.endswith("_id"): + d_type = dwd_types.get(col) + o_type = ods_types.get("id") + if d_type in numeric_types and o_type in text_types: + return _cast_expr("id", d_type) + return '"id"' + return None + + key_exprs: list[str] = [] + join_keys: list[str] = [] + for key in business_keys: + key_lower = key.lower() + expr = resolve_ods_expr(key_lower) + if expr is None: + key_exprs = [] + join_keys = [] + break + key_exprs.append(expr) + join_keys.append(key_lower) + + compare_cols: list[str] = [] + for col in dwd_col_set: + if col in ods_exclude or col in scd_cols: + continue + if col in {k.lower() for k in business_keys}: + continue + if dwd_types.get(col) in ("json", "jsonb"): + continue + if ods_types.get(col) in ("json", "jsonb"): + continue + if resolve_ods_expr(col) is None: + continue + compare_cols.append(col) + compare_cols = sorted(set(compare_cols)) + + if join_keys and compare_cols: + where_parts_dwd: list[str] = [] + params_dwd: list[Any] = [] + if dwd_current_only: + where_parts_dwd.append("COALESCE(scd2_is_current,1)=1") + if time_col and window: + where_parts_dwd.append(f"\"{time_col}\" >= %s AND \"{time_col}\" < %s") + params_dwd.extend([window.start, window.end]) + where_dwd = f"WHERE {' AND '.join(where_parts_dwd)}" if where_parts_dwd else "" + + where_parts_ods: list[str] = [] + params_ods: list[Any] = [] + if time_col and window: + where_parts_ods.append(f"\"{time_col}\" >= %s AND \"{time_col}\" < %s") + params_ods.extend([window.start, window.end]) + where_ods = f"WHERE {' AND '.join(where_parts_ods)}" if where_parts_ods else "" + + ods_select_exprs: list[str] = [] + needed_cols = sorted(set(join_keys + compare_cols)) + for col in needed_cols: + expr = resolve_ods_expr(col) + if expr is None: + continue + ods_select_exprs.append(f"{expr} AS \"{col}\"") + + if not ods_select_exprs: + mismatch_error = "join_keys_or_compare_cols_unavailable" + else: + ods_sql = _build_snapshot_expr_subquery( + schema_ods, + name_ods, + ods_select_exprs, + key_exprs, + ods_snapshot_order, + where_ods, + ) + dwd_cols_sql = ", ".join([f"\"{c}\"" for c in needed_cols]) + dwd_sql = f"SELECT {dwd_cols_sql} FROM \"{schema_dwd}\".\"{name_dwd}\" {where_dwd}" + + join_cond = " AND ".join([f"d.\"{k}\" = o.\"{k}\"" for k in join_keys]) + hash_o = _build_hash_expr("o", compare_cols) + hash_d = _build_hash_expr("d", compare_cols) + + mismatch_sql = ( + f"WITH ods_latest AS ({ods_sql}), dwd_filtered AS ({dwd_sql}) " + f"SELECT COUNT(1) FROM (" + f"SELECT 1 FROM ods_latest o JOIN dwd_filtered d ON {join_cond} " + f"WHERE {hash_o} <> {hash_d}" + f") t" + ) + params = params_ods + params_dwd + cur.execute(mismatch_sql, params) + row = cur.fetchone() + mismatch = int(row[0] if row and row[0] is not None else 0) + total_mismatch += mismatch + + if content_sample_limit and mismatch > 0: + select_keys_sql = ", ".join([f"d.\"{k}\" AS \"{k}\"" for k in join_keys]) + sample_sql = ( + f"WITH ods_latest AS ({ods_sql}), dwd_filtered AS ({dwd_sql}) " + f"SELECT {select_keys_sql}, {hash_o} AS ods_hash, {hash_d} AS dwd_hash " + f"FROM ods_latest o JOIN dwd_filtered d ON {join_cond} " + f"WHERE {hash_o} <> {hash_d} LIMIT %s" + ) + cur.execute(sample_sql, params + [int(content_sample_limit)]) + rows = cur.fetchall() or [] + if rows: + columns = [desc[0] for desc in (cur.description or [])] + mismatch_samples = [dict(zip(columns, r)) for r in rows] + else: + mismatch_error = "join_keys_or_compare_cols_unavailable" + results.append( { "dwd_table": dwd_table, @@ -220,6 +550,9 @@ def run_dwd_vs_ods_check( "window_col": time_col, "count": {"dwd": count_dwd, "ods": count_ods, "diff": count_dwd - count_ods}, "amounts": amounts, + "mismatch": mismatch, + "mismatch_samples": mismatch_samples, + "mismatch_error": mismatch_error, } ) except Exception as exc: # noqa: BLE001 @@ -231,6 +564,8 @@ def run_dwd_vs_ods_check( "window_col": None, "count": {"dwd": None, "ods": None, "diff": None}, "amounts": [], + "mismatch": None, + "mismatch_samples": [], "error": f"{type(exc).__name__}: {exc}", } ) @@ -243,6 +578,7 @@ def run_dwd_vs_ods_check( return { "tables": results, "total_count_diff": total_count_diff, + "total_mismatch": total_mismatch, } finally: db_conn.close() @@ -262,6 +598,8 @@ def run_integrity_window( task_codes: str, logger, write_report: bool, + compare_content: bool | None = None, + content_sample_limit: int | None = None, report_path: Path | None = None, window_split_unit: str | None = None, window_compensation_hours: int | None = None, @@ -274,6 +612,11 @@ def run_integrity_window( window_days = 0 window_hours = max(1, total_seconds // 3600 or 1) + if compare_content is None: + compare_content = bool(cfg.get("integrity.compare_content", True)) + if content_sample_limit is None: + content_sample_limit = cfg.get("integrity.content_sample_limit") + ods_payload = run_gap_check( cfg=cfg, start=window.start, @@ -290,6 +633,8 @@ def run_integrity_window( cutoff_overlap_hours=24, allow_small_window=True, logger=logger, + compare_content=bool(compare_content), + content_sample_limit=content_sample_limit, window_split_unit=window_split_unit, window_compensation_hours=window_compensation_hours, ) @@ -298,6 +643,8 @@ def run_integrity_window( cfg=cfg, window=window, include_dimensions=include_dimensions, + compare_content=compare_content, + content_sample_limit=content_sample_limit, ) report = { @@ -331,12 +678,15 @@ def run_integrity_history( task_codes: str, logger, write_report: bool, + compare_content: bool | None = None, + content_sample_limit: int | None = None, report_path: Path | None = None, ) -> Dict[str, Any]: tz = ZoneInfo(cfg.get("app.timezone", "Asia/Taipei")) windows = build_history_windows(start_dt, end_dt, tz) results: List[Dict[str, Any]] = [] total_missing = 0 + total_mismatch = 0 total_errors = 0 for window in windows: @@ -348,9 +698,12 @@ def run_integrity_history( task_codes=task_codes, logger=logger, write_report=False, + compare_content=compare_content, + content_sample_limit=content_sample_limit, ) results.append(payload) total_missing += int(payload.get("api_to_ods", {}).get("total_missing") or 0) + total_mismatch += int(payload.get("api_to_ods", {}).get("total_mismatch") or 0) total_errors += int(payload.get("api_to_ods", {}).get("total_errors") or 0) report = { @@ -359,6 +712,7 @@ def run_integrity_history( "end": _ensure_tz(end_dt, tz).isoformat(), "windows": results, "total_missing": total_missing, + "total_mismatch": total_mismatch, "total_errors": total_errors, "generated_at": datetime.now(tz).isoformat(), } diff --git a/etl_billiards/quality/integrity_service.py b/etl_billiards/quality/integrity_service.py new file mode 100644 index 0000000..8f04dfc --- /dev/null +++ b/etl_billiards/quality/integrity_service.py @@ -0,0 +1,256 @@ +# -*- coding: utf-8 -*- +"""Shared integrity flow helpers (window/history + optional backfill).""" +from __future__ import annotations + +from datetime import datetime +from pathlib import Path +from typing import Any, Iterable, Tuple +from zoneinfo import ZoneInfo + +import json + +from quality.integrity_checker import IntegrityWindow, compute_last_etl_end, run_integrity_history, run_integrity_window +from scripts.backfill_missing_data import run_backfill +from utils.windowing import split_window + + +def _normalize_windows(cfg, windows: Iterable[Tuple[datetime, datetime]]) -> list[Tuple[datetime, datetime]]: + segments = list(windows) + if not segments: + return segments + + force_monthly = bool(cfg.get("integrity.force_monthly_split", True)) + if not force_monthly: + return segments + + overall_start = segments[0][0] + overall_end = segments[-1][1] + total_days = (overall_end - overall_start).total_seconds() / 86400.0 + if total_days <= 31 and len(segments) == 1: + return segments + + tz = ZoneInfo(cfg.get("app.timezone", "Asia/Taipei")) + comp_hours = cfg.get("run.window_split.compensation_hours", 0) + monthly = split_window( + overall_start, + overall_end, + tz=tz, + split_unit="month", + compensation_hours=comp_hours, + ) + return monthly or segments + + +def build_window_report( + *, + cfg, + windows: Iterable[Tuple[datetime, datetime]], + include_dimensions: bool, + task_codes: str, + logger, + compare_content: bool | None, + content_sample_limit: int | None, +) -> tuple[dict, dict]: + window_reports = [] + total_missing = 0 + total_mismatch = 0 + total_errors = 0 + segments = list(windows) + for idx, (seg_start, seg_end) in enumerate(segments, start=1): + window = IntegrityWindow( + start=seg_start, + end=seg_end, + label=f"segment_{idx}", + granularity="window", + ) + payload = run_integrity_window( + cfg=cfg, + window=window, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=logger, + write_report=False, + compare_content=compare_content, + content_sample_limit=content_sample_limit, + report_path=None, + window_split_unit="none", + window_compensation_hours=0, + ) + window_reports.append(payload) + total_missing += int(payload.get("api_to_ods", {}).get("total_missing") or 0) + total_mismatch += int(payload.get("api_to_ods", {}).get("total_mismatch") or 0) + total_errors += int(payload.get("api_to_ods", {}).get("total_errors") or 0) + + overall_start = segments[0][0] + overall_end = segments[-1][1] + tz = ZoneInfo(cfg.get("app.timezone", "Asia/Taipei")) + report = { + "mode": "window", + "window": { + "start": overall_start.isoformat(), + "end": overall_end.isoformat(), + "segments": len(segments), + }, + "windows": window_reports, + "api_to_ods": { + "total_missing": total_missing, + "total_mismatch": total_mismatch, + "total_errors": total_errors, + }, + "total_missing": total_missing, + "total_mismatch": total_mismatch, + "total_errors": total_errors, + "generated_at": datetime.now(tz).isoformat(), + } + counts = { + "missing": int(total_missing or 0), + "mismatch": int(total_mismatch or 0), + "errors": int(total_errors or 0), + } + return report, counts + + +def run_window_flow( + *, + cfg, + windows: Iterable[Tuple[datetime, datetime]], + include_dimensions: bool, + task_codes: str, + logger, + compare_content: bool | None, + content_sample_limit: int | None, + do_backfill: bool, + include_mismatch: bool, + recheck_after_backfill: bool, + page_size: int | None = None, + chunk_size: int = 500, +) -> tuple[dict, dict]: + segments = _normalize_windows(cfg, windows) + report, counts = build_window_report( + cfg=cfg, + windows=segments, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=logger, + compare_content=compare_content, + content_sample_limit=content_sample_limit, + ) + overall_start = segments[0][0] + overall_end = segments[-1][1] + + backfill_result = None + post_report = None + if do_backfill: + missing_count = int(counts.get("missing", 0)) + mismatch_count = int(counts.get("mismatch", 0)) + need_backfill = missing_count > 0 or (include_mismatch and mismatch_count > 0) + if need_backfill: + backfill_result = run_backfill( + cfg=cfg, + start=overall_start, + end=overall_end, + task_codes=task_codes or None, + include_mismatch=bool(include_mismatch), + dry_run=False, + page_size=int(page_size or cfg.get("api.page_size") or 200), + chunk_size=chunk_size, + logger=logger, + ) + report["backfill_result"] = backfill_result + if recheck_after_backfill: + post_report, post_counts = build_window_report( + cfg=cfg, + windows=segments, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=logger, + compare_content=compare_content, + content_sample_limit=content_sample_limit, + ) + report["post_check"] = post_report + counts.update(post_counts) + return report, counts + + +def run_history_flow( + *, + cfg, + start_dt: datetime, + end_dt: datetime | None, + include_dimensions: bool, + task_codes: str, + logger, + compare_content: bool | None, + content_sample_limit: int | None, + do_backfill: bool, + include_mismatch: bool, + recheck_after_backfill: bool, + page_size: int | None = None, + chunk_size: int = 500, +) -> tuple[dict, dict]: + tz = ZoneInfo(cfg.get("app.timezone", "Asia/Taipei")) + if end_dt is None: + end_dt = compute_last_etl_end(cfg) or datetime.now(tz) + + report = run_integrity_history( + cfg=cfg, + start_dt=start_dt, + end_dt=end_dt, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=logger, + write_report=False, + compare_content=compare_content, + content_sample_limit=content_sample_limit, + ) + counts = { + "missing": int(report.get("total_missing") or 0), + "mismatch": int(report.get("total_mismatch") or 0), + "errors": int(report.get("total_errors") or 0), + } + if do_backfill: + need_backfill = counts.get("missing", 0) > 0 or (include_mismatch and counts.get("mismatch", 0) > 0) + if need_backfill: + backfill_result = run_backfill( + cfg=cfg, + start=start_dt, + end=end_dt, + task_codes=task_codes or None, + include_mismatch=bool(include_mismatch), + dry_run=False, + page_size=int(page_size or cfg.get("api.page_size") or 200), + chunk_size=chunk_size, + logger=logger, + ) + report["backfill_result"] = backfill_result + if recheck_after_backfill: + post_report = run_integrity_history( + cfg=cfg, + start_dt=start_dt, + end_dt=end_dt, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=logger, + write_report=False, + compare_content=compare_content, + content_sample_limit=content_sample_limit, + ) + report["post_check"] = post_report + counts.update( + { + "missing": int(post_report.get("total_missing") or 0), + "mismatch": int(post_report.get("total_mismatch") or 0), + "errors": int(post_report.get("total_errors") or 0), + } + ) + return report, counts + + +def write_report(report: dict, *, prefix: str, tz: ZoneInfo, report_path: Path | None = None) -> str: + if report_path is None: + root = Path(__file__).resolve().parents[1] + stamp = datetime.now(tz).strftime("%Y%m%d_%H%M%S") + report_path = root / "reports" / f"{prefix}_{stamp}.json" + report_path.parent.mkdir(parents=True, exist_ok=True) + report_path.write_text(json.dumps(report, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") + return str(report_path) diff --git a/etl_billiards/reports/data_integrity_window_20260128_233259.json b/etl_billiards/reports/data_integrity_window_20260128_233259.json new file mode 100644 index 0000000..587c2dd --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260128_233259.json @@ -0,0 +1,10359 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 2, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17143, + "records_with_pk": 17143, + "missing": 4, + "missing_samples": [ + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 31, + "total_errors": 0, + "generated_at": "2026-01-28T23:07:33.960397+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -19897 + }, + "generated_at": "2026-01-28T23:07:42.077727+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17143, + "records_with_pk": 17143, + "missing": 5, + "missing_samples": [ + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 32, + "total_errors": 0, + "generated_at": "2026-01-28T23:10:28.027640+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21143 + }, + "generated_at": "2026-01-28T23:10:36.084086+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:13:53.827946+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23484 + }, + "generated_at": "2026-01-28T23:14:01.929966+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:17:48.032307+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21161 + }, + "generated_at": "2026-01-28T23:17:56.176763+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 408, + "records_with_pk": 408, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 85, + "records_with_pk": 85, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 2, + "records_with_pk": 2, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 8, + "records_with_pk": 8, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 726, + "records_with_pk": 726, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 416, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 416, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:21:00.541175+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 116393.37, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -22721 + }, + "generated_at": "2026-01-28T23:21:08.772931+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 35, + "total_errors": 0, + "generated_at": "2026-01-28T23:24:50.283424+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 156623.79, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23233 + }, + "generated_at": "2026-01-28T23:25:00.042074+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 37, + "total_errors": 0, + "generated_at": "2026-01-28T23:29:22.670991+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 189974.44, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23376 + }, + "generated_at": "2026-01-28T23:29:30.752760+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "cutoff": null, + "window_days": 28, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3240, + "records_with_pk": 3240, + "missing": 12, + "missing_samples": [ + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + } + ], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 750, + "records_with_pk": 750, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 36, + "records_with_pk": 36, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17145, + "records_with_pk": 17145, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 65, + "records_with_pk": 65, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4761, + "records_with_pk": 4761, + "missing": 33, + "missing_samples": [ + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3338, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 18, + "skipped_missing_pk": 3338, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 82, + "total_errors": 0, + "generated_at": "2026-01-28T23:32:50.367683+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2882, + "diff": -2882 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 3, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2650, + "ods": 2882, + "diff": -232 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 52426.81, + "ods_sum": 57169.8, + "diff": -4742.990000000005 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 133145.02, + "ods_sum": 144481.47, + "diff": -11336.450000000012 + }, + { + "column": "ledger_amount", + "dwd_sum": 316772.7, + "ods_sum": 348798.59, + "diff": -32025.890000000014 + }, + { + "column": "member_discount_amount", + "dwd_sum": 19343.73, + "ods_sum": 20970.02, + "diff": -1626.2900000000009 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 132512.49, + "ods_sum": 146832.65, + "diff": -14320.160000000003 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 707, + "ods": 754, + "diff": -47 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 216727.95, + "ods_sum": 232766.15, + "diff": -16038.199999999983 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2103, + "ods": 2272, + "diff": -169 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 138534.0, + "ods_sum": 150912.0, + "diff": -12378.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 132809.02, + "ods_sum": 144481.47, + "diff": -11672.450000000012 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2112, + "ods": 2273, + "diff": -161 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 139370.0, + "ods_sum": 151190.0, + "diff": -11820.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3076, + "ods": 3327, + "diff": -251 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 355665.0, + "ods_sum": 377823.0, + "diff": -22158.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -87.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23640 + }, + "generated_at": "2026-01-28T23:32:59.039038+08:00" + } + ], + "api_to_ods": { + "total_missing": 316, + "total_errors": 0 + }, + "total_missing": 316, + "total_errors": 0, + "generated_at": "2026-01-28T23:32:59.039077+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260128_233424.json b/etl_billiards/reports/data_integrity_window_20260128_233424.json new file mode 100644 index 0000000..a6feaf5 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260128_233424.json @@ -0,0 +1,10374 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 2, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17143, + "records_with_pk": 17143, + "missing": 5, + "missing_samples": [ + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 32, + "total_errors": 0, + "generated_at": "2026-01-28T23:09:49.307260+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -19897 + }, + "generated_at": "2026-01-28T23:09:57.356324+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:12:30.789769+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21143 + }, + "generated_at": "2026-01-28T23:12:40.134527+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:15:59.619948+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23484 + }, + "generated_at": "2026-01-28T23:16:08.075969+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:19:44.673266+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21161 + }, + "generated_at": "2026-01-28T23:19:52.758593+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 408, + "records_with_pk": 408, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 85, + "records_with_pk": 85, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 2, + "records_with_pk": 2, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 8, + "records_with_pk": 8, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 726, + "records_with_pk": 726, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 416, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 416, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:22:44.433866+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 116393.37, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -22721 + }, + "generated_at": "2026-01-28T23:22:53.352358+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 37, + "total_errors": 0, + "generated_at": "2026-01-28T23:27:17.895652+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 156623.79, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23233 + }, + "generated_at": "2026-01-28T23:27:32.210179+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 37, + "total_errors": 0, + "generated_at": "2026-01-28T23:30:57.607440+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 189974.44, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23376 + }, + "generated_at": "2026-01-28T23:31:06.725235+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "cutoff": null, + "window_days": 28, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3240, + "records_with_pk": 3240, + "missing": 12, + "missing_samples": [ + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + } + ], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 750, + "records_with_pk": 750, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 36, + "records_with_pk": 36, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17145, + "records_with_pk": 17145, + "missing": 7, + "missing_samples": [ + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 65, + "records_with_pk": 65, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4761, + "records_with_pk": 4761, + "missing": 33, + "missing_samples": [ + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3338, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 18, + "skipped_missing_pk": 3338, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 83, + "total_errors": 0, + "generated_at": "2026-01-28T23:34:15.204441+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2882, + "diff": -2882 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 3, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2650, + "ods": 2882, + "diff": -232 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 52426.81, + "ods_sum": 57169.8, + "diff": -4742.990000000005 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 133145.02, + "ods_sum": 144481.47, + "diff": -11336.450000000012 + }, + { + "column": "ledger_amount", + "dwd_sum": 316772.7, + "ods_sum": 348798.59, + "diff": -32025.890000000014 + }, + { + "column": "member_discount_amount", + "dwd_sum": 19343.73, + "ods_sum": 20970.02, + "diff": -1626.2900000000009 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 132512.49, + "ods_sum": 146832.65, + "diff": -14320.160000000003 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 707, + "ods": 754, + "diff": -47 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 216727.95, + "ods_sum": 232766.15, + "diff": -16038.199999999983 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2103, + "ods": 2272, + "diff": -169 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 138534.0, + "ods_sum": 150912.0, + "diff": -12378.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 132809.02, + "ods_sum": 144481.47, + "diff": -11672.450000000012 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2112, + "ods": 2273, + "diff": -161 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 139370.0, + "ods_sum": 151190.0, + "diff": -11820.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3076, + "ods": 3327, + "diff": -251 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 355665.0, + "ods_sum": 377823.0, + "diff": -22158.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -87.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23640 + }, + "generated_at": "2026-01-28T23:34:24.420291+08:00" + } + ], + "api_to_ods": { + "total_missing": 321, + "total_errors": 0 + }, + "total_missing": 321, + "total_errors": 0, + "generated_at": "2026-01-28T23:34:24.420312+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260128_233947.json b/etl_billiards/reports/data_integrity_window_20260128_233947.json new file mode 100644 index 0000000..c97d9ed --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260128_233947.json @@ -0,0 +1,10407 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 2, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:15:39.302595+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -19897 + }, + "generated_at": "2026-01-28T23:15:48.107329+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8231, + "records_with_pk": 8231, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:19:08.479525+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21143 + }, + "generated_at": "2026-01-28T23:19:16.633416+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10051, + "records_with_pk": 10051, + "missing": 10, + "missing_samples": [ + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11870, + "records_with_pk": 11870, + "missing": 10, + "missing_samples": [ + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 6, + "missing_samples": [ + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 33, + "total_errors": 0, + "generated_at": "2026-01-28T23:22:47.273168+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23484 + }, + "generated_at": "2026-01-28T23:22:56.269227+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 37, + "total_errors": 0, + "generated_at": "2026-01-28T23:27:11.990551+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -21161 + }, + "generated_at": "2026-01-28T23:27:29.695501+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 408, + "records_with_pk": 408, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 85, + "records_with_pk": 85, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 2, + "records_with_pk": 2, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17144, + "records_with_pk": 17144, + "missing": 6, + "missing_samples": [ + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 8, + "records_with_pk": 8, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 726, + "records_with_pk": 726, + "missing": 0, + "missing_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 416, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 416, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 37, + "total_errors": 0, + "generated_at": "2026-01-28T23:30:19.763140+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 116393.37, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -22721 + }, + "generated_at": "2026-01-28T23:30:28.027992+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17145, + "records_with_pk": 17145, + "missing": 7, + "missing_samples": [ + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 38, + "total_errors": 0, + "generated_at": "2026-01-28T23:33:41.841522+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 156623.79, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23233 + }, + "generated_at": "2026-01-28T23:33:49.977135+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17145, + "records_with_pk": 17145, + "missing": 7, + "missing_samples": [ + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 38, + "total_errors": 0, + "generated_at": "2026-01-28T23:36:42.539466+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 189974.44, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23376 + }, + "generated_at": "2026-01-28T23:36:51.438669+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-29T01:00:00+08:00", + "cutoff": null, + "window_days": 28, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3240, + "records_with_pk": 3240, + "missing": 12, + "missing_samples": [ + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + } + ], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10052, + "records_with_pk": 10052, + "missing": 11, + "missing_samples": [ + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 750, + "records_with_pk": 750, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 36, + "records_with_pk": 36, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11871, + "records_with_pk": 11871, + "missing": 11, + "missing_samples": [ + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17145, + "records_with_pk": 17145, + "missing": 7, + "missing_samples": [ + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2485, + "records_with_pk": 2485, + "missing": 1, + "missing_samples": [ + { + "id": 3071139583805125 + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 65, + "records_with_pk": 65, + "missing": 0, + "missing_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8233, + "records_with_pk": 8233, + "missing": 8, + "missing_samples": [ + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4761, + "records_with_pk": 4761, + "missing": 33, + "missing_samples": [ + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1753, + "records_with_pk": 1753, + "missing": 0, + "missing_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3338, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "pages": 18, + "skipped_missing_pk": 3338, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 83, + "total_errors": 0, + "generated_at": "2026-01-28T23:39:39.198830+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18618, + "diff": -18617 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2882, + "diff": -2882 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 413038.35, + "ods_sum": 413038.35, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 3, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 171, + "ods": 172, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 170, + "ods": 171, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2650, + "ods": 2882, + "diff": -232 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 52426.81, + "ods_sum": 57169.8, + "diff": -4742.990000000005 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 133145.02, + "ods_sum": 144481.47, + "diff": -11336.450000000012 + }, + { + "column": "ledger_amount", + "dwd_sum": 316772.7, + "ods_sum": 348798.59, + "diff": -32025.890000000014 + }, + { + "column": "member_discount_amount", + "dwd_sum": 19343.73, + "ods_sum": 20970.02, + "diff": -1626.2900000000009 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 132512.49, + "ods_sum": 146832.65, + "diff": -14320.160000000003 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18618, + "diff": -232 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 707, + "ods": 754, + "diff": -47 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 216727.95, + "ods_sum": 232766.15, + "diff": -16038.199999999983 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5050, + "diff": -47 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2103, + "ods": 2272, + "diff": -169 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 138534.0, + "ods_sum": 150912.0, + "diff": -12378.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 132809.02, + "ods_sum": 144481.47, + "diff": -11672.450000000012 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2112, + "ods": 2273, + "diff": -161 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 139370.0, + "ods_sum": 151190.0, + "diff": -11820.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [] + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3076, + "ods": 3327, + "diff": -251 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 355665.0, + "ods_sum": 377823.0, + "diff": -22158.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -87.0, + "diff": 0.0 + } + ] + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ] + } + ], + "total_count_diff": -23640 + }, + "generated_at": "2026-01-28T23:39:47.719778+08:00" + } + ], + "api_to_ods": { + "total_missing": 332, + "total_errors": 0 + }, + "total_missing": 332, + "total_errors": 0, + "generated_at": "2026-01-28T23:39:47.719800+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260129_110434.json b/etl_billiards/reports/data_integrity_window_20260129_110434.json new file mode 100644 index 0000000..3cb714b --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260129_110434.json @@ -0,0 +1,58516 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 2, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 20303, + "total_errors": 0, + "generated_at": "2026-01-29T10:15:19.756554+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 26238 + }, + "generated_at": "2026-01-29T10:15:28.062718+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "mismatch": 1776, + "mismatch_samples": [ + { + "id": 2814974177528453, + "content_hash": "f8240151eb8a2f9a45a12f7bd61b4ab36a2ed12151106b280d7459c83b10eb21" + }, + { + "id": 2814961324608133, + "content_hash": "2f44777aec25f62d1c45bf7cf91d1b684a3427a44c5622a0ab7fd41d1b887453" + }, + { + "id": 2814952556251845, + "content_hash": "40f42d83e5bc1923e6f47d0b3f793d66021fa201ff87e7b6995b572f0806b0da" + }, + { + "id": 2814948630940357, + "content_hash": "4daf0c80382e57278b5369f7c9a74cfef5d3305a02220b97699c99f582fc7cbb" + }, + { + "id": 2814945134938821, + "content_hash": "3fd4bec6c9a8841b71785f07baba879cb92edd8d4fe75db72b14d765b6fce5a8" + }, + { + "id": 2814933954120325, + "content_hash": "b6621ae806fa5811fafb852902910cf4bced887fb0947f0c158e4757e085f364" + }, + { + "id": 2814933748271621, + "content_hash": "a716a7d441566ca322eba9f0b15a7d062eabcfed61dd3adede476c66c4db6f46" + }, + { + "id": 2814933479099077, + "content_hash": "537c93ae757a7b0e7b67cd7cacd38eb8d1d544fa958f7a1538d4e720fdb473dd" + }, + { + "id": 2814931576375749, + "content_hash": "69eb1ef629e11b06696e21f751acb1fa4eeec95042bc8f206847fb2db212b8a5" + }, + { + "id": 2814924780128901, + "content_hash": "519f554f5207c7d0f9371a1e25c8301a619316f833c5765014f41daf5a2db719" + }, + { + "id": 2814917321329093, + "content_hash": "38779c9422cffec37e1e134c5c70bdf968b2c86d3af98a8330b0d38256781718" + }, + { + "id": 2814916795533957, + "content_hash": "05e0e1a14f2a96712f2002518ce6f171dd47d94c6dd50c755a43a8bf50b3cc79" + }, + { + "id": 2814914723252677, + "content_hash": "5a15b11f16b1468cafee082787fdcbd5e671c066f6bd392432da68028c3dcd2e" + }, + { + "id": 2814913343031813, + "content_hash": "4c257c4988842f3763c46fd69c54033fdcc281708dbeed3ac3af40dde93a7056" + }, + { + "id": 2814910637705925, + "content_hash": "175cfa670d1f1227743fa3353de764bb031829634bf6da231df8f5867ce83b1f" + }, + { + "id": 2814908226603525, + "content_hash": "cd07ece4e1c5ae95947535c3bc737c51cb059badb4e3f2aa84909180860d1089" + }, + { + "id": 2814903665806021, + "content_hash": "ac715a37e21308363b67aad4f9cd4e24a85fda483c7216e6e286f0f9f183c96c" + }, + { + "id": 2814903618472581, + "content_hash": "6590ea28afd917cfedcba3043f9d0f5dc6062962f742bd8f5f7931bd409523c6" + }, + { + "id": 2814903531965125, + "content_hash": "32be3be4b5154faf5edab9c3af7cb16e1b015e83ffc0fb9a1a3f157a2350c0bd" + }, + { + "id": 2814902142782149, + "content_hash": "1caea70dd87b08dd31320695a1f463c64639327697bbc20b371162f0f2a344bb" + }, + { + "id": 2814901496351365, + "content_hash": "d92bb2bae75d02474c4fbc30defe73df5f3d2a8e1a231d69d3a4c7993b360163" + }, + { + "id": 2814899746965957, + "content_hash": "32d3fac3c1020c8d6d48ccbc6e5fe8c7b541af05bfe6b486866f860999334df2" + }, + { + "id": 2814895489272325, + "content_hash": "38436b172a524e56c6cc482d11206381f584aa897b3dde6c036720a518261231" + }, + { + "id": 2814891250846149, + "content_hash": "099c0c194717c0f5afa7b4390ba812659cddcb1e6cd3588b0da236da7f7ddd0d" + }, + { + "id": 2814881671023301, + "content_hash": "6b8148506d1f463a70ad6623c85d3283104a3e8c1026f6c579b03ea256819de0" + }, + { + "id": 2814878484712069, + "content_hash": "9047992d08406e2a04f1faf220564bc14f596d07ffb1b200ff40e8b23874298c" + }, + { + "id": 2814878398679557, + "content_hash": "baa259631502c8d5b70497f4f28503dcd9ab4abf445f2fdff92e6c88052b242f" + }, + { + "id": 2814874876496517, + "content_hash": "e8dab362d049e1614cef344edbe6a13e317fc40ef47fd840c1581aebdd389af5" + }, + { + "id": 2814873440668165, + "content_hash": "e49a556c5bf3607a5b3012c30a13faa279707c4f4ad3b20661fbd02c4a0e151f" + }, + { + "id": 2814873001396933, + "content_hash": "cc87dffcd4e4faf942034a23e31c16afc43383bb2c3f9644f7109c9976271ad5" + }, + { + "id": 2814871099312837, + "content_hash": "1de4538fc41904be473924b71791b64c5c2d4fccfa48852dd20a9fd1f7951ce6" + }, + { + "id": 2814868343229061, + "content_hash": "05801d48a9e41d47f94b04c11846b93b925477ec4ece21e371cfeba36dc52f61" + }, + { + "id": 2814859964713477, + "content_hash": "c2decf272b7234ff0cf97c404853c09a28bcdb7af58d102790b362e6baf93745" + }, + { + "id": 2814858442230405, + "content_hash": "ec819de172b6964a92d49d3aa20ed60803140e306278df4b272920b91f1942bc" + }, + { + "id": 2814851705473541, + "content_hash": "86a96a592c86dc9a2dd65f829ab9f5556b674914189d3876bd7427897613391f" + }, + { + "id": 2814843170802309, + "content_hash": "cbc2c385d1a50f19521faa6499dcde6c180079bb4e2ce1e204f7b42654b7b296" + }, + { + "id": 2814841843583621, + "content_hash": "9f382e88ceb511a65dcfeb72d3cb4de14716f8e3df6698851d1177e35fe03eb0" + }, + { + "id": 2814838508030661, + "content_hash": "90c9159464a3779d03cd1a577ab56079932ac9d29d5fe9998518fb9793eda710" + }, + { + "id": 2814835004819973, + "content_hash": "95de26642d293198d2b817255970309e069f8b5d2ac5b1cb84b68be3343db9e5" + }, + { + "id": 2814827877845637, + "content_hash": "94940abea8327335dd8e2e36d75ced1e78c1c4919092fce27a394c2903d6bad4" + }, + { + "id": 2814827816848005, + "content_hash": "3a8ef8a1a2f1a7e9257978a32b2ac84dec9117548d38f7f7ee395c209815d0c0" + }, + { + "id": 2814827392371141, + "content_hash": "d7cce9d0fd04097ca893c30bf1b7ddd237081bd04ca07f60f0476d79bb4e133e" + }, + { + "id": 2814827188079301, + "content_hash": "879838838a6c38fd513bba46464c371138e86afe7a8c20c69a5a3246498d77bd" + }, + { + "id": 2814824774158981, + "content_hash": "34c6581e70b91e82ef94560780f4fb895030be40e97e0d8f90cf5673e0356110" + }, + { + "id": 2814823548603013, + "content_hash": "c243f8dcd7622b1130c53e78d99c80673fdb93a43d4f4759993ccf00e4238263" + }, + { + "id": 2814814818323077, + "content_hash": "d1d7412ae709cc3725e60397ed0c40149600b720c1cca09b3471d28f5a4bb328" + }, + { + "id": 2814807854696901, + "content_hash": "a9f63dfbd27cb9d8bd283e19756f186d4d0ce124ff5c2877fd962bf71f6112db" + }, + { + "id": 2814806725986821, + "content_hash": "b6fd3cb9757bf6f5bfcabe4d2bd179851c77288091261da2fbb9fcf72ed530e6" + }, + { + "id": 2814794429532869, + "content_hash": "e09c4b617593a1c2361ffc2d518a589ee4fec7fe38bea59c523ee17aa2ec2c20" + }, + { + "id": 2814791384484293, + "content_hash": "06a653262eba59b8957775023ac886d6708c27c18661836f04edbdb1ac0a7fdb" + } + ], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "mismatch": 351, + "mismatch_samples": [ + { + "id": 2814933689289221, + "content_hash": "f84d67a50b3a954e8b1c68cc869988f10841754db12b1e12d2858aec8f14fd0b" + }, + { + "id": 2814924810783429, + "content_hash": "b243abc685a1d8f8a01c6c2d90dcaaf52cc1349a11421ec2ea4d29f7125e63b0" + }, + { + "id": 2814901880228357, + "content_hash": "d8361a67a3eb9394b7096bc1053a35703e2735a298b7ef90b9129853943eada4" + }, + { + "id": 2814881854818949, + "content_hash": "b62ebbaed185d1d8486874fbdd3a034df73a95c07dcd62c42692e1c65d73cf7d" + }, + { + "id": 2814688934414981, + "content_hash": "5660fc99c8d39fcf5610dc45bc4a34db77ce9d7f92f86435e7c91ba5c4dbcec9" + }, + { + "id": 2814685997484677, + "content_hash": "92f64d85742ec40afa0d23bb157b6c02401723d0b6e3fc18ac712131aa986291" + }, + { + "id": 2814677560183301, + "content_hash": "921fdaf3783f937103f14b0e2c6094aa39c7bf76cac21af6ccebf3f1739dbec8" + }, + { + "id": 2814651472775621, + "content_hash": "fc5f3ce28078048e079210d05124f1324d855f925a91a6abc17203b6073a2fb4" + }, + { + "id": 2814632601815749, + "content_hash": "4c322d19c1ff6ecdbb866a6933af1ad4f9f17cda08612fd3b1ebc4cb4a3f8e9d" + }, + { + "id": 2814613702347461, + "content_hash": "980ad03d792eeddcf0df4d4948316d772e3269c7c7e48a3ce80333d491cdf06d" + }, + { + "id": 2814593864501957, + "content_hash": "d5681836b43e8f9b0f34bd059c711aa25a690ccfb1e6690107c2c4cb9b09b06c" + }, + { + "id": 2813729967638725, + "content_hash": "def92c1adbe21f92950c0195adf578896b616a0295e51db1cdcc2f6af2e6a7eb" + }, + { + "id": 2813729967392965, + "content_hash": "d734c36ab95cc214ca9689b352c5906046f0b1bd6eda8832b8d938801669911b" + }, + { + "id": 2813729967163589, + "content_hash": "7d58f67c4be4ce28ecf951bf5a561fff1927b8bcd50b1528b71a195016b21794" + }, + { + "id": 2813729966934213, + "content_hash": "ac4a2688f5b495881946fd3ef9c64255355e3a873b81db921fd68019ff57ffbb" + }, + { + "id": 2813729966688453, + "content_hash": "44de208b2fdd29f63a4df48d3b3947831c064f2f3efb5a4f13897918424724fd" + }, + { + "id": 2813717425818373, + "content_hash": "fb5ccdef30a0217c5df1a4d140934c674b1f7d2ca97775e832821a523e6faf0d" + }, + { + "id": 2813662852647365, + "content_hash": "c24b6f89ea7111cacd5895cfc5649d043aeddc6ca054fecd60430a4537a89fdb" + }, + { + "id": 2813658740576837, + "content_hash": "1e4e673f437e1539f861e08600b200a770df6d23122ef09fed6d36b6292f2508" + }, + { + "id": 2813658740347461, + "content_hash": "bb092f1842d3fe3638c5dc3677c4297e28179353cf231522ec4ae5edf29c8a43" + }, + { + "id": 2813616990800645, + "content_hash": "11c003c80ef62d02f6a86df29707897c15a4e4f42df317449e47bd1de018ca16" + }, + { + "id": 2813613600754437, + "content_hash": "ac6b4cb2d4b1894b8c8b1156cbcf9b12719a24bce7f9d7213e35da2dce472358" + }, + { + "id": 2813594974980869, + "content_hash": "acb2afb09dd1b9e7faa979ec14c8e3c66b0b4e5e604b26d883e441b0918dde2a" + }, + { + "id": 2813556457916869, + "content_hash": "98e11bd4adaf0a80c69736472cc6297a08e5290fb69689b7742cb00e7f5b4c47" + }, + { + "id": 2813556457589189, + "content_hash": "9b58d8489014c79ca5f49b4725a0919706791242bd98f872ea403abc51ad5a10" + }, + { + "id": 2813537587139141, + "content_hash": "1c4b1d65b006e72a2a4b5ff606364dc40a8c75e42a83186eac1b67bc11e35670" + }, + { + "id": 2813534697458117, + "content_hash": "b4b6852bf52c93af2d0228b76ea7e49f9ce3961341d0e6818bb0abb986433c25" + }, + { + "id": 2813533235417669, + "content_hash": "75c4ebd6338811113753d35c55e7c0727857e601cc2b40dd3ab541eaf5776def" + }, + { + "id": 2813533235106373, + "content_hash": "08423fc1c7916a82fd2cf730666ec14a4ae84e679279b46bead7c98b7a5c1fee" + }, + { + "id": 2813533234811461, + "content_hash": "1bd1c24b7f4b6cfa83f1dfa02642e9d8637abd545a22255665295903898be6f0" + }, + { + "id": 2813495350102213, + "content_hash": "fa2915c516a9a11a89ad7502ed9c66f975111168a51ecb2aca6e419d52d95e68" + }, + { + "id": 2813465996855813, + "content_hash": "29f3d4affa7f96ffc6f4105678800a7640a3c872188a75257437e1c595166aab" + }, + { + "id": 2813443550333445, + "content_hash": "e50d2ce6d81d041e46f65e4fb7c3ce33bba94df8e05d289050f7db346069701e" + }, + { + "id": 2813437666364165, + "content_hash": "6d2f3c1116889943dd40cdd7952c6ec4f852f450be33ccd90a689a63837cc206" + }, + { + "id": 2813346465221061, + "content_hash": "4823d0a61abb6e1b2aff13f7890a090a0018ddaf36b752f63545dac100b5821e" + }, + { + "id": 2813332730398917, + "content_hash": "1639062b20008aa727f9a4e8a6eb49801848d07f6c263c1317855758cbd48f08" + }, + { + "id": 2813321357888005, + "content_hash": "9806ef0840df60a702a3e8fa3a26583e78325192e6b69a7c6b6368578926add9" + }, + { + "id": 2813293513017797, + "content_hash": "9870f2adfc830ad567589d5442876e0266bdc260a59f88b47c5b51ab00e06ba3" + }, + { + "id": 2813251898542853, + "content_hash": "1eb8f961171b58088af5636de79b1fc78985f8720be8108da40f65f01bc8d5b0" + }, + { + "id": 2813250626996677, + "content_hash": "a6599108b81a754b741a0b9427302199f782fd90a4e6aeccb8b6ac1890041dc3" + }, + { + "id": 2813250626767301, + "content_hash": "962a3e573660cc43819ec6cab61e9ba6ce5f68a9e6cff22c580019d898403da5" + }, + { + "id": 2813227116841413, + "content_hash": "6e0bcccb2d2117c52916a80f263f565e8ae03da21202c19fd88ecc06d27795d9" + }, + { + "id": 2813208962484997, + "content_hash": "26b2e47bcfcbad8787f85a4ed1d3fa1b3b1e186184cc35504dae0216ad9cd1ed" + }, + { + "id": 2813176008493509, + "content_hash": "d4b185de9c0d9a8462cb38496774a47864700eba3f4b7b830b891cc845769026" + }, + { + "id": 2813089968409029, + "content_hash": "c186dec03d2721df1266cfc5194f32fc0d7d7c4438d65a963b76a3871bce4949" + }, + { + "id": 2813086934796741, + "content_hash": "c2e875536d272c9582573fb4b548101928cb6df8df0e2d0412c5b13d731afcee" + }, + { + "id": 2813030755076549, + "content_hash": "5c59303394b741b4a83a57d52d6da29f8b58580612d71731b58aa42a1b5f4b39" + }, + { + "id": 2812353040992773, + "content_hash": "111397c363cbf735e3becd0d68fcdf41d2c0fb24de896fe1785b3936a91a28d3" + }, + { + "id": 2812350109780421, + "content_hash": "247b8207b446ec5deeb864492832639d8e422d6d82da6a729fb5c0263bf338e1" + }, + { + "id": 2812350109518277, + "content_hash": "8e629252ff584a0210f7c507dd4488b0986ece276148c61e20f85def0a0a16ee" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "mismatch": 44, + "mismatch_samples": [ + { + "id": 2814476335547909, + "content_hash": "ce644db5bb343f86a12e4b2805ff1ebbb6e2fb7b87c4d9210ad72dc591c9d212" + }, + { + "id": 2813729032046789, + "content_hash": "fca1f722b25c99fcfec14716379021f332ea5e6cbee5dddcef31bd4a9d0bc840" + }, + { + "id": 2812352420645317, + "content_hash": "925250f52359a3afe1220e4bc37ea136fe6bed641595d948bc86ae560183b94f" + }, + { + "id": 2812164953934597, + "content_hash": "8b46db4dc2bbcbb50c461ff660197e938f04c756cf406626ea278c2932c7ec0a" + }, + { + "id": 2812160863095557, + "content_hash": "928ccf6062bda778ba2a907dab9740b0c96ea3c3d0db7a87973ad8b0361d3785" + }, + { + "id": 2811829130856901, + "content_hash": "c517c354f6e97e0ab1f4146149e658e02ca92e30d436a5ddc2917a3fdfb5642d" + }, + { + "id": 2810801124133381, + "content_hash": "96ef66f1558b8995c4ed4d95e2ef57990b1e7730f2f8cf2c0783f6f0b15c7abc" + }, + { + "id": 2810800364193989, + "content_hash": "00e87cf7f236566bea1b2393a5b994a4a84d52cbd08f687dcccf7c1a5f2ccddf" + }, + { + "id": 2810563362048453, + "content_hash": "439db26cc26b1a32cd749640ae88cd190f7c157e732f6028b24dbe8207040d1b" + }, + { + "id": 2810546930207237, + "content_hash": "3cb73a9ce91b73c61224bc758242ddffa685664cb2bd99a1e7727dbd0f5772aa" + }, + { + "id": 2810412839373574, + "content_hash": "67833d5df50d3df6a6b146802e16baf46eccaee11b9404c2c2ad9bccde575fbb" + }, + { + "id": 2810371281799621, + "content_hash": "03d1ed07f270ef8749d23c9fbda58192eba66cfcb6c27e6da98488011f689331" + }, + { + "id": 2809504839059909, + "content_hash": "9e559c998bdf696128dcacbb8db881bb66efa54313751574d34ece853d0dd7a5" + }, + { + "id": 2809471788321221, + "content_hash": "c822d82f0e94c929273b514b064e05a07f489acc1cc9267c579568bb664eefd1" + }, + { + "id": 2809392429549765, + "content_hash": "30b37978866ac35ac16b6f60091aed34bcede69019eb5bde9f3ae75e66268db0" + }, + { + "id": 2809187656829061, + "content_hash": "bc4ae3d210d0a49a07f48f593ce4e0245e2d00a04ee6b2b99d51b7e15bf1ad0a" + }, + { + "id": 2808923174783109, + "content_hash": "c3efe42359ca66073936c52522aef9caff9c60716126c18d453cd46c1016fd08" + }, + { + "id": 2807912803045957, + "content_hash": "8b76d636b841d902ed311dfb5abcb633019bcc5d6b6775275f9bedea28d5091c" + }, + { + "id": 2807909672309637, + "content_hash": "56b63ef9c2813bf0fbe70cecbf5245444ffef897922c48222e1de68a29ec4d7f" + }, + { + "id": 2807891556897349, + "content_hash": "98ebb15d15b5d7c400f4bbffaeada993d582ffbe7f77c72a604d2e7b09cc3040" + }, + { + "id": 2807815241847557, + "content_hash": "04ea40cbcabbc2efbbb1b73b413d9f7d15b58b104917e915ec1017a5783756de" + }, + { + "id": 2806859908384389, + "content_hash": "0259ee1b7b2beb1e55edcf846513fd8f752729b224ef29bc139cbe40adb7ac76" + }, + { + "id": 2806855233947525, + "content_hash": "32204699ba968b5a5263efd97e5bebce1bd516a82bbe2bda6eec5d30efe246a0" + }, + { + "id": 2806708031637381, + "content_hash": "4a0702411ef010fd0321e222c4d3bdafb7dba4c6caa929dc82e692491c8a9108" + }, + { + "id": 2806426635208517, + "content_hash": "4fafeb4ea1611d085392ae4d9dc36e65ecef0f25c79ce86a09055a5bf7ab2ce5" + }, + { + "id": 2806371278325381, + "content_hash": "c14145de34cb957b81c1e1aeae84700197fc274b1a0724a0ddd2ca36953d2131" + }, + { + "id": 2806244951017285, + "content_hash": "bab30ec752730010b14ae4b532320a02c2e7eece7e048a0ef445fc70aa4bf9f5" + }, + { + "id": 2805188835477573, + "content_hash": "6e9188ed1e68cb49eedc487548f0a7108833dbd74d5989728db1942d529a8977" + }, + { + "id": 2805121951074373, + "content_hash": "a9553614c13e7fed14e7caff900428f7dd1cd84994b318dfc408a9fe43f59675" + }, + { + "id": 2805111552117957, + "content_hash": "9210bea780945cd8f5ba8f278161439b0eed96089223429c99b71edff334623b" + }, + { + "id": 2805070136823365, + "content_hash": "ed27385d2860c2cde3f9e386ba063f9a01c8cfac9df87d22ad904a8a6888aa35" + }, + { + "id": 2804767340973317, + "content_hash": "f4bcbbfb57d10471eff24e26d5271f62f1b4a4b2946818840ae409e485f19bad" + }, + { + "id": 2803710575593541, + "content_hash": "6c2948b77910346200879c4bec52bf42e1fbe96e99ba8c3f57bf4c576f61c03a" + }, + { + "id": 2803666932010565, + "content_hash": "23fc618623bfab9a06065b52eae935c7ebfa8256d1f462109372b59bf88043c0" + }, + { + "id": 2803661545508421, + "content_hash": "ec9ab56f745c952d03962a9ce8f91e0a79245215c1d7bb774032d0db1fb2f6ab" + }, + { + "id": 2803649174965445, + "content_hash": "9a322b37c71eb8d0c8be45fe02048da31635b3e6eccede39412ed1035662d61f" + }, + { + "id": 2803524215835845, + "content_hash": "d1c9f767ace4a7e883152a7e575bb3f110a5e081da886f19f06a516a62d55089" + }, + { + "id": 2802480974171333, + "content_hash": "bd6ae46889043e77404f9da615c5455cba2b277b3cde888a685dd69cde39709f" + }, + { + "id": 2802393839258885, + "content_hash": "bed8f8f4c69f253ce1d3c2ab866b89b80b3ea97028425802e9538afe7fb33f24" + }, + { + "id": 2802362619840581, + "content_hash": "c6762a09fa18993143ba60c0fed8eb3656e2529374f95ffe5dc61680eac57dd0" + }, + { + "id": 2802064357345349, + "content_hash": "52d58af90c4902114165d33ae09368ee4ebb8255c3faf9125435dcc0abe4e7c0" + }, + { + "id": 2801879399532933, + "content_hash": "4e251101111e2d32d4e1b7cb0b0242e66a44c10a67f8ff85a8bd08d66f922f98" + }, + { + "id": 2800824057628741, + "content_hash": "f3fbec6e7e17ffedad6783fe6a88b799a95fa695dde137ba78e44d48b0bd7f43" + }, + { + "id": 2800763348731909, + "content_hash": "5c5c7dc15522c60759b9e6d750604f4735c0de25768d65add3b6082f90d9ae69" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 22474, + "total_errors": 0, + "generated_at": "2026-01-29T10:18:03.601743+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 32250 + }, + "generated_at": "2026-01-29T10:18:11.468005+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "mismatch": 4602, + "mismatch_samples": [ + { + "id": 2858856606271301, + "content_hash": "3b4bc6c06e08cdb9966219c7a7d9cd42863c7d7158f6d85f450f23ba663d2f1c" + }, + { + "id": 2858856201291461, + "content_hash": "7920be2b8895eece1d9a7f80240f4af0db1dbfa36cbc35b1272c31606c96dcdb" + }, + { + "id": 2858852359587525, + "content_hash": "e58b36ce7a243e22d1f35454c8044b44249ab90d37e1b7d3222cdbc2de273293" + }, + { + "id": 2858844609857285, + "content_hash": "ce069ec88e555b83275418561927f18d5f78eedaaa39868ef3447e0822cd91fb" + }, + { + "id": 2858838753347397, + "content_hash": "feee4ce4175249de38a8017a7a9b246103882f15b1e79a21f4e55ee3801ff758" + }, + { + "id": 2858837304100549, + "content_hash": "0f8c9b962f4ac871edbba41aab7624e39ccec716da396a86cc9f3b61989a1939" + }, + { + "id": 2858837207189189, + "content_hash": "0d30149d91e8f838e91551ce3908a87ca49c151879bfb534d81decab9ce4b9c6" + }, + { + "id": 2858811122468549, + "content_hash": "9a208010b3729c6037bf03ca60fbb704e9ca3f553eb52db3cba0bfcbdf0add01" + }, + { + "id": 2858800453584837, + "content_hash": "46234b1cea4055fc890cf73d71249b691f2f967dcdd4306c4f8ab3c37af66913" + }, + { + "id": 2858789121574853, + "content_hash": "e0921349afe405e4c9d26064dd6cf3c07fe1333a9721785c066df2cf52945e4d" + }, + { + "id": 2858771938838277, + "content_hash": "0776c82154dae75c18d5cb28024e2f719fb8f049b0f4c16f7bc144a347fbcc1d" + }, + { + "id": 2858768948381445, + "content_hash": "b492ebc6b6edecc722cabeb6aad21118d82e9a11fdf5827f43afc9ba44628074" + }, + { + "id": 2858768369780485, + "content_hash": "4163de2fe26b985e820861326a9fcaf0aaafe45967bf18688c8867f8df2c62dd" + }, + { + "id": 2858762261481157, + "content_hash": "18704acc96595fc1a0bf599187f150b9826e160a1f06e192c414949bb278cca6" + }, + { + "id": 2858761385379525, + "content_hash": "35babab13698a4fce57e6b8c8e2d1220dec87cc2dac23af2a5bb3fd01af30669" + }, + { + "id": 2858749729097477, + "content_hash": "6eb8fa4b148e6c44a8d0e13accc4deaf5466110194b9ee75acd08564ed4145c5" + }, + { + "id": 2858745648826181, + "content_hash": "125accdaf60b2704624567510a057c347be7a0a10308c6c44514e15b7184d568" + }, + { + "id": 2858744035542853, + "content_hash": "b6b43b603d05ebd0df2f8dec70edd89e373df6b75384ca9bf3171efb8aadd3b0" + }, + { + "id": 2858736848668357, + "content_hash": "8dc7b753f7d9b41d4795478873ef07393e2c9f88878fdc475523dc68d4421d0f" + }, + { + "id": 2858734854702853, + "content_hash": "7a4109f426d1463eef2f9a65a779b451f272ee5e96f0579658fd82b9dfb4943b" + }, + { + "id": 2858729261729733, + "content_hash": "88c23feafbd399ca841c6f3baf02b9b32c38f9fdbb2a2ec272a6df295fd8007e" + }, + { + "id": 2858716969830085, + "content_hash": "29a7a4858f5b9c55d250ec278ec38c8a6fff7011d157fdc13c37cd2283c3d1ef" + }, + { + "id": 2858709866710789, + "content_hash": "2030970107c2cae289256f2da4125f266af7c8970810a2beb16f3542eab48d50" + }, + { + "id": 2858708840417029, + "content_hash": "7d83378b157fdd40ac36654f3e0614b9427d50ba78170de689c5358a9f531a8c" + }, + { + "id": 2858690339374917, + "content_hash": "25ba18e8863aed84a058c092cbc37861a6addb9f1e3b77d5317e18a11b8f9371" + }, + { + "id": 2858681634539461, + "content_hash": "07fafa210372f02d0cde1d1d8c57f2bef473aa259b4f46464ffd51d906d329f0" + }, + { + "id": 2858678362654661, + "content_hash": "2ba62ee85be45b9462e92f36396b6236740f15aaacbba70c1c136c6789252915" + }, + { + "id": 2858676874446597, + "content_hash": "515b0373a5d975b5a7fff30a64ac913017cf3e6133ac77b4babae4c7094f19c0" + }, + { + "id": 2858676441171717, + "content_hash": "d9dfee02eba271d1dee84b4f6258ccf8cb1bfbb177d8d2f6e1033341f6e20b0e" + }, + { + "id": 2858671615592389, + "content_hash": "7d2a610194683e69accd721dedd0dd1c1690239bc02e0aed4933ca36a49099c6" + }, + { + "id": 2858671427749701, + "content_hash": "d39396140fe2a20f97aac481a7eaedc875bb19fe572e2567889ed1a8df012aa5" + }, + { + "id": 2858657669826501, + "content_hash": "9db901e5e3e9e54c526c59203a13a9eb656388b131905c1223239a8fcc1f6480" + }, + { + "id": 2858657020462789, + "content_hash": "fa2c40e478ad27c1dde2f203067643637354f01d805a93db67e9836687f85f24" + }, + { + "id": 2858655602591493, + "content_hash": "207298c4498227201fa8bbac59d784794c29327087a8f6d791d5ead676366d9b" + }, + { + "id": 2858648440260549, + "content_hash": "babfd4861c18484ae6aa5e4c6d66121072b1fc162dc27b4284a0655e2df2c86d" + }, + { + "id": 2858646823733189, + "content_hash": "bc7fa9fc30b79a4b483ab085c38f1b281436f3729aff4e272a669985b3640828" + }, + { + "id": 2858638961444677, + "content_hash": "7b6c64eacb3771b4718253d5ec5b3132cfd44483bef9cee23e99c69c972b0110" + }, + { + "id": 2858632150812421, + "content_hash": "fe91482cb76361b20226e02f5a8de815c201e9b6656d2c77ff8d246e0b77d44e" + }, + { + "id": 2858631245940549, + "content_hash": "ecb666992f3a369a68c9773f9c288d92260619b3bc090c6e67fcd27f4af15a6c" + }, + { + "id": 2858608894609221, + "content_hash": "da93fcd591d102ff4e841028cf311c54a53adf0f33c602f4c62e61db11df9b12" + }, + { + "id": 2858608649258757, + "content_hash": "9131a6bb42b5e8709e54e7c93c6b61e382591583d6efc54390899b691fcb5911" + }, + { + "id": 2858597884610309, + "content_hash": "438f8aab537b951a3670ac8e19fe74cd5abe2a36817e1df405dc972b45004cd6" + }, + { + "id": 2858597771167429, + "content_hash": "7e510d13d3b54176101992460aaa85d0b001b239c907e044e2ae5f97d4adfe14" + }, + { + "id": 2858597590943429, + "content_hash": "ec8c6cc83e805b46748e082c3b8cbff8351d7d2568825767b431beb6335d6ebe" + }, + { + "id": 2858581224507141, + "content_hash": "bb41a0288bea25a14497a9bc3e403da9b00bb989d2a2ccd36fae4ea798f91042" + }, + { + "id": 2858579725125381, + "content_hash": "68fd74d2dd07b4b365492b4a1b2407decf791f651e63ae2e4544f1fa456f7c50" + }, + { + "id": 2858570017114053, + "content_hash": "93702d422e406d3adb921f4539a24e4dfc5f65858ab6cd08d7330a47e9409556" + }, + { + "id": 2858565584357061, + "content_hash": "a770f65684f59f28f0fd39d05c25a07c94f6f3373b6b4f91fd43105384dfdfed" + }, + { + "id": 2858564439131845, + "content_hash": "9b6c3220195401f5f1af6f12077c880d182f7b451fb6201db16b5d68369c1835" + }, + { + "id": 2858558819747525, + "content_hash": "5800839b1cbd9856640ba64d79bd74e3d44e5921ca0bcc3fdcf75481917a1e18" + } + ], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "mismatch": 859, + "mismatch_samples": [ + { + "id": 2858749921773253, + "content_hash": "fb8f5b708472a1bfd119e04a5c58ada257bed45590667b0b0b817b88eb41403a" + }, + { + "id": 2858690674575045, + "content_hash": "2536c4d5b2eafb78d03f48452552a8f0f16bd59d6016ed63a077d52fae507b8e" + }, + { + "id": 2858646913550149, + "content_hash": "65770970b38ca59c423868c7770bc5e98ce63d27e7ebcb75a13d9f2748190078" + }, + { + "id": 2858646913304389, + "content_hash": "4ecbc78a68e0b7da62de8d6ee1ac99863ede69d81ac8b96473343cbade9aca25" + }, + { + "id": 2858631454918469, + "content_hash": "6ca3874c246dfd27fd58d7c01986d1081abec4d3881ddca6c5e984f77cac5d26" + }, + { + "id": 2858463459198661, + "content_hash": "64bde0ca87052d96181aad938e453d5a0096c91400a76ad8b8894d0410a92cfe" + }, + { + "id": 2858434239268805, + "content_hash": "b1715ba8d47bd1409cd5a2fc8cb5e830d3e6f48339179bb08d3a47e38ab57690" + }, + { + "id": 2858434239023045, + "content_hash": "06a179efb1548b6825443baa3104205fd6789c41951da006aeed7dcdb9809fb1" + }, + { + "id": 2857598760765189, + "content_hash": "4b2d3cfc6ee86e9cd5e29e9aaa632594751a8126086c0a828a29b107605f3b5d" + }, + { + "id": 2857598760519429, + "content_hash": "26d87a2b18ab964f8ec690bb774c1d056a7821ad27fa26433189745c07eced0c" + }, + { + "id": 2857598760290053, + "content_hash": "eef34af07d814072d7df9380b7caf6002cbab4105b0492be524c5dff2a50d5e3" + }, + { + "id": 2857598760060677, + "content_hash": "d321c4cd5650829b327eeef610cb143604bb729c0c52bf23af2cdc2d5865012c" + }, + { + "id": 2857598759814917, + "content_hash": "43cda51bed40345cb75c95251b76c7f99a8acb18c8472edf65cf8bc9af3ee222" + }, + { + "id": 2857582477756229, + "content_hash": "2141ff622fb1e04229482088ed5033ef5207c54436a518d14de83a368bb23854" + }, + { + "id": 2857582477494085, + "content_hash": "0c26c6e1d65092e8479954643ecb452e15392c032653bc16f993132ec874b479" + }, + { + "id": 2857564324136709, + "content_hash": "b4e2b8807ad927717721d1bcb35be322d631f94a720723f6e2a63c5d82733656" + }, + { + "id": 2857563663599557, + "content_hash": "4318f7e32c00044dd3ed802719ca4cf03b91bb7efaed2b6d426e4a032fe27d6c" + }, + { + "id": 2857521236362949, + "content_hash": "eb4ccb23fc7b169ecbfcf007bffa42d612ac8183cadd87cc2f3ac48889df16c7" + }, + { + "id": 2857515577198341, + "content_hash": "945f0ad1a65a8ec999de737f9546da6179ab18f0814ecdb5e13ce491da7735f1" + }, + { + "id": 2857515576968965, + "content_hash": "07ddb50c5f86c18b810e0d4afcac2a3dbde84747314bb1379d45b73119dbb7a4" + }, + { + "id": 2857493251966917, + "content_hash": "0eeadc28dddc341c9d032e0e5de89d462a416456b76594c0fd9d04eb7648902f" + }, + { + "id": 2857487644804805, + "content_hash": "eab435593cdbbc2740315ded3b8755f0d9e15e91296b35e024a6ea788adb5177" + }, + { + "id": 2857467498678085, + "content_hash": "a1d5b378aa1e649982f54e49455565d47548a9b99ebf4705c923a8e51cd85934" + }, + { + "id": 2857467498432325, + "content_hash": "bfa77d58374e354b3e6eb532a27efb36af1eba509ed7e606321b814f674969ad" + }, + { + "id": 2857455661434821, + "content_hash": "e8b8d4d0b05db99b9d2e6b16b9b295753742beb7df690943b25e3c3c5c4622db" + }, + { + "id": 2857455661205445, + "content_hash": "15825ab0f1e2c885c94616454df43a8b949b17d077bec60b29fc79e9740a7b33" + }, + { + "id": 2857455660976069, + "content_hash": "28df52cea245b2700a8bfb4d10b9555e461c55df03be6672337334028deaae0c" + }, + { + "id": 2857455660500933, + "content_hash": "4641abef56f97c7dff6719ccc6ee84ebf70bf6e7ce00afac8d582739b62084b3" + }, + { + "id": 2857437647455941, + "content_hash": "c6b867840e4d4d78500d97776eb9db7f3102a0edb06a295e314f31cf08fe4615" + }, + { + "id": 2857421476087493, + "content_hash": "19992b5cf0862b6f50ca2828b59a2eecf555baf38f8ffe1d0972bb6bd19f8bd4" + }, + { + "id": 2857353541715909, + "content_hash": "94d8d6aa408b8945db520c2e24c36b4c8475c88a0102338f677d442f4ff48088" + }, + { + "id": 2857275582924613, + "content_hash": "36fee3e84135c3e910e5fa301e5f7e3b8bd66bcb21250127b3d012cc942c9f55" + }, + { + "id": 2857275582646085, + "content_hash": "0311439d45f1d8f714abfd19c30dac61b4f9e0a833dfbab84bef22522e578bcc" + }, + { + "id": 2857275582367557, + "content_hash": "21ba55ac89c85e835fb68ddaba8b741a6d7405809fb4653da15d89ee1d46ed77" + }, + { + "id": 2857275582056261, + "content_hash": "173e7aafce7a07547a8336b799503eb63fcddb58dc424cbd74aefdee1a3c8e66" + }, + { + "id": 2857231782332165, + "content_hash": "cbc54f882e9188a6fd995c667c6a962289d18dea57ffe0ac4a2fdb6a805be312" + }, + { + "id": 2857222442927813, + "content_hash": "07e7dc69ce1d99d9bedcac0a8c3986bf74871abab0fad44b16a29a40b4a0f155" + }, + { + "id": 2857210736346821, + "content_hash": "62b35efeebad0e25392454253e7ecbfe95db95375b7f9198c61fa65c589911c0" + }, + { + "id": 2857210736051909, + "content_hash": "6719b572c85d912a9af345b468627d47cfd795bf9e19560f14f598cdd1a5ae1b" + }, + { + "id": 2857210735773381, + "content_hash": "49070ab6ed2a6809ab0b0d081ead34d95a9c046594ba6927d5734be18a8ede83" + }, + { + "id": 2857210735462085, + "content_hash": "c8bb2941224d5e32b65983f2de875f088352f8f18eb657bb60244bc21b15b3e7" + }, + { + "id": 2857162365634373, + "content_hash": "f6ad356fad6eda24434e3bc11fc8a411fab64f7ba1b68ccf50f6ff3771782431" + }, + { + "id": 2857162365142853, + "content_hash": "f768f881a0742514c926c3962bfcfffb5eec209c3154c7fd3eba3bd4d400344b" + }, + { + "id": 2857162364831557, + "content_hash": "1265d1f57adf73805a1c7c68fdc32c659bdcb9fe9af60044ef7b0424d5b50ef9" + }, + { + "id": 2856211229935301, + "content_hash": "c16a6c7570b7bc6df8b2acea5b2919573960324f5209aae7aade8b449a82fad1" + }, + { + "id": 2856159329896197, + "content_hash": "7befbe372fb77530e5f29e79be05fd41f458dc20d20d752d1f4830a077a07b8b" + }, + { + "id": 2856147952535493, + "content_hash": "023444ba40e2645fc3cb5e1bae05f52f002c56c0875cfed75a520529a47a6f70" + }, + { + "id": 2856078921795333, + "content_hash": "d6f75c405584f8e519eb09071e93ee5525b66153242ae26c882c5331a26b2c98" + }, + { + "id": 2856064449201861, + "content_hash": "33b9221bbdea28b9ea2cb3e6053c99c71575ffe1f5d0de34aea7c4a890808664" + }, + { + "id": 2856058427066181, + "content_hash": "946e752518f11622050002b47fe3ab576e9309393546bed67b03f6dda1662018" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "mismatch": 94, + "mismatch_samples": [ + { + "id": 2857597205137349, + "content_hash": "f6606ab5ce9f739f11e8064354bc2b46ee228ec3a680ca131d98d722a590af92" + }, + { + "id": 2857565328852741, + "content_hash": "814203b676987604e8762c21da670fad2198cd8cc9bc7cbdd3a8c200fcfedb7b" + }, + { + "id": 2857563297974021, + "content_hash": "6448602af07f5dae6747b0cf51aef3912df71fced2ce303500af2f74790b6273" + }, + { + "id": 2857455042447045, + "content_hash": "33c534bdcfc93090192f1a0dce1a7785df627fc21ee6ee2ae1ebecf8a226d5f7" + }, + { + "id": 2857185785841413, + "content_hash": "4d19c70b096ffabd042a82ab1a01bab50575ed3793987de4f23b5c52c7f467d8" + }, + { + "id": 2857160722335493, + "content_hash": "5f57190ed30744230e4ab9af294895b46a58739e0099b3c22a10b8826c0c8834" + }, + { + "id": 2857104323856133, + "content_hash": "ba8de19353dc33b08d9824ab309b7f3fbb7b3a5ad0d9dc66d21818cabc5c9474" + }, + { + "id": 2856331821188933, + "content_hash": "85d676992aa4a8c3fb7c8f95b8819d56d0bdb6b4afafcdc2cc6071abda73686a" + }, + { + "id": 2856323378448133, + "content_hash": "6f8f8797490ee616ceec779954153f139227df036063cca83bfca3cdf5cd8ed8" + }, + { + "id": 2854912864765765, + "content_hash": "9401a706bf6f76bc8a8ad2dde9a5b8bcfd965509f5a9a0f23a312b10d2318504" + }, + { + "id": 2854848858425093, + "content_hash": "497b0aa2b17ed012b9b92e9bbd33e7b13dd28eebb7ac300d488f28c92375c62a" + }, + { + "id": 2853824266129221, + "content_hash": "4578cb165fe6c51933f7239733602d682a18058bc2b33450a173ff7e0277dbb0" + }, + { + "id": 2853485651742597, + "content_hash": "26ee359712a168d2719f47a7e7c00cadd6cac9ee05a38d5da7fe573fe667e2b0" + }, + { + "id": 2853187328675653, + "content_hash": "4e6cd633dac083c7313b1ba3fccecb02afbf6731a8dd493f17aed34214a7c40e" + }, + { + "id": 2852939171532677, + "content_hash": "28d2834b03f10cfc3dec580b453ef10b503af53347e926f8b4f4f13ef499852a" + }, + { + "id": 2852681491566469, + "content_hash": "21b03c5f70a69a4a13189a6087eae481d87044434aab216d4397e69e6301db7a" + }, + { + "id": 2849995927358597, + "content_hash": "710be8934c372dac5ad8dde9869c8231e7d1ebc723e60b1b635b435e76be9410" + }, + { + "id": 2848750878133381, + "content_hash": "4b0eb3f1e5d2a6f3fdc23d7cf11534ec9bac2eec0f78ded60d9531b176420de2" + }, + { + "id": 2848687407238149, + "content_hash": "bc84a3ab50fade7f43eeac78a2dd834445732bf76ecf72638091e4b99c2ad3ef" + }, + { + "id": 2847748005972933, + "content_hash": "7d257af4e4e4c46380436405c687405d192bfaa336a111ccea97d49ea98f38a7" + }, + { + "id": 2847720002030597, + "content_hash": "2a6a8402e3c7ce81ff3a0dde37e078eeb20c7ffa647f872d0b481e5e03f194df" + }, + { + "id": 2847512879270853, + "content_hash": "0dc94d957d1a54abd5340f166bb1e591802e7c7d21faeda54454bbc8f25e2aa6" + }, + { + "id": 2847509834009669, + "content_hash": "f5980ec0e231345df6316c5eeb986a06b35133baaeb4f36273e28f125e1b84ae" + }, + { + "id": 2846252157471685, + "content_hash": "14716e65784b7f65574cc46f0c17a1be04674396125673a73247dc18cc62e588" + }, + { + "id": 2846208127110085, + "content_hash": "1928ab5f3a63ecaeb332e2b851a7ca53bcd1f609829473e42a7f3c34d63703fb" + }, + { + "id": 2846153478278085, + "content_hash": "e1472ace63041c2584fb4cbcb5a88a898309de4ee431d332dadcc8ee3e8b1ed5" + }, + { + "id": 2844990565223429, + "content_hash": "411ddb1b667afdde1d2e9d825de271595ee2e1ec807de16bcd4d142c91785c57" + }, + { + "id": 2844867041496197, + "content_hash": "28bb03012c98327043c8150f8d02608c1ad16d6d8003e85015755ed449ca8300" + }, + { + "id": 2844782170098693, + "content_hash": "8b716b03dd531ee8fa46af3393d78b8ce1dd82af8b215879a77f79e9505d1d93" + }, + { + "id": 2844728833706949, + "content_hash": "630562a6241dbae1000e8fce87c104b0110fa2a0a789db4aea0dd8ff01408b24" + }, + { + "id": 2844706900003909, + "content_hash": "d2600d3a6b66974c0d8f5359770540e5de880483f1da6593efff836de1113084" + }, + { + "id": 2844401427762309, + "content_hash": "7314daa50ac4626f7b8b82bf6640cd1fb4ac469709b0f6042efd7c52d5c55b2e" + }, + { + "id": 2843295798890053, + "content_hash": "b923df98861b4e89328a100a5f10df2d87a235aad92643130ad49f5d9338040c" + }, + { + "id": 2842013535571717, + "content_hash": "cef66d6d02628ffcf335534ecd98b1ca31eb547af02a04a200dc26e1d9201e77" + }, + { + "id": 2841996019076805, + "content_hash": "fbd547f5b9e534e69ae9021f33220847509a5c4f218737f75435a5f13bd5e9f3" + }, + { + "id": 2841939011243653, + "content_hash": "921c45b99b2d531bbfa8410165bccbe9dc02f3607ff67dcbd89021bcbbee5342" + }, + { + "id": 2840823874604741, + "content_hash": "4fb9c64bbed4f83965cf0c1dbf9b4823eb4f6b2a6bc1ef66245bb8ab715ad165" + }, + { + "id": 2840745001651909, + "content_hash": "525e815d5698c331bfb1597cc55c131c9c7251dd548937fb9fd8c3a6c2126571" + }, + { + "id": 2840195556560453, + "content_hash": "90b3d01bf3277fa2c7572c900a345004d56a878adb6e7d74dd19c14c54954cc4" + }, + { + "id": 2839291793787205, + "content_hash": "26ac1948089325ef69aaa27308b5aca0ca9431c48a13c20c8b939c80a7f762fb" + }, + { + "id": 2839012623190149, + "content_hash": "b4fa36d48d1bde3f1d2eb4647bafe86b0d2dc4ec85d69ebcfe27361addf5c486" + }, + { + "id": 2837870503413765, + "content_hash": "ea437a1ee11dc387be943213d99c0aaee76778ea2c770d9e406d963f78da86de" + }, + { + "id": 2837769534163269, + "content_hash": "749ded779029edb5526c3a71c99475a78a79240c4be23d435326d06ba57d97ff" + }, + { + "id": 2837637205084485, + "content_hash": "ff8353d67dd2fe93db887b14b056ee677cdb8cdb0d9308223e5f30f825a205b1" + }, + { + "id": 2837540204742725, + "content_hash": "7f143c2cb197976db73d3cfeb5c02447603994e340822f746dcef054aef3e1bd" + }, + { + "id": 2836326391892037, + "content_hash": "a1d009fba1b6985e8b2d58e13099013d1f374a93e67b4fbbfe5cd25ab0639f08" + }, + { + "id": 2836296941504837, + "content_hash": "db2bb2475d7057aff0d9d6b5ffd33be51ad40a79da4a50afbe01d99f15175992" + }, + { + "id": 2835801587124293, + "content_hash": "f354384a58808d631341f4402613cc1117c08eb0a42a8b724788f9b842a425a9" + }, + { + "id": 2834574686081797, + "content_hash": "f13ca912265585fdc18570ffa6544e85ebf01603009deec2e7cca54812765dfc" + }, + { + "id": 2834546123215429, + "content_hash": "b067a5827be1d1d5aa32923ae62efd39e4827fb8fed9b0402d770e7cd4ae9a8d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 25858, + "total_errors": 0, + "generated_at": "2026-01-29T10:21:11.242915+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 42602 + }, + "generated_at": "2026-01-29T10:21:19.265806+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "mismatch": 3720, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "mismatch": 654, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "mismatch": 54, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 24731, + "total_errors": 0, + "generated_at": "2026-01-29T10:24:13.798749+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 35174 + }, + "generated_at": "2026-01-29T10:24:21.799259+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 317, + "records_with_pk": 317, + "missing": 0, + "missing_samples": [], + "mismatch": 317, + "mismatch_samples": [ + { + "id": 2945204668172293, + "content_hash": "ff23525a8cadf6a5562e943270c06bd979db906a05de4dcefa152f55956e459c" + }, + { + "id": 2945201408247749, + "content_hash": "175cf06ecc19e94a73f71669a6aeb05a2915208201ce1f3cd0fdd4cfb7074f1b" + }, + { + "id": 2945191805978629, + "content_hash": "ac734f0fab0c63a3b3d36fded4421db5a51bf1c6eea75b007d8b8f3b2d173329" + }, + { + "id": 2945189731633093, + "content_hash": "774e79c251727d3a924f83402b22521f4f12ce5fb3498b26cb60538ba835b8fb" + }, + { + "id": 2945182894114885, + "content_hash": "5968466009575eeb778df96ef6d6c8c64f3954205af4cc0bf6e3b78de776c078" + }, + { + "id": 2945180703574021, + "content_hash": "d5063d7ecf7113b5bf99f1e21f1da12be340196ea4a7c1f96a1ed12baaf02be3" + }, + { + "id": 2945178503038981, + "content_hash": "9fdb81f2bcc3c8b4678071624e9eff37ea1accfb3a6fd592261a86a066d56309" + }, + { + "id": 2945170625759365, + "content_hash": "9f11c8cd721fb8e1c15d62fff0cc75ab3f52ba7566881e9e06372ebeb336adea" + }, + { + "id": 2945170314774597, + "content_hash": "aae0d68b42de1fcda0713edc95b475defd1206fffc87d82e0501563624e66339" + }, + { + "id": 2945165544638597, + "content_hash": "01486c34ff703c09829a775972f749ceab7be172510fc0bfadf1c3240af9bcb9" + }, + { + "id": 2945163520985093, + "content_hash": "12e3a0729c93ae1318f956cc3c1be387d2837af143e1882ff28cf358b0820091" + }, + { + "id": 2945158720473157, + "content_hash": "14b006169b9dfb7b57e89a7472540ad41c40433ab439ddafc8cae1267efc4ebe" + }, + { + "id": 2945152643549189, + "content_hash": "b12299951385510ef9cafc9288ab361386ef89911f9b6a49cbb9c208354c868f" + }, + { + "id": 2945151456888837, + "content_hash": "0ac2ea9a44d28a421105934a1510470941d53bbc458998a77f28cc4f97184854" + }, + { + "id": 2945145603983301, + "content_hash": "dae1bafe088bcc6a699d929a40cf62a689424c4a93287584197ac2dbd5c24495" + }, + { + "id": 2945141989148805, + "content_hash": "5f16d6c4bbeb2083f353f92aa7ed1c548319d7dfa70820215a54b986afe1838f" + }, + { + "id": 2945141087324293, + "content_hash": "5ef7c8044666ba8ed14ac3f2e2786dfe01bb571b1ff5975b1b6bad7d7d23466a" + }, + { + "id": 2945141039974470, + "content_hash": "cf7d3b5f5372bc678f4bd75b3ad049a55402623aa652bcd28c48363aa7a6f63c" + }, + { + "id": 2945140319651845, + "content_hash": "60ecfbe3ba04253c5f57bfe223ea1600bc017ce790b6ae0d89aced37d5c550f9" + }, + { + "id": 2945131747477509, + "content_hash": "1bc725d7784ddb40d6c698478d26e9ab2c7b1e4fd256ae5be8105507d1afb5eb" + }, + { + "id": 2945131486234629, + "content_hash": "49d42a41d5f89fceae3d282e06d8532f8401cbef2bfc9c7f84158654cb0a8890" + }, + { + "id": 2945127772702789, + "content_hash": "7e3be126bcb2b765a4ef17f93ba6741bc47afa7ccc882097ae46ab222120b4bc" + }, + { + "id": 2945122115094661, + "content_hash": "2acc1d7f3ff1ff00833d5f026ad2044256ae4ce778aa182b9b311985b861e916" + }, + { + "id": 2945117834381253, + "content_hash": "de383855dc93ca7753133a6406134145549bae96ad99ff501f5f1fab8c114543" + }, + { + "id": 2945112963745925, + "content_hash": "0a15532d5ab30a28810e806bc5c0243e63dcc822f923892e2381774d32b5dc0d" + }, + { + "id": 2945112896587781, + "content_hash": "d89c17d0204bdea5e29751724a7489f0e30fe7f1631221e8638e6fb93039b499" + }, + { + "id": 2945112565614661, + "content_hash": "8961a45b7c2a34fc839d4b72ffc647189983a97af722221249b11dca26ad1510" + }, + { + "id": 2945111402514566, + "content_hash": "554ed778b0e299e2e2addc22df34ca99c37952d1cd77559d43ebe805a78782ac" + }, + { + "id": 2945106223138885, + "content_hash": "8adb213b874bdd33e2bb1cad94d7de22234d2c5fac3b370ec7a299887d4e8bc7" + }, + { + "id": 2945105967859845, + "content_hash": "93ba62da0af9de85b6a83672805b200b373a5d241e78d00b2e00b6f4feaaf000" + }, + { + "id": 2945101097994245, + "content_hash": "3590733e805a0e04ba04ec7efee2e59642066a1e2f00be99a9fd053658616b11" + }, + { + "id": 2945098187131013, + "content_hash": "d9e34e92b0b83fab3c1400401fa8a6ece286f4ac249b9024c6441614ec2ecaed" + }, + { + "id": 2945092769875909, + "content_hash": "a08a5ea417f8a5515d52672f00050ae2f85aabc7d86bf383c3276e10928e0621" + }, + { + "id": 2945092354279493, + "content_hash": "a2e5578f138ffeed09a107a9f736f5770176fe683d540784eae4028381a71bf8" + }, + { + "id": 2945091894691973, + "content_hash": "e4107b61d7d32a783bc49da9ad9fe43eb8f9d906a22ad18afd0321cc7e4b0073" + }, + { + "id": 2945090906556421, + "content_hash": "0350e897de651d4bbb2d785d08ebe53c5d3282208dd3454c49d95ffe064c6fca" + }, + { + "id": 2945089824769989, + "content_hash": "d7726a46c446dc5718672e5e0466dee947affb9ed65da9e0266f7be1d6c35b10" + }, + { + "id": 2945088918833157, + "content_hash": "e54361cb566421240e8974b457c61e66270cf553dc52d6292e1714b714a68bf9" + }, + { + "id": 2945087120279557, + "content_hash": "05789a2e212e3556dfb8b3b3244272e8803bdc23d38aa2a6ed2df222cfaa5c52" + }, + { + "id": 2945085344237701, + "content_hash": "adc2d636a019ec65accc14e91d03058f7e6cfb20cc633c54220f1af2eefbf6fd" + }, + { + "id": 2945084806465477, + "content_hash": "36368835b5ffe236383f700ca33c06c55adfa5840683c959b1d89e371720ae4b" + }, + { + "id": 2945068993906629, + "content_hash": "ec58a5b8f391ca1b8f546f705f0bfd6218816d61736cb91078449737af12c966" + }, + { + "id": 2945063041697861, + "content_hash": "e3e573fb26d93a92d7431799cb31960fad135a3e0c886554c11228bbb7d1f7a9" + }, + { + "id": 2945056179341381, + "content_hash": "876dcef6bdfe5d9744b88d4644aa9295ee6c2e1f615063e2f6e7bbf0ecb33098" + }, + { + "id": 2945044294322245, + "content_hash": "f0365bd1e17ed855a1796b712f7bc2743420e5afb5288ff55fd1d463d56c5bf5" + }, + { + "id": 2945044010125381, + "content_hash": "e9465e504dfd4aa317bf9d054891ed8d060dd2d13502788791d4cfbff2068c1d" + }, + { + "id": 2945043313887301, + "content_hash": "0dfa963a6c75f53c006045583605aa4a56dec5ebd8182ad162d118b5fea6807b" + }, + { + "id": 2945039983511557, + "content_hash": "ebabca7e7a5df3ad276ba700f3c4d6af8f056b74a93f6ddf1730773a71aab603" + }, + { + "id": 2945037148932101, + "content_hash": "d12bf2dfeb3ea8131f9b4cc3e7d8865efe21cade2384377a67c2c2ae5e05f225" + }, + { + "id": 2945033889450117, + "content_hash": "05832f8f81dcf44ae6adcbfb12a76422bb96ad8d2fafe1769d46f1d81611913e" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 61, + "records_with_pk": 61, + "missing": 0, + "missing_samples": [], + "mismatch": 61, + "mismatch_samples": [ + { + "id": 2945178713507909, + "content_hash": "589b733b1fa49c5f929a0e23843924ffd7dab0413143925e70cd74510d9f5532" + }, + { + "id": 2945165726140357, + "content_hash": "bbed3d48be254737d7ab632366be06156eb91696a97fb3aa9b7a7fc7b00cd5f4" + }, + { + "id": 2945112764745861, + "content_hash": "28e5c41bf0d2e1a2361ba4b75d6db53574e328025d138afc8c729a267c273659" + }, + { + "id": 2945085410494405, + "content_hash": "4aeb715f96113cfa04d3550df82b0bfbb42d29c9b382d680dfe3a5abfa2a448a" + }, + { + "id": 2945085410166725, + "content_hash": "d3f607c7af78e364fac22470d432e4c9e31d7ccd778d8903921b124e315e750d" + }, + { + "id": 2945085409839045, + "content_hash": "f9c3b1b65955801fef5be2562ab9de664ccd9e74c5f9b5c5c6a623fd363262fc" + }, + { + "id": 2945022155688069, + "content_hash": "faeaa7cc1724e0780f7987c6a77b1f7e17eb3f1e64864e0d7a739090dbc84bce" + }, + { + "id": 2944995526166533, + "content_hash": "2ddc642f9b0e60ec4442bade07f0ae7277683e3655cf93c8317a92694592d6a3" + }, + { + "id": 2944979152177221, + "content_hash": "d0244a11dda3cf799e0e71d9a49035c2b20c7ba1c14b224bb94fee049ac08fda" + }, + { + "id": 2944978182408325, + "content_hash": "4f290cf7c803c7019f512bcc3a423481d804cbb045ca5eb0cd97b5df4cf0be2c" + }, + { + "id": 2944863805720709, + "content_hash": "3582b9da8213d287c075733779cf737b811bc3e1bdb83a9085221cd29fe951f8" + }, + { + "id": 2944745580316613, + "content_hash": "9a68ebb273e05b76de12771c49515cf9f2e54a62ec72f06d494175646b03f4b4" + }, + { + "id": 2944745579923397, + "content_hash": "7e8ffc3214a266c020400f1626562ba6abb4d3a10a6642e0548e93ca31a1d499" + }, + { + "id": 2944745579497413, + "content_hash": "c5854e2f65f157bb681f6d805afaf9b839894cb0abcac29d6814d904ed2b9d54" + }, + { + "id": 2944745579186117, + "content_hash": "6c644ed8026f44dbf95ec4256357ae38eed0015db000daefd29f0c7d1048b40d" + }, + { + "id": 2944736432752773, + "content_hash": "06923a1f99570c70f398600b97f0d7fd49828c55663e8eb8a2ed8ffa220be3b3" + }, + { + "id": 2944736432392325, + "content_hash": "7476695fd54fa41925657a9ed8bb64455a282ab26e0b05988bbb77124d36570c" + }, + { + "id": 2944044330241925, + "content_hash": "8ee5b73a6a6b54911cbef05da33a80fe15fb572c99c9a6a7aae915ea7acb3d08" + }, + { + "id": 2944044329947013, + "content_hash": "b3b90740f31a13c215fc6060b162d3a2fb61eb914fa2e7b4b5031001db020bf5" + }, + { + "id": 2944044329586565, + "content_hash": "fb05af089fddf9025bf67c3ba731de8488bf34cfd84ba4064dc12baa51205031" + }, + { + "id": 2944044329242501, + "content_hash": "5dd451709b45fe09e5a0ece9a30097d3f3283db6c69931d63154b4ee7f50289f" + }, + { + "id": 2943941269164101, + "content_hash": "861f608bf6a89fa3c61eae3e1485c6fd5cd6ebab48e1eb2b6a51ef8b9e95cb5f" + }, + { + "id": 2943869443739717, + "content_hash": "bb92895b62c125ae7a347b50bfdd01b3ce6b07832d65fa5a0cb3bada24054597" + }, + { + "id": 2943831916023685, + "content_hash": "8e8dd79c83dfd6526da5b5c43e4338d47d5d0820b08b6f0288521a059e51f0a2" + }, + { + "id": 2943823635500869, + "content_hash": "bca74525f6cc06b87021e544d1155e0d87ec690e29806c19bd69261b081dc79f" + }, + { + "id": 2943820475092869, + "content_hash": "d87c7217898c83c16809638003f062c05cee266229d43276a03b13d90abc64d5" + }, + { + "id": 2943820231282501, + "content_hash": "20a34c9d8d27b4cea4fd1560ffa3159a5ca69998974f1897b6ac569d345def71" + }, + { + "id": 2943802963169349, + "content_hash": "89442895ab8d2554c6d2e82702ba5f8edfe199a7c83eec3afe2ba78e486263d5" + }, + { + "id": 2943802962858053, + "content_hash": "cf3078346750b84a2d2e68160f21658fadfe2248e5c3300f52175bbeb62a118e" + }, + { + "id": 2943796812484677, + "content_hash": "549f0e08ca2a9ba052d6594055b34c0b9519b4eba57b715d5248450e33b9d924" + }, + { + "id": 2943790057689029, + "content_hash": "b1638aecb921a1af50f743460ef0cd8ef68bb70a6504d6d21e8559a938a6de16" + }, + { + "id": 2943790057295813, + "content_hash": "09c08ddbac62f653b5e54a0ab5cd036f00864d53fd1ab4c8536cfb7ecb31477b" + }, + { + "id": 2943771106250565, + "content_hash": "613fc98749bf04cafa181cea87b8510de52330e45f11b1ab644b1d3912265a11" + }, + { + "id": 2943654372134789, + "content_hash": "2d57ec2f1565992049ba12f904bbc51ad968b48243f66b3f9d8795f9ba73790a" + }, + { + "id": 2943654371823493, + "content_hash": "7589ee63f44ae3c93e223b2ae28979126d5688cc61583a5b9c79bac3f84a9c84" + }, + { + "id": 2943640900603973, + "content_hash": "eb4b6211ded5760b20dd281b3010658ebdc815845418e0e81501494fabc5fcc2" + }, + { + "id": 2943563126853573, + "content_hash": "944a85939871bdcb1cd2088adb8941d14ebc594f7f2296c070309c86bc0c7c5e" + }, + { + "id": 2943557818191941, + "content_hash": "45cc1a992e5a084858bd0d2ef293fc4c991e8c35a4ef5806051b92aae4054d44" + }, + { + "id": 2943465910325317, + "content_hash": "b3298cc6ad76ea7805baa998b92b98130a33a6f3e7b74d8984935ae0b9468e4b" + }, + { + "id": 2943438601064261, + "content_hash": "eb55f5eb67fd909cea5c656eeee9444d9eabba2d56dd57c0f0c61dbd19f8c404" + }, + { + "id": 2943407127564101, + "content_hash": "5c9cc50056508fba63f5f86ea90d6a738fff1671331710b756bbfe87ad8cd39e" + }, + { + "id": 2942708034097221, + "content_hash": "7be382e8edd581f58b3dfb1747fa693c7a01e1fc9bd8011f7b0ef20e012bac08" + }, + { + "id": 2942452376244165, + "content_hash": "24f6425bcb083c3f95b14c730a884244993290d879de3b71ee7b665f2db262a8" + }, + { + "id": 2942437132767109, + "content_hash": "f4cea74362e8dbab972833e888ee61235d68023e62fdddf6bdeb62c940629bb1" + }, + { + "id": 2942400615174085, + "content_hash": "c9b35e732957308d5f33f8c5ee57721aa6d983fe116a7b6b374f7a1065cd7c08" + }, + { + "id": 2942400614764485, + "content_hash": "0788c4041c3cef7a684d3875b410f9c0ec3f958481ea528b01606ba3ef160088" + }, + { + "id": 2942400614404037, + "content_hash": "77159d461422f5b6a5708e9d288fa8367c0852998db174e50e014d48b6e98223" + }, + { + "id": 2942400614092741, + "content_hash": "ad49cafe6981beb1c112ae3d8e1d2a92e821f9f08aa00edc08a74f3f19a11f46" + }, + { + "id": 2942400613797829, + "content_hash": "7a8b9500403ec1d5462c30f632076ac336f68128024218a466858ffebfd918e9" + }, + { + "id": 2942400613502917, + "content_hash": "701d32d2c2e5c00551df916eae939e13098a3b9ce46b78f401bb33e883143eb5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 1, + "records_with_pk": 1, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 5, + "records_with_pk": 5, + "missing": 0, + "missing_samples": [], + "mismatch": 5, + "mismatch_samples": [ + { + "id": 2945086921656261, + "content_hash": "ae94d3b1b2eb5af645d48ec01f9f5e56ab2673042b33850653ae0bf7b66fadf5" + }, + { + "id": 2944744609302533, + "content_hash": "bb3b7cf530ca7a95d8080dae757b3987ae57e32ed5998239903a7fe4dc38b464" + }, + { + "id": 2944743805700165, + "content_hash": "d85ef07033e51ee63b710f0df84ca2abfd04e55091608a9a25c599c3f0e5df00" + }, + { + "id": 2944743412713605, + "content_hash": "40140e93cf91773baf6703fbf7c92e0cf7cfe1c12dcda979489b7e5587b4f904" + }, + { + "id": 2944055920218181, + "content_hash": "c166350a317bb5c53dac624a1c2ba60e679864a7eafecef992c527bcdf1896aa" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 539, + "records_with_pk": 539, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 322, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 322, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 20686, + "total_errors": 0, + "generated_at": "2026-01-29T10:26:43.400561+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 41710 + }, + "generated_at": "2026-01-29T10:26:51.147476+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "mismatch": 3874, + "mismatch_samples": [ + { + "id": 2987664092500677, + "content_hash": "326b49398bdc4c24f72a8a20c0b7ccc4bcce4bb06730b7a8763bd443f521bda3" + }, + { + "id": 2987663077362373, + "content_hash": "4f86f1ec066cc1a92e0af69c226c5d02a65e0d44b1bc4fd829dc0b406cddcb42" + }, + { + "id": 2987654698209861, + "content_hash": "efbf859120b55c87bbbc2e4e8dae952d0095468ede82a359f334638893d990f2" + }, + { + "id": 2987652991128133, + "content_hash": "e30ff0081847b829a110081f6b7dc6f6a17332247a3c7b2f3e9b94a6027c5e79" + }, + { + "id": 2987648825152197, + "content_hash": "24f07f3ffcec41d9271ddb38f0c90f3bcc487d45e95dbda6999c6d89a07c641c" + }, + { + "id": 2987639361178245, + "content_hash": "0a9533619605c73f5d24a5db7b8330cff8a39f7f2c053471943d7ff38e7195f3" + }, + { + "id": 2987633957571269, + "content_hash": "6d50a4fee459f8ae3c41eb6a35b31e29a135dcb9192c4717985a49108ef6fb7a" + }, + { + "id": 2987620103686789, + "content_hash": "7424436626087647e49cf764b065941c9d3a42aabed907caa23b37b7f4b69009" + }, + { + "id": 2987607445262917, + "content_hash": "861ac542d05ee1baeacce16a6aedd78e0670661692f3a0324705b689f8d11e06" + }, + { + "id": 2987592132676229, + "content_hash": "a9fe11a9afcd64e437dce66f7b3acbdf0827fdbde81bc5d6643273af9eca899a" + }, + { + "id": 2987588384281285, + "content_hash": "8f46c5c4297f1fb5ea96c8e64fb6f1d9a0329c729b6dabc29ef2a6cf29a4625c" + }, + { + "id": 2987586189773445, + "content_hash": "f1d4a1df59121902fd9fe0ff34b25abab093d7498e8e39a41da7595a5d3f3297" + }, + { + "id": 2987584085643845, + "content_hash": "e005ca26c978342fe869afcb029c722239e84bbb5e49138857b5d40695cb45ab" + }, + { + "id": 2987582301080197, + "content_hash": "98c40b3518530b6693197b8c86d7847a6069d6d00288cdbbc47f05f78bfe8285" + }, + { + "id": 2987581875032773, + "content_hash": "3e64e268f14601b3f2fe1b95ad3404e6322db008d03fb5ce6ab56a03f113638f" + }, + { + "id": 2987578047924933, + "content_hash": "b081e6f8a09695875cf664675af5aa53ac42eee405790713dc349d1582ff7274" + }, + { + "id": 2987577171153477, + "content_hash": "a6ae5825b68ab2cb3be9289cf4daced9c5065cd7e46cf5019cf8dd0fbc5fae28" + }, + { + "id": 2987570888331973, + "content_hash": "07275cae4715a1c065d459c6347954ec87cd8471ff6b706c6e22092ab0800a05" + }, + { + "id": 2987566778487365, + "content_hash": "2d7450cb2586747fa27f6ff47785ce28bddf8bcc601d45f90e35b185445e0613" + }, + { + "id": 2987561781973573, + "content_hash": "f159d7b76229ff1d9b79ee31307720a9358aa3403d9c646a23d8d58961c56e8f" + }, + { + "id": 2987561189118533, + "content_hash": "ffdf26cce919ba853b3f2c41e54b83d5b3737fcde421a3296f135397ccb4559e" + }, + { + "id": 2987558686691909, + "content_hash": "e4b704ee294f59863d2de16537903e8d1a25cea383fcb21b87b0cb7479885a69" + }, + { + "id": 2987522603141765, + "content_hash": "68554d3ddf00d4e07a6f66beb88eec5e10391e29eaada3e3e68ee4940661d86d" + }, + { + "id": 2987519252712133, + "content_hash": "e37905240d24ccb1688418f0ce16eaa0bb1cd813c430caea36dfea616586383b" + }, + { + "id": 2987519191468677, + "content_hash": "3bc6d277ef1bf31df8179b63ec34e8c5e1fbe3d9836461893e9cecac4a412eec" + }, + { + "id": 2987514633898693, + "content_hash": "00f0208cf7b6a93455abe0d80e84e22356fb999f65fa8eaa086fe0438a34065e" + }, + { + "id": 2987503060535941, + "content_hash": "a475a22494a0aefc048c05186eab8dfcfbc96ab8d9b3b9c210a78a6f27a300d8" + }, + { + "id": 2987501265752645, + "content_hash": "522e4f911d06e5734b0eeb03d9c7484f6dda5c61aed563b3b56ebe5de6ccdef3" + }, + { + "id": 2987499595008645, + "content_hash": "f0718ef7bffe0e64288acd793856f2f6b922734b2f688aebd61c7c2b8b553484" + }, + { + "id": 2987495092390597, + "content_hash": "cbb6a0400e493f401a83ff1adac30b186953193c07392e0900c98b57317409d8" + }, + { + "id": 2987489028838085, + "content_hash": "ebf1c7e2bdc9782e1399cf472a6cfc655efba22e5df714c952be6c620bcc896d" + }, + { + "id": 2987460555688581, + "content_hash": "0ee6d12fd6038a3a61ee754307ae1d6ed428fec912cdf942f5c97c5ffc2d6506" + }, + { + "id": 2987457814399685, + "content_hash": "684221e9399afbc4b46226c13eac6b919f382d6e5874eb3c22c775b284405d7c" + }, + { + "id": 2987455436655301, + "content_hash": "8dfed4f17d3a9349efc672260353ce22e5bb77a439edf4f6bafc2953b50797b3" + }, + { + "id": 2987449433920069, + "content_hash": "c48768efc6e480cf635d5837be37a0240948b8b78820f293c24169f4fbcfc4b0" + }, + { + "id": 2987438796755653, + "content_hash": "f3fe8ee5a35429b482c16491da2ad04062a73353252dec7580dfad8c52324f63" + }, + { + "id": 2987421725018757, + "content_hash": "c33f8b43f625b9d721b9b797407f3f65bce7c3ea1d2c825b449ffcbd2ecbc97c" + }, + { + "id": 2987408042218053, + "content_hash": "5b8c3c85afce6786c9dd1a6ab7c9b9cc239364951fd5e5017bb1e65c9d7488d0" + }, + { + "id": 2987402534425285, + "content_hash": "49e2a55a5f4ef051c99eb90a4a2a3180edf5d2e49358102aadec1e9ed4d9df9d" + }, + { + "id": 2987396039084677, + "content_hash": "697c93b8180196061d9dce8fe29c0742a74abb40abb864b1009d652ef046ad9e" + }, + { + "id": 2987393076253253, + "content_hash": "ec84f3fbdab7c968f82bcb103c5c2b76a18e784191a007cac5c8598c7039b69d" + }, + { + "id": 2987388705641157, + "content_hash": "bce6efcb37c731377bc171edc3be0ca5ccd84e72a6f9d6e03f0d4b264c9d81c0" + }, + { + "id": 2987379205130885, + "content_hash": "4bfea9654e6054069639f0e5d001252af46647b2230a22cba451f3de40bad0e5" + }, + { + "id": 2987378420093509, + "content_hash": "09b11f6b1568739a6b9b83aa9f3d6d8200a2ef99f32d11ba8e6411408cca0a4a" + }, + { + "id": 2987367534236229, + "content_hash": "b17c8ab98d1df0c412f05a320635e7c04fca3036818bed999496d0914b4e0303" + }, + { + "id": 2987353674549957, + "content_hash": "289824cc1286ce8dbce65c90a5a60ebadd9a65bb4ce4fa8bf3483907d30eac39" + }, + { + "id": 2987349953399493, + "content_hash": "23a3acdccf3a8794b7c45bc8a9319e346c1c92558ed6efcafadf4484f4f887fb" + }, + { + "id": 2987347059790405, + "content_hash": "8874ea4e33c87c414c54b6351aaed4012e7908c2ad8f949f130c8b3503478b47" + }, + { + "id": 2987346537370181, + "content_hash": "c2b141b28705ecd8faba5d4a6114d227c732e1a70068035e6a676361d45db1dd" + }, + { + "id": 2987325464678981, + "content_hash": "75977f36fc214a4c983fb41ec7ce87108f88925572f81bb1f91cf4878cb3f779" + } + ], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "mismatch": 884, + "mismatch_samples": [ + { + "id": 2987663460700741, + "content_hash": "e315c5bf90846df76fa924b913c11685b71b03bfa8ee5e95a6a4b7832c1fd04f" + }, + { + "id": 2987663460274757, + "content_hash": "0bc18f1928a2c91878ff54538fc520893d3b9f70f27a9f7e87f3227b95beb2c1" + }, + { + "id": 2987663459832389, + "content_hash": "29d54bb5b83cffd600da0ad092cb637cad199b7ce8ffccd09e13cd19f8ebec9b" + }, + { + "id": 2987663459471941, + "content_hash": "25fc62cb3978ac77852f5f86cd72c58db8effbd038b6e75dc123330ea5493752" + }, + { + "id": 2987653170547397, + "content_hash": "4b43d2d53dfa4bd34790c058b48202666db7b5d230dfae7c48718150ee15a6f4" + }, + { + "id": 2987634281417413, + "content_hash": "48792bfb460f1480d55adc55573666e0294c5f443f9802b88d7d58be51738d7f" + }, + { + "id": 2987586289109701, + "content_hash": "20e0a388c9553af04694972be86203f012efd802bfe5b6228afe8183e2faf5ee" + }, + { + "id": 2987586288716485, + "content_hash": "d5bb1ba0f7719fa5a5b57130079c8b121c82ddc4bf2a28a92fafb043237ef6db" + }, + { + "id": 2987499743824517, + "content_hash": "dbec4464aa26c822e777160ff7a18c884ac50e4213218cbdae9f660119e0e41f" + }, + { + "id": 2986678250670725, + "content_hash": "2375d229452be15f0fa7ed4802cdfe0e6af18476309a9efe4d24cefa383c4ff4" + }, + { + "id": 2986482185095877, + "content_hash": "a596223eedb3c60e7bb5542ca4162018a9038a1c87e5242edfd8cb3514ba6bc9" + }, + { + "id": 2986482184735429, + "content_hash": "6df5c1b77324d2f61c8b4ed4954ca9df22c768bd6c2dfe8d87a2355a7149bd44" + }, + { + "id": 2986482184374981, + "content_hash": "31c58ce250a4c12ab3ed4f329eef26ca6fe3380555391be01e4c1cbc21ec9ea9" + }, + { + "id": 2986482183965381, + "content_hash": "2c8925212d495cd71da8bac760a6bba6712d59b6e756d31e35fe24e361c58622" + }, + { + "id": 2986482183604933, + "content_hash": "8cae10a4c04b88438f9466aa9bfbaff76d0d67874ff304e4d8c588753857c154" + }, + { + "id": 2986424503093893, + "content_hash": "38db526fa74b8473ec8baa2977a9b96bf096f84a9da867b30854945822a3c480" + }, + { + "id": 2986424116466373, + "content_hash": "55ce460c2dd47c049c172afab5a2f5e637fcbfd901c6c7daf97a91bd07cd4367" + }, + { + "id": 2986424116105925, + "content_hash": "f2b03fb538482ed018a496c09d36bb3f6e67f2cd3134898cbcd86efa2fa05d66" + }, + { + "id": 2986391265481413, + "content_hash": "d10ceb55458a6b9fbe8c24601a51b5d1c9c3bedb2780c168918f6d1e375907f3" + }, + { + "id": 2986365173732037, + "content_hash": "21eb1d57f253d556b52778abdc867c1525fe9f66f6e1d300165f22186a1f7ec9" + }, + { + "id": 2986355294065221, + "content_hash": "7076421b410eb3e23999d75ed8f99466cdab498d14dd079e1bb680c82c314afb" + }, + { + "id": 2986341875878533, + "content_hash": "bea4cb01272aa72b72c8c65286cf803cafc524f34f60e3a7fa28ba01476cbec5" + }, + { + "id": 2986315575825093, + "content_hash": "c9639f759555b95f09e6e77462874e13acc24e4d128a94d018b92632cd42d824" + }, + { + "id": 2986287314440901, + "content_hash": "329e61946c99c054df9547e4e6244af49a4716a15427886fa33fc4fb5989e932" + }, + { + "id": 2986287314014917, + "content_hash": "d9895b468c841ff6772513e529bc15478a4ecbf2564864a12c3b9c609f24ca03" + }, + { + "id": 2986264035611333, + "content_hash": "c84a4890b60ae7af9e103e59cc5cb9cb0f8194124a098d5e550dbfd5f8333ff4" + }, + { + "id": 2986177659163205, + "content_hash": "074b348f83ee542d1d28b37fea7095117718c6a9a26d07fa5908f3f2f459c82c" + }, + { + "id": 2986177658802757, + "content_hash": "9026d6507ac831f57c0f4d986e85f7129f471a34e5463d4a97a7d7cd353bdd53" + }, + { + "id": 2986144559958661, + "content_hash": "881bda0f404005ef028e44e1399294123da8bca8664eee20ced7676a9ed80fed" + }, + { + "id": 2986126991182469, + "content_hash": "8ab9f3563bb350aa2243908bf0a5cc61f6839f78c5fd45fc83cd8a860f0f8b23" + }, + { + "id": 2986083544255173, + "content_hash": "da212880bf25a254d9f946a20ed604a0d63f0709731ec5c7dd06801d8ec4492b" + }, + { + "id": 2985985925171845, + "content_hash": "d22e95e9a73f82b8d22a820ffcb9727f5c007c8fc1ecfcec8d957f8c10d6c69a" + }, + { + "id": 2985898409544325, + "content_hash": "a4fa2411695306ec04223ed2af7a99f8742484bd7e81c0cba0bee6d125225ebb" + }, + { + "id": 2985886071032453, + "content_hash": "b75fabb7236c201c5ee926d58ac209f5cc10f924d49fccebb208af44dc267cea" + }, + { + "id": 2985381807131333, + "content_hash": "cf1c965fb8d5c5e817cbe412e020d78f99e5fcdd591958e72df88fad9356efa6" + }, + { + "id": 2985381806787269, + "content_hash": "ea64dfeaa9fd1d903960f3ec67cb88efe718c19581dd47486bb25114dcea49fc" + }, + { + "id": 2985381806443205, + "content_hash": "9d56aaa0d9f590f344466775e51d620445ab712c3b2a4f3b21d032b2c83cc0c5" + }, + { + "id": 2985381806082757, + "content_hash": "fa974be65e78c4db85e7f49d3a6e05d8be441a8f40a57385b2b464363d01936f" + }, + { + "id": 2985381805738693, + "content_hash": "da7a899c6c410202b6f5b5505f1d0ac8fa100d97b77fff450ff2a51e07f54835" + }, + { + "id": 2985381805394629, + "content_hash": "508c9d64d26945894289ceed8362a96a2efcbe21c8ba5bdb92b6b57994b347b5" + }, + { + "id": 2985381805034181, + "content_hash": "990028e514037473f0faae0d1b81db64ed9c3f6a7f11c7af7900276b52bbdc6e" + }, + { + "id": 2985302363802245, + "content_hash": "482a12a187af0881fe88c03390687213d6b9657ab871ebdfca1e69002d8d1720" + }, + { + "id": 2985302363359877, + "content_hash": "97f1366e8e88d0cd6b656d9da35c65746bcda9db4c84e748c796811b231645e7" + }, + { + "id": 2985290875048645, + "content_hash": "a3235f918da1f511325f2b6ee98062af41df6668fe6060f8a9432c48e6156370" + }, + { + "id": 2985290874688197, + "content_hash": "c16bdf6f0fe096d1d117c634121c0db7e9dc1ad577dd1ebecc66b6aaf1fbb24f" + }, + { + "id": 2985030135204549, + "content_hash": "ff6d258de4fc531cbaf4873c4cf811cf68d7fdec222ff67006b38e05fb1638ed" + }, + { + "id": 2984949344277061, + "content_hash": "b2d91041c590e54e62b8e5e70fd33ddf29b887798e77e97aa1fee54483675b95" + }, + { + "id": 2984949343801925, + "content_hash": "3fd5b28740bd5f242630de0490383cbf6d4f55875b403268f82cd1ee376d7488" + }, + { + "id": 2984949343310405, + "content_hash": "f1daf23b6beedeac9c30cf2ca275b55ba576799b79a973839ccb5f19d084eb57" + }, + { + "id": 2984949342802501, + "content_hash": "82459b7585d58113bbb8582385390503193294c1f5209ef319e2ff5d8fb17504" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "mismatch": 80, + "mismatch_samples": [ + { + "id": 2986677313868357, + "content_hash": "cc07f6d3991f5fee63a289fd016196de4f3d41f108a3f5b30e5d8896c9e4111a" + }, + { + "id": 2985941619888837, + "content_hash": "68f6453784e36f2f5bc32f8cac656e22c95288a41a6942e455cb373fbf74e421" + }, + { + "id": 2985380898411077, + "content_hash": "982452b1d507612c83a303952a5bf88284b61a774e713b17434e5953d4347b2f" + }, + { + "id": 2984898600487621, + "content_hash": "94efbadc6d6b955c92fe0b26333d8dbfda6d752ea33e8996560ec142af3fec77" + }, + { + "id": 2984856291283653, + "content_hash": "c3797d7e863a407ebe261550f65f9aefece32e7fcc8d5bddea854d043d08de0e" + }, + { + "id": 2984799421616709, + "content_hash": "0e43a6505d49416760d1dcab3f08a7a1e1878c1c0b09c6f01c5c16f3887ab3c4" + }, + { + "id": 2983452384971461, + "content_hash": "1bad0199d8a66087ab21b6f5069b1e951a5d5ae9e7dfeb485143e758686c3a80" + }, + { + "id": 2983144485210757, + "content_hash": "b32792fdcca06b828c590d743e2b5f328546aa01aa389af23b6c055dbf39e48a" + }, + { + "id": 2982031611988677, + "content_hash": "6d1942367320e2ad0023a4321867cbf99bbce7d5ee960082d87aa93d6ab48ac0" + }, + { + "id": 2982018382271173, + "content_hash": "9814c3c1c65b5db4d74715dd3cc758795f8f77c908e68b853a4fcf409e8d886f" + }, + { + "id": 2981925220717125, + "content_hash": "53e95b65966848ce9a85bccfc46ac136d3eb22ea7bb370eff190edbb94744e8e" + }, + { + "id": 2981788225933893, + "content_hash": "c3d35e9ee7ab100dc7530614bb5ae34e5d3ca8d9e80a588a0123ea14b3ca8cb9" + }, + { + "id": 2980722435983685, + "content_hash": "550c892046064b770f4cf8229c586fd4b1004f3041ea40f12dc941c32dbacd2f" + }, + { + "id": 2980066463499717, + "content_hash": "f0ce732ba1fcbc857d92125a678f91cd356a7d81a619f8403eb7bfa5110dc463" + }, + { + "id": 2979066984990789, + "content_hash": "8bd6eb4299584b9f7770d538b026d70d83ba411dca5b9e0480fec9f4437f0647" + }, + { + "id": 2978789978572933, + "content_hash": "e4ca24de714c215ba97a8b299f4b234d3620483301376eef3d9c645e3ea37883" + }, + { + "id": 2977461355956357, + "content_hash": "ddf55f51b4b15af59a7bf98b3e1d2b17c4dc1f5c105ea8f7900bb7c7edd6d5b5" + }, + { + "id": 2976471067346885, + "content_hash": "155fdc1fd460376d5ebf8a526c06f58269e8dd33f7d79344a5afefdebd038e0c" + }, + { + "id": 2976465941923781, + "content_hash": "a5b87c9f26c078f5af84764859f0c781e9b3abf4f82ca6c1f4a0265924f8a21e" + }, + { + "id": 2976403670828997, + "content_hash": "e9fe4901829f55d9023465e7aac970b66c608a314df6e8dbcc47721275420104" + }, + { + "id": 2976395099113285, + "content_hash": "40ee4cbe6aae255251aa6f638b4f7d42b88867f760ef3a1ddc8c943d606987d6" + }, + { + "id": 2976377255905349, + "content_hash": "2022daa8e194107921b2af00e2311b7acde1b689e24073368d717cb9cdfea9ca" + }, + { + "id": 2976362439329733, + "content_hash": "4e7513cc02ed49a62009911198735665f0045150d22cd04f2b117ff41af8565a" + }, + { + "id": 2976268497094725, + "content_hash": "af3f9f44fbe793f9fbd145678297dc0bd18586ccf0d7da3f5354bb8b3d812db1" + }, + { + "id": 2976185479891077, + "content_hash": "1fb1bf70cb151c25b435b1081fa39639623aa368c649751a97cf195feb764b3c" + }, + { + "id": 2976060709603141, + "content_hash": "3f3cccc0206c8cf133b424e9c4032bb1cca8378186a2e3be8ab4cc7cec35f82c" + }, + { + "id": 2975639522907013, + "content_hash": "901e89772d00a06f3e7d586b87ad4adcc7c4cdc089391880284dc2dd2a990ec9" + }, + { + "id": 2975065779901381, + "content_hash": "3b8a5abecc800d1bb15687f56136718b9547491fefc19a9fcd28ef3d3a2b50e5" + }, + { + "id": 2975012817359749, + "content_hash": "c77a589dd58295c36e7bc77b204e4ee8b07ae52de5eef3670113243a8a6ceb8f" + }, + { + "id": 2974770844734277, + "content_hash": "e303c6d5e8c877bb9f5fdb4cbd887b6a77600ed5cd6260f72544436d845e23de" + }, + { + "id": 2974179320681221, + "content_hash": "8b00736a299d870a753afd291973559af0168a74d1786ee1659f93ac004834dc" + }, + { + "id": 2973596878050117, + "content_hash": "d77d0e02b8809f2b2179d6d7ca6ea045cf718acb26d2b7f28f460ea0d3d2ec38" + }, + { + "id": 2973596582482821, + "content_hash": "7ae3bfca722179c7d04b469f848c586e3c4275f0fe22c60eff7cf8ec6abe60c1" + }, + { + "id": 2973596396589957, + "content_hash": "0c1108af8d9844d04f36ba287534234237814e6cba2551b5d5dba9ff71864bb6" + }, + { + "id": 2972320622480261, + "content_hash": "16492ad5944bf03a6b66d89f70805ce0623e5ccdb5b3560cb515b94c81f61af1" + }, + { + "id": 2972037539189381, + "content_hash": "ad339158f91356f60ba517a8d57c7b2a920f4e5ae1976194361084ac50fb2d7b" + }, + { + "id": 2971902677291653, + "content_hash": "405fc7ae02cee4be7d198fbb90c661ac4dc4b9e484319b160c19cc4cd2a6f2f6" + }, + { + "id": 2971114465922117, + "content_hash": "f6f90bc167e4d107f6ce42d4aeeda91dd9746f5447243f796365acafd1f26be1" + }, + { + "id": 2971000773249925, + "content_hash": "9b52f435689ce17920d0afa4d5e0527ebf2a49901da313c7cd80cf7b5f137bb3" + }, + { + "id": 2970966600027333, + "content_hash": "8fe65106970a7592f45eec6122003176c9a9f87bcf4d38771e8d309c8a9b6b5c" + }, + { + "id": 2970841516526469, + "content_hash": "e506bd767b2b6f7dc66e4dd4720db047f697bb0b2d15e6832c09fa8f3c3d6884" + }, + { + "id": 2970668399725765, + "content_hash": "8b37f68117d04498628186475a5b897164e36963d39032da75f1e5ef94acb15d" + }, + { + "id": 2969416198360133, + "content_hash": "14d7ac001494ce966e822682cf8121028c9bd55188e34ebc95b6522be958c950" + }, + { + "id": 2969257323105349, + "content_hash": "16a1c4457f0062cfe45dea5db51e5702815a566a8a605393f5d6479863a41513" + }, + { + "id": 2967042296235909, + "content_hash": "3d6a3fbae4b04cf5131f3d67b2fbfa5738241b2884952e2a6fd95db056a70fa6" + }, + { + "id": 2966452584695685, + "content_hash": "e7e096b5ae26ee314fc5231a31df3eb5dff4ed728113bedf144d3754755681ef" + }, + { + "id": 2965449916401541, + "content_hash": "d5959069cd0a74da307fe466c046276dc2772230a1d286da26d4538cf67285f4" + }, + { + "id": 2965095228901253, + "content_hash": "473f1d009b91cb2fdaf7e9257e7689bc8c6a81115c9e710e8f01967e68a51576" + }, + { + "id": 2965087688984517, + "content_hash": "a2ff7a4a0189a469a26c751488283db7f4c3e87e51f2008cce2d4b60d7534f8c" + }, + { + "id": 2964868528244421, + "content_hash": "bae4d7256fd71d4cfd58fe3ff5a8017b0d8950acc79b7271868da4fc390f871a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 25141, + "total_errors": 0, + "generated_at": "2026-01-29T10:29:43.641332+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 44289 + }, + "generated_at": "2026-01-29T10:29:52.526510+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "mismatch": 4011, + "mismatch_samples": [ + { + "id": 3031553686703237, + "content_hash": "f83d7d6f73acf872968b00669924820512ab35fb8393d820d4c3e31ad22ae065" + }, + { + "id": 3031547940670280, + "content_hash": "b472d0386988e61ec0a0a5069cf3301727c1242d339dfb2465d380bedf603faa" + }, + { + "id": 3031535591836485, + "content_hash": "073cbdd10ed7f5117155dfb41a5637ce74241795673e59e530e2cfa50c53e113" + }, + { + "id": 3031529344240709, + "content_hash": "83831e9c486205fbb5c5e255d06a61033d98cfe1886f47fef7bdd63620a259d5" + }, + { + "id": 3031529237056325, + "content_hash": "bbea6591245bf57bb5f491755dcce053b0c5a6ca96a4e9561bd9ca79b6708a4e" + }, + { + "id": 3031521233439621, + "content_hash": "5428b6a77d443aef63527d59d391250917b9fb72f539b25e06e22c24b842d37f" + }, + { + "id": 3031513938643846, + "content_hash": "cf7b90d457bc69f65ad49557c96389875d8fd65fed8db394dc6dfcac79dd3165" + }, + { + "id": 3031499419946117, + "content_hash": "1788cf29c22f49fcf3df5f20898b717965e83440e577e3b6cd16f7d9ee3d5afc" + }, + { + "id": 3031486643047557, + "content_hash": "7ddc20f3e22faf7cb50b17589937b3ad1ded3e6058e73f7733210f2fef06bfe3" + }, + { + "id": 3031484182924165, + "content_hash": "f66c9b6e5996db54e6961c3ad52a2233672372afabdbb4ed1305e546f65e373a" + }, + { + "id": 3031484101413765, + "content_hash": "21e46e157710778fcf9119efe16c95cfc9b7b9590094b24413cb32445e473f5d" + }, + { + "id": 3031479293807749, + "content_hash": "d988a9cccc0fd24db2307c23a57130997f30bfcd2fdb27e0b5528e4a3fbd84fc" + }, + { + "id": 3031475511872581, + "content_hash": "474df0d2976d27b907252587e52224d2207a8e6b6a08a905b0af36df24cccd59" + }, + { + "id": 3031454711647365, + "content_hash": "bb233f7182999b3b06192f0cc990388226239ac0349e49cc6e397863704d99cb" + }, + { + "id": 3031452319845445, + "content_hash": "4372f4b88148ba64f813dcfd3851a4466c28912f7ae13e77d8c2cc4345aabdb6" + }, + { + "id": 3031450929449797, + "content_hash": "0a6bd9b9d3d5e4c03accd00306efc383f33967ab83eece9fd58d57eb5626729f" + }, + { + "id": 3031428914187141, + "content_hash": "65d4d4f56b19b18a7fdc4cf1728520648ae5b8fecfb759ac3a110cf39dd1222b" + }, + { + "id": 3031428697885765, + "content_hash": "f8b2cfa7e963eea79dafbebd18f1afcc09058451aec032674437078c9aa1168b" + }, + { + "id": 3031427656207493, + "content_hash": "f897238902fe484dcac51e0ec87b446ae23e6cb0bc9b9551a4ba4b89d847d6e4" + }, + { + "id": 3031427544321093, + "content_hash": "2f7b9450da507cf5c5e506d73ff792b6138988ea37dca5254d8a4188118ebbcf" + }, + { + "id": 3031426139982661, + "content_hash": "bdd76f5df62e1080507876e8826e100f07deed2fce3b02508ac595fda565ff33" + }, + { + "id": 3031405829328005, + "content_hash": "1901cd50fac1656f61a9f4d4d5b5d182894009a786733559e4c6fabb36f7516d" + }, + { + "id": 3031397144202117, + "content_hash": "1f4fb30235f26f628e71a86953393374ed2659c9c7f7d15a95f4a6736cde141d" + }, + { + "id": 3031397096753989, + "content_hash": "1facbeaa4c60df4826a065f66073aeec7fce1fdff32233ea5bdcd4572f92c5f7" + }, + { + "id": 3031393829702469, + "content_hash": "92eb4245b04b381a8710e59fafa5bbc5edcd184bf12a57f724a5b150c3aeb4da" + }, + { + "id": 3031393755532357, + "content_hash": "12922e52d46e3ae2e3b5f572d23225ba5f2455d4cd49387b119c4d68e7973415" + }, + { + "id": 3031387400178501, + "content_hash": "626abe7d4115ff3de8c1c8d72d05570d395ec39457fa98d3bb6d6bee778ea881" + }, + { + "id": 3031386155813701, + "content_hash": "5cdba2e972a3216e16f2ce44ec9b43c817c0b4ef913b8406d1c46dbe6e1bc922" + }, + { + "id": 3031382596619333, + "content_hash": "407a9f7c7d51ee014591250299bb03f30826fb5756e14fe3e8cd6b8aefe548d0" + }, + { + "id": 3031381103578181, + "content_hash": "af88fc8d2a8990414eb45f80ca708498a5dfff74910ee98bf26684bf282bbbb8" + }, + { + "id": 3031375158152261, + "content_hash": "c57816ffdae71517134e9befbe95519b61ebe59a0b40c3881c1547b069cf5a86" + }, + { + "id": 3031375103364229, + "content_hash": "98caf8560e6d651e2aef631dc9b162981de001c1313e780a20970c6ee30bb4e1" + }, + { + "id": 3031373667454085, + "content_hash": "374117b521f4a236a4a520f73b3bbb464c1f8da9d1fc5d33db0eade317222b5f" + }, + { + "id": 3031369533525061, + "content_hash": "a205b6618267bca5c5f655b940ac3347ba727d89cf671b52230e65ac9a4d9172" + }, + { + "id": 3031367492848709, + "content_hash": "267669ac9bec51e5c74b919cffdcebe4b2218578f4cb31dc2e16f217afbce815" + }, + { + "id": 3031356355169158, + "content_hash": "fb3c80676ec638efd389edea280c721873077288050924c677b4d1c0e62e24d5" + }, + { + "id": 3031355999767685, + "content_hash": "ceaa0e013507403d635afe04f674b2486ba8d68cf1cc7e30779f17a8d2f389ce" + }, + { + "id": 3031355634289797, + "content_hash": "ef8e6bac6a00fc08d170ef2a0eef49cb7beeb4469dca7e63e71dac3cb5fed611" + }, + { + "id": 3031353219238725, + "content_hash": "e0a1d92a213b1c25e910d4a0fcbc5542015b66d9287eb1be35b790e55f885c5e" + }, + { + "id": 3031347117591621, + "content_hash": "f6686e205c9555f837933c0b5d0cf22b410fe1b9b5061905fc70bdad4631e475" + }, + { + "id": 3031341133220933, + "content_hash": "48442d87b1d735b2e1b5572c787c4a636b3a54b5650a841f54fabe96842f95f6" + }, + { + "id": 3031339438787461, + "content_hash": "1afd474584d9f6b45fc5548c34d13bc93f7c631071e98f9c713ea96f4965ce94" + }, + { + "id": 3031338556394309, + "content_hash": "b1a47e45ef148f36784faa695c0b6c8725eac8df87a18b4d32c907b1bc082aa2" + }, + { + "id": 3031329807338309, + "content_hash": "9a54ed25136fd9c49c2f8a9848ec6cd149fb589d110e1639b56f2b0fda57fdee" + }, + { + "id": 3031315741477701, + "content_hash": "0ebe5a5d0ec95208e0f1557e76a20d13d9a1575f03e80fb20eaf4c65ab81b47b" + }, + { + "id": 3031309820709765, + "content_hash": "c34ddb1699d7f5208f7c21ed259316578c8d9446a01aa692f831be9c212e0ddd" + }, + { + "id": 3031309088394117, + "content_hash": "0eb08b95ecc91b7ea9b8d4ffaac066566eef67921f181ba7fefcf9a4c08df04f" + }, + { + "id": 3031296683002949, + "content_hash": "308abb709ab04e7710a265791be4c50fc5acabdce69951ae50021264521d085c" + }, + { + "id": 3031290421857413, + "content_hash": "91697ffac154bbee7b914e528c6ca67edf5713825a8b0b935bfb4a3cafb158e7" + }, + { + "id": 3031289925946181, + "content_hash": "f2bff2a68e5e1e5defa380d362542298cff4bcecbcf2955fc7790dd0d38e4ce3" + } + ], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "mismatch": 975, + "mismatch_samples": [ + { + "id": 3031499563387973, + "content_hash": "593d10e985ca830857a428346ff977daa1afd9adf78080c45417db6b5f31b8f9" + }, + { + "id": 3031452354743109, + "content_hash": "3b4ba5e6c06753ebb13078ff703ad8137997eee832faf6bd78b1d0d90d64bfa8" + }, + { + "id": 3031428777053061, + "content_hash": "791345b24c506d00e81ea35ad67c8c3d50a03acf472071c0a8575f7e75e5bc7c" + }, + { + "id": 3031426224819269, + "content_hash": "cf70176d9a79c08af45e3eb3e49fba57d09210618ee1685272ead913c0ca39dd" + }, + { + "id": 3031373700844421, + "content_hash": "8cb87eab2a6d5a01bbd9828ffc507e3d3c7dafc2e6fc4dedf323694336d22827" + }, + { + "id": 3031233902153285, + "content_hash": "4e9443f22515b4d18d50fbdd06beb4e2b350e25e900dba3ec8610d91c1020540" + }, + { + "id": 3031211239280197, + "content_hash": "128d390084cee432512c3e3c1c12f4d6968ad39cc307f6a0d23f59f85f87366d" + }, + { + "id": 3030482506745669, + "content_hash": "b1d7d32161ff402e0b7d50b4ff23638238b85dc29c18eb00f28e8367993ee412" + }, + { + "id": 3030328740661189, + "content_hash": "5d3e3ea0ce5915b59fec7beddeec0a312efcc46e8b212442f8151a4311e19b4e" + }, + { + "id": 3030328740202437, + "content_hash": "ed8de44fb47eb9c815fe6918159565aae2f9a06cf204bf27b37ae341d4d00f5b" + }, + { + "id": 3030304014092101, + "content_hash": "030a15e8d44f2d1623b998c930b57408c1f050a1cb5791e206ca07df67451132" + }, + { + "id": 3030270746068933, + "content_hash": "d65de33b96c25a4b6ed8e7944c1b8c0ebef8b4b491bad9c3d6c2d612e531a749" + }, + { + "id": 3030270745642949, + "content_hash": "dc6979dd80b80e437cd9a2b664422514929a5f935cd053ad09a337412cb705fd" + }, + { + "id": 3030270745135045, + "content_hash": "5ac55081e928f7f68f8d2e242e30ba223fe364971faa0241bb68780a2e24e8b9" + }, + { + "id": 3030233437488965, + "content_hash": "c2c328d953c41789497acfe1ea27e39ffa82828dcde4be05e514690e631332fc" + }, + { + "id": 3030233437095749, + "content_hash": "8e9b5f1fd05245e2dc9ae66d7d518313905d4d7ce594be6c874ae848423fcb9c" + }, + { + "id": 3030207908612101, + "content_hash": "9c38a6b22735c35c206e80fcf58fcffcb788a53d35ab348c4c27bb85ad775c79" + }, + { + "id": 3030146031585349, + "content_hash": "024ffb7c3989ba3682a301640d9938cd36120b5cc6c9e2e5a7199745bb2ddad6" + }, + { + "id": 3030126805354565, + "content_hash": "f5ce7acf136e63d43e984ee9956f9d84c54694924b2044086e6443bb2558d38d" + }, + { + "id": 3030117423581253, + "content_hash": "cc90c7dfa6bd1386a1eb9ffc930684353ca1e40d8df1b0f20ea0e51aee4706ab" + }, + { + "id": 3030103312271301, + "content_hash": "97f198c4b9411e171b2320be295fc50482c0115ac8d8a2569f4ff3f37ee7c169" + }, + { + "id": 3030103311894469, + "content_hash": "cd9a94ed1feba53c1648d86eca5f25443002d1c4c3575de0f10a87908ccc4702" + }, + { + "id": 3030086789531461, + "content_hash": "6f7bcbd3f2e8989eaa5eaa16ff05be8f0880d82b7dec6d11429908d066bc26d7" + }, + { + "id": 3030084997728261, + "content_hash": "f54bd3adb57a6c6f9a491eb061e848410d59957b09efae65bafabfd6b487865a" + }, + { + "id": 3030082033371205, + "content_hash": "8fb13e78a0c1ea4426951b737c64bf8ba101dad6c1f3ff2c4626409a5c9ccf62" + }, + { + "id": 3030071691577285, + "content_hash": "99ec18c57d4607e7f876e4aab00242583725748cb4244b9c0043cc314fa71182" + }, + { + "id": 3030071691134917, + "content_hash": "4a36e7a165012dba366ed1c6c54c62c923019a39e46fc7e204e8db78394b8269" + }, + { + "id": 3029990762874821, + "content_hash": "db23daaff1795007ef03cbee29eaa73ce092b18cbdb8de4086c0e39b738c6fd8" + }, + { + "id": 3029952331319109, + "content_hash": "15da56dc42d90ba025375bb4d1ca71bfe47adb15c1ac6eb8fc9444750fe7448e" + }, + { + "id": 3029935480064069, + "content_hash": "e76540c519de092ef582b49d0c4aa607d6591d3d632fafc0387bafa6372e7665" + }, + { + "id": 3029935479670853, + "content_hash": "c37cdf671ce31fa54a83c26a5751411c83b77b7fcbbb397bcca4372407d0dfc1" + }, + { + "id": 3029934175127557, + "content_hash": "2335c245658fdc0951d41575204373836b451bfe7771b12b816c21a55f190293" + }, + { + "id": 3029931405510469, + "content_hash": "d127bc2c62d99468d57bb83d5c771f06d4a57755b387ee33fdaadc30942fa5a6" + }, + { + "id": 3029912371005381, + "content_hash": "0f59b058069f7b3040a76cfb6225cfc03c42cdee2221681f6b41c537d1a755a1" + }, + { + "id": 3029904197847109, + "content_hash": "6d2cb968b12654d5296599921c58e4c8eee8b6afeb2b5a7a39f13455535486ac" + }, + { + "id": 3029846410020933, + "content_hash": "f24be14c8ae98412f883887250dee257c9730458b9b657b3ed1259fe0e4d1615" + }, + { + "id": 3029823293425733, + "content_hash": "265823feafa5aaeda2f6ad9071529c9e5e705f4e4e634a1568edb013cae34f31" + }, + { + "id": 3029822648944645, + "content_hash": "ccc16f746a2fcec36e64cdea201d79eed077cd6cf4664adf3f6e4d0209d6abc9" + }, + { + "id": 3029226090497989, + "content_hash": "a0b344a49c471b0a58e0f4ca5ce1e874152b83e70d06219a6495348c51055602" + }, + { + "id": 3029226090039237, + "content_hash": "068d42b7ff901b14c1dae648688a64671cf64924152e527e9aaf2eb25b5f3f76" + }, + { + "id": 3029226089646021, + "content_hash": "340d7f865c6db873dbe9b666c01cf3d28f3673bfd8c012e2bdb0adb89fa177dc" + }, + { + "id": 3029226089236421, + "content_hash": "c2401f8523c073d503af55d0c118b3d0244ee564626df88c28f011a412a82a35" + }, + { + "id": 3029226088826821, + "content_hash": "ae2b6ee8d1bad01e2e4e1aa8a7164979eb4548583e4b25a491fffc2c88b9b48e" + }, + { + "id": 3029226088433605, + "content_hash": "76b26f9d76a43c22003dd97ad891ff25a376d47bf4580a09d3fdfad20ad57f33" + }, + { + "id": 3029226088007621, + "content_hash": "928201bd05428b31359b9bfbd23f4ec626ebcc616163b201e27dec26650eae46" + }, + { + "id": 3029226087614405, + "content_hash": "5ba2c77f079f55c18e8bbe489c979ad7bb6fdadae602354169510123a17ad85e" + }, + { + "id": 3029153200162821, + "content_hash": "3e98bc77e13dd8f179ec91870fb7b2211d297335804966262b7f43cb3d7777a2" + }, + { + "id": 3029141418428229, + "content_hash": "24752009186ae993f3e35df7abe7d1073161c1caf00421a72228b3cef0bffdc2" + }, + { + "id": 3029141417985861, + "content_hash": "8b27a59664d2b1cc2c399d6eef91300a28eca997c2854cd8605907a76567cd27" + }, + { + "id": 3028849010067461, + "content_hash": "59be6932ceee372f1f55a94cb5624765ff1068719476d159df9d336f5607d268" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "mismatch": 70, + "mismatch_samples": [ + { + "id": 3031260065891973, + "content_hash": "cbb47430172eaf638ee0ad7f17495a10b7cf87791cea8a7725af52645864b890" + }, + { + "id": 3030482082580421, + "content_hash": "fc5144f308f246500c1b48c95805c405306fa9f735a8779b20d6673ac3473047" + }, + { + "id": 3029225280358213, + "content_hash": "022b155614828b521d793483141a19202e12ca92a6def592f9c1686264c23440" + }, + { + "id": 3028964616128581, + "content_hash": "eedd1cd9799f07258b86190a08e7b7902e0324bc341a61d4bc5e4a753ddfa88d" + }, + { + "id": 3028367672969029, + "content_hash": "a5b172d9f7cb2070de9c1dfc1d01c47443274e353c367684a22c4145a45b428e" + }, + { + "id": 3026062386677573, + "content_hash": "3ce4716b416656d23c44f8ff074a8c7e379b330c34cf794040c16c580f21a972" + }, + { + "id": 3023433559394373, + "content_hash": "c8d9d9710b68198f46772951d821dde3cf071b44292a9978ddd5c09be0b76d3c" + }, + { + "id": 3022926742456261, + "content_hash": "bc024f095bb86dc5bf3b6a83b557d48089ffc838929c97e2a1b3b65c1d190620" + }, + { + "id": 3022926054164485, + "content_hash": "fc0c258894bb00757beff12498c220520798e67b2dce07e075b3f92243a3cd40" + }, + { + "id": 3022919499270213, + "content_hash": "738ffe0bec970c666f06738b9c2405e60976f0fe18817d7e983bb0d12cc9f60e" + }, + { + "id": 3022566422382661, + "content_hash": "89d574012fe5a7b82356f60d4e488dfabe5eff07edf49aec8d3379444d89e6bf" + }, + { + "id": 3021815358605317, + "content_hash": "f2ead8a2776267fb8bbed6c3cb79cec645851a3b433a8e0bc667559250645911" + }, + { + "id": 3021499004766021, + "content_hash": "37ba2908bcf4f18b8ddee11850b28794b5cd33a877c3eb43c54e8e25011f72b7" + }, + { + "id": 3021371351320645, + "content_hash": "d31b089cd1b4a8cbe7c15b6a916aaa975d745ea4a72aaff63c9366a626e25306" + }, + { + "id": 3021353085454405, + "content_hash": "5d017408e058b1938e6531c277eeeae4def0704bba334edd801f697afa536e29" + }, + { + "id": 3021269617313861, + "content_hash": "737a52a2e0987aeb63b804ddc2573c07b71096c190109a6c01248974bc4ceea0" + }, + { + "id": 3017679641134597, + "content_hash": "e2fd6dca8976a544c64d1e9c02f3a5b4d43ad0245f69f027801eb2a38b99c026" + }, + { + "id": 3017481236006405, + "content_hash": "718da7123fae6acf6d25c023f78ea32a5c61cb3a94b772207e8af50d98283a29" + }, + { + "id": 3015999356667333, + "content_hash": "5b6adc7227107a09e089b9383ffa6ee1d022a4932a6a3d0a90a6645324552e20" + }, + { + "id": 3015147654729541, + "content_hash": "5ecdd2b5a7206085b6b164e9937864b4583281fd57ea141320e187287cb2b81b" + }, + { + "id": 3014723179712133, + "content_hash": "864122ba5743a72c14695545b49ac21840126082b1990dc6dfdbf2f9dfb92165" + }, + { + "id": 3013579609099909, + "content_hash": "cd8ba96775eaaf855305ba659a372f77f227aa52dbd01d2bc454dce4b0752f70" + }, + { + "id": 3013266134732549, + "content_hash": "3c58046ba2db6a5936849db9ca6a6269c8dec2792b03a7ba1bf23bb0c8331751" + }, + { + "id": 3013155050950085, + "content_hash": "ae39e9a4fc116731a6a7bf08c4bd7393d02d055e4f1ec47b70fbbfccce4938d5" + }, + { + "id": 3012857868848581, + "content_hash": "474d4e104cc1df065bcca740a46d4c63c0ffb1ef45a2551d32f6da83cf66a802" + }, + { + "id": 3011875070085061, + "content_hash": "eb29074fb754e4d8809f4e5276cfda0ce1a410a1c96edc3c1648f79d3e67bdf8" + }, + { + "id": 3011659321821317, + "content_hash": "a31e0d101866184e839177a65e9a178e7c9acfc6cf5e475f74aa9c26275a8084" + }, + { + "id": 3010829303007749, + "content_hash": "2b44a022f892f60199f350ee997b468c5baeec14d873e30c5538257d3d1e5037" + }, + { + "id": 3009303890233861, + "content_hash": "05150947bf8aad28c9c2c03c7e55788e0fcbbe2cd5cc21fb3815806ae2a88a72" + }, + { + "id": 3009051792902469, + "content_hash": "5e3bb34cca941fe7b86b95b5c8394f5c833f5cf9b79cfe52afeb4ccbc867efd3" + }, + { + "id": 3008954535365125, + "content_hash": "42a184e6817784677952fdd293309b1058c73ff5fe720df65cc3eac36bf3c969" + }, + { + "id": 3005510070650885, + "content_hash": "e0270cbc7d5857d6f3065bbfcbdd8cefb022e74db80be402d8533ee833fce38d" + }, + { + "id": 3005099972970565, + "content_hash": "1068f314177a7aec95b247c293a7c68bfaa1fc1d1bbff7653f259c0e552120dc" + }, + { + "id": 3005097233795333, + "content_hash": "3428fa8ed23762cfb5e374c6f263861fa21d4fd4254e64649c3009bcac521457" + }, + { + "id": 3005078168471557, + "content_hash": "a56251a03ae84a62d7076c2794662725647f61352c56c09dc95af8398603da41" + }, + { + "id": 3004683495114821, + "content_hash": "bb3c663faead3f41b426d69b88e0f1625a27e29bd307155db7fbccc79e283563" + }, + { + "id": 3004680012449925, + "content_hash": "848c257a17d6718a38a70644de6de04de2f9f0b7cb064b5e6bfa7930df1a56f9" + }, + { + "id": 3004595127781637, + "content_hash": "df078b78eba697bf6feab2c83c3816abf6b16bcb7a105d26c59e3ec85172eb4f" + }, + { + "id": 3004369763698757, + "content_hash": "847b599722019f3f5c7f09338709697a1b4519f55ef587ee60c29c9bad68e77d" + }, + { + "id": 3003565055185861, + "content_hash": "c41dd1d757e4c9ec9ffc74e7ea8bc907372a1cbb25b82e673fe51dfa879f3935" + }, + { + "id": 3003555900052357, + "content_hash": "46d5fb63916cf32b8599fd010adb23a65704b14c06e44d84491318938595cb9e" + }, + { + "id": 3003553510904581, + "content_hash": "3c5e1db0844782ce1b1b429662fb0b03b47ebd38361a765952620f7a016e4347" + }, + { + "id": 3003353150280453, + "content_hash": "a4e2512172b6b0b92f3d5c6fbea3d83bcd51e6114500c46846566dce2ed477d6" + }, + { + "id": 3003186184573829, + "content_hash": "fdaac8856ada242623929343b41bee78d96311307261c4c7b9ce13dfb175f8b8" + }, + { + "id": 3001974467971845, + "content_hash": "cb6bca2fa25aafd1fd2041ef1f6c67e59d5a5c25cf4c7a2d0bf00202fba9a620" + }, + { + "id": 3000438163032581, + "content_hash": "ad63b3b8d43e00c1a121e0d31abb94b34109e0a864a128020a5a2fe8cf8946cd" + }, + { + "id": 3000366606371269, + "content_hash": "52b59d720e4d9b92b7126e3a73752962162e2d5556b0df4a6790189ad66b5de0" + }, + { + "id": 3000317539961413, + "content_hash": "84a288183d499892e4665b9491250be891fec5d7d457b8bb072e9fc71510b8ab" + }, + { + "id": 2999136862030213, + "content_hash": "5a1a94b7ae4ad642306061b9897a6e93928bccf5d900e019746bbba6d6886b01" + }, + { + "id": 2999125996653061, + "content_hash": "8874838d24eb508a2a8a66998a6dcc77a70895d25c2df79026227999e9792830" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 25359, + "total_errors": 0, + "generated_at": "2026-01-29T10:32:48.088406+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 43091 + }, + "generated_at": "2026-01-29T10:32:55.875460+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "cutoff": null, + "window_days": 29, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3258, + "records_with_pk": 3258, + "missing": 30, + "missing_samples": [ + { + "id": 3071367814022981 + }, + { + "id": 3071358011164485 + }, + { + "id": 3071351468230597 + }, + { + "id": 3071300794451973 + }, + { + "id": 3071287272392645 + }, + { + "id": 3071261600597893 + }, + { + "id": 3071254220998597 + }, + { + "id": 3071238529812293 + }, + { + "id": 3071237503698949 + }, + { + "id": 3071222320793413 + }, + { + "id": 3071218843666373 + }, + { + "id": 3071205601036101 + }, + { + "id": 3071204897048581 + }, + { + "id": 3071199960336197 + }, + { + "id": 3071195400144709 + }, + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + } + ], + "mismatch": 3228, + "mismatch_samples": [ + { + "id": 3071088356951941, + "content_hash": "5e68b307438e75ce929521ca5a69478d3db5bec2ac24369ac7b27240efc1093e" + }, + { + "id": 3071084050237445, + "content_hash": "9ed9329b8f459ec19736bb36cef43957755d475cba66c24c95771c4b1b816acd" + }, + { + "id": 3071083752097669, + "content_hash": "b230585eb01f2cedaf99326ac276699b00cfe947fccbbfb7141d0a6b3a20eaeb" + }, + { + "id": 3071083395991365, + "content_hash": "8c48227d594dfacbf7d5ddbc5ed0ddc9e7f50eedab0d9cbd4cfa631c4555a3b3" + }, + { + "id": 3071082466625413, + "content_hash": "0c5e5529506841b700a5c4a0a1423dcbe12fa8da01c6254253fb55e13454bebd" + }, + { + "id": 3071079853033413, + "content_hash": "37892aadb8a8ce5c9fe865f431a0325aa27e05e0c5f6dd76f8f440dcd6de0098" + }, + { + "id": 3071074249803717, + "content_hash": "39b617493ce746ccd7cf08c8d5da1345a346187303b71aadf59924424e693f23" + }, + { + "id": 3071073946306565, + "content_hash": "8d7560e44ba1b296c82d64c3cc19fbcb425c05538e089ac3e13f260c877441b8" + }, + { + "id": 3071067553679365, + "content_hash": "f506659c09fa607d9df4b454103909f3ca8c5cbe4348212e1659cfa4991bf385" + }, + { + "id": 3071067014760261, + "content_hash": "9e8ec8d470ce18c96bf5568169b66da6c3f48c1ce62cc49f3a539e5106340f1a" + }, + { + "id": 3071063452616517, + "content_hash": "2d1e8f20a32f2bf9fcd4dacbd97cf55313e9be9e11b313a0f81b7f1b8c872727" + }, + { + "id": 3071062782347077, + "content_hash": "3478aa2ccdc286d8818cb3ad298779d083afa4261857dd16b0f6e2933107422a" + }, + { + "id": 3071056930604869, + "content_hash": "aed3f5c15edd6892437629d066ab5f94e872292794e08deb57acbf8f8e6260be" + }, + { + "id": 3071046501517189, + "content_hash": "306a052cf5b3ff8383d128799e02731891e9b43df270164433f2ed6a4687c23b" + }, + { + "id": 3071046229460997, + "content_hash": "0e4bc8bf9860f186a4f07a50b33c5d210d082edd0c8e318c805329ef1c8c14a3" + }, + { + "id": 3071036520974341, + "content_hash": "8d90433eb3936a72c5096c48c93a220a07d9baf2bf323b6c0adb270c19941786" + }, + { + "id": 3071033603065669, + "content_hash": "7a946c81aac403ce3095f6a704637c9d183e1d9dc77684c38b0aa8080e97ca9d" + }, + { + "id": 3071031556441989, + "content_hash": "7a4f995894f3d9cc4763e4e1aa5e4bd4e88a9e272b1700a1643e05d05536733e" + }, + { + "id": 3071014106286021, + "content_hash": "5a1127b2387ad429164e165df760372b7d86a48680d0332c4cd69b283925cf08" + }, + { + "id": 3071003523827525, + "content_hash": "7c58ed707ab3a5fe7858f9bbf41ace34a224c527a85d6518ac0f0bb9ee02245a" + }, + { + "id": 3070992902735813, + "content_hash": "c091ff242ecff0989be7aa526c47f608ded7d7b63a11b677fe861ef87275bd23" + }, + { + "id": 3070987450763141, + "content_hash": "39633c3ae011ed02ef118f01c7607e25709f6c672fab5c1e55b18361854eff97" + }, + { + "id": 3070973067609989, + "content_hash": "591fdcd176e3b39d46679b61c58863ee071ab15427233cd5e009218279c7bc02" + }, + { + "id": 3070959113127813, + "content_hash": "d560b0b9afb00ff5f30c31ccefddb4edac921eef3991641968e1b0c445966361" + }, + { + "id": 3070954610870149, + "content_hash": "e1e23bd5a211b9e4edd7c5047f8cf654388e5b9867829701096755cb0b937e82" + }, + { + "id": 3070948860217285, + "content_hash": "3456f5dc24bdb14dea6b889a2582ba97d4dd63eb8137a4a2fba748681f8ac1b2" + }, + { + "id": 3070945360480197, + "content_hash": "2f5f3d2790df9d21131ba414ba975d8781f36e89329474f64ea2b6da907b49e7" + }, + { + "id": 3070943968331653, + "content_hash": "139688977f0175f196bff6998091c22ffc0981ff3ae92e57f96534f97cbf245b" + }, + { + "id": 3070936278910917, + "content_hash": "2135531aaea622fb735c673894ae9762084a857d5c93565e9e8a93bd4acd7c25" + }, + { + "id": 3070928858056517, + "content_hash": "58743aa4241958863642dcd928be3e65865bb8f22b7d060e9b81ff4b13556208" + }, + { + "id": 3070928781821893, + "content_hash": "4b497018f925ddf4352901e912642acf422b5b4eb85235488c93bb6da89fbdd8" + }, + { + "id": 3070927299823557, + "content_hash": "736592362ea095162a07cd337aa7b60d7cb7b15d7efae6ccc854f585f63c0b34" + }, + { + "id": 3070920253245253, + "content_hash": "e970ca43fe2c38c1f79469de6a4fa7cd46d055cffe3412f9215b0adecec07976" + }, + { + "id": 3070918150490117, + "content_hash": "3251513eeeb9557f6fc260726c01121c8827a2a6e9c00e0999d9e943dec0c3aa" + }, + { + "id": 3070914816559045, + "content_hash": "6eeff0c23a212e3c06a321126345cf778dee4b4d34483db28c9f579401799d78" + }, + { + "id": 3070910406674373, + "content_hash": "c186714451eb9eaa06e67de3f11a2b73b4e20f1f792ae7c1c59f65aee28a3a08" + }, + { + "id": 3070902720399301, + "content_hash": "9621a4cee7d3e3428040e8bca98cbad0e5b1f4b726cc5ec00a7a010ec8d3da91" + }, + { + "id": 3070885127587653, + "content_hash": "7f07f33fdf1f7bdfb6ae8174b4e4eb977c4655e07fca7f712c2d7d7abcb75b76" + }, + { + "id": 3070865740580805, + "content_hash": "486d1c42d969557f1790fbf963c215d5f727738413ccd52f0afc20f46ed5cb97" + }, + { + "id": 3070862464059205, + "content_hash": "dc3785a77cbecde1274bef9a4fae3bc583dca962334825cf7812cc93fc8d6ecd" + }, + { + "id": 3070859429693381, + "content_hash": "e1026abcd468ce09a670382d9ded737eb565baaa9799dc6a5f7a4bbccd2af120" + }, + { + "id": 3070846510270405, + "content_hash": "21067aa6c19d9f8f91077fb76f4f40d4ad8016cf367f7c050624b37f53c71ad1" + }, + { + "id": 3070828262787013, + "content_hash": "f343704fcb4ce3ea93ba78b7dfe94b140a8cf6421d8adb280dfe3b8f3f804048" + }, + { + "id": 3070825249032069, + "content_hash": "0322a67cb894947045a1614974f3ea082682c3debfa436bc9a35d863913812d4" + }, + { + "id": 3070825071511493, + "content_hash": "57c7e53d83e9e34c06d8805a2d10c7e03a3bebe62edf6dc4d81ade38f6fd92d1" + }, + { + "id": 3070813326444421, + "content_hash": "d28dfdecd4e75c2a9ec95572064fcab325b4d1563814fb30cce6c7d46ed2a302" + }, + { + "id": 3070790841730885, + "content_hash": "ca88265f1baa90348c60210226dcd53c6db29f14a99ef83023406849df435ff0" + }, + { + "id": 3070772188710917, + "content_hash": "beff8617ae8202f00395f1700bbcb92e2ff25d5578d90747c0caf0a6fdec4036" + }, + { + "id": 3070771103582085, + "content_hash": "5e0db9154e663f3d50744dd2c81421db14cdf7ef021d15e23ae67e033d23eacf" + }, + { + "id": 3070769613768581, + "content_hash": "556a04000c853092cf2a4bcb93640bdbef2d0be6765a3b0c4c318660050367e7" + } + ], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 760, + "records_with_pk": 760, + "missing": 10, + "missing_samples": [ + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + }, + { + "id": 3071188925302597 + } + ], + "mismatch": 514, + "mismatch_samples": [ + { + "id": 3059410044372677, + "content_hash": "71b00c68a219d3b5e1c7438296f7d381a62cc834a12753882e39ac3fbb5423c7" + }, + { + "id": 3058885519853381, + "content_hash": "ad6cf2a834a8a176feb93a79646d7ea50cd4337490fcb38c29a3930cb3281971" + }, + { + "id": 3058885519427397, + "content_hash": "f364405e2fc3ddcf35273ae79111d5e27650c6b2a82c3b99c7c68bde4f7e1163" + }, + { + "id": 3058596371941189, + "content_hash": "f886f1115b3b703b5868ab96a45d522d80435aa212cae208af7312cd3f00a0b7" + }, + { + "id": 3058553634244485, + "content_hash": "8e13504910c6867ec6aad61f541b1d1c272fb25f5eae58ea89610be2f3d6dd7b" + }, + { + "id": 3058553633736581, + "content_hash": "8e75837863d40a856141e0a311c8313b7b9890df696470d00d1193698d8d9235" + }, + { + "id": 3058545293199109, + "content_hash": "9f68fb3d8122b4a099ccc6e95baf603f394fe6810deaa4034b7efb28e42fc5fc" + }, + { + "id": 3058545292609285, + "content_hash": "33185e01dd8660c8c561b1cabe53c68524b5ff1ca45b37a19bc89bb74463647f" + }, + { + "id": 3058545291953925, + "content_hash": "d0e8f76efb98fd25522f3f91bdd3f344134b57c45e8ee99ef800627975dd92de" + }, + { + "id": 3058536030340805, + "content_hash": "a4f2413c8cea12b6c8dd33d9de10b6b4b1db742f3653b4f311ca16625ddfe336" + }, + { + "id": 3058523007616773, + "content_hash": "4e7917732f1324b4f17055208b01987b0e5845808c0bd91ff3ed4526e1b81e19" + }, + { + "id": 3058513156638533, + "content_hash": "1de693b031171c369b2bf923e8f4d5a593ab1cc8e9a9a946180f022909dafc70" + }, + { + "id": 3058496801408901, + "content_hash": "e1342a433a7838e34b02f4f707e25651ce9cb9f71746658a845bcdbbc2999d78" + }, + { + "id": 3058496800851845, + "content_hash": "2099c7ea643f967d555299866fa0aede48d375f7945c62793ef60212140b906a" + }, + { + "id": 3058488662837125, + "content_hash": "775df29aa64633645a6b24236fb525aeda085e486b56a2c885fe71b2a601a16c" + }, + { + "id": 3058482685036293, + "content_hash": "5c1b320d409c583f18ee8a7ec715141462559843cc8f80bdb142f5cdc613179f" + }, + { + "id": 3058482684462853, + "content_hash": "0d97e673ce11b21b30cb2a016cc916e3605aacb5e0a50df698aa05b2d1db19d3" + }, + { + "id": 3058482683823877, + "content_hash": "bf3aa02232ba86db4a39208e140051087889bc3a6ccacaf4004c8b2c8532948f" + }, + { + "id": 3058482683381509, + "content_hash": "d514fb66717e741ad0169a42151b9c7d3df8ce259a561842a1f71403a8be6492" + }, + { + "id": 3058455037052677, + "content_hash": "ce8725b550c7a7bc844e97f12306d4bb52c019b725d820d7a4946704eef74e9f" + }, + { + "id": 3058369605568325, + "content_hash": "bb7eb8d3bb33f79a59783cb93cbeb62f2d1cd686bb291d28d11f9fe3b5b49ec8" + }, + { + "id": 3058369604749125, + "content_hash": "de82969cf55663abf01c505eeafca7b07e193fd192702bd898c294b501dff590" + }, + { + "id": 3058333186787077, + "content_hash": "71bfd60389e8b38c4e77d5d0bc30b8c33f85b8bf6ed095fe4805dfc20c8866b1" + }, + { + "id": 3058333186197253, + "content_hash": "807224ffe6fbf40ed58a83f1f2846bea4c134a257913e23c0400c9ff465a1d21" + }, + { + "id": 3058318685308677, + "content_hash": "d0ed594b28bec92e71c208a4c0e2827dd98490ceef98e2568bac981c42787f5b" + }, + { + "id": 3058318298728325, + "content_hash": "f4927549fdd1dfe325d050e4b7ad2f1c056b2972e711d85f06f303dab6f822bd" + }, + { + "id": 3058318297909125, + "content_hash": "4d13ffa45de5606f4bbaf7eaccade31601e5a2cabd2652208e6890a516d7170d" + }, + { + "id": 3058297748702981, + "content_hash": "0270fa9185b17d57411f2e2ae38a66aed6a03b898b142570fb68a09425762509" + }, + { + "id": 3058243529328517, + "content_hash": "3fa754448fb56a168f266ba4e53e7be9e0ea6e2d0ae7432f28545812ea5aafa5" + }, + { + "id": 3058243528443781, + "content_hash": "d4892a19ba513613122749f41406c2cf4ccf4ae523d591467d14096b99a88f56" + }, + { + "id": 3058243527624581, + "content_hash": "d8d7df60f0642381eb38d6e91a41f9c74889001d555baf11d4c808608092cbbe" + }, + { + "id": 3058243527001989, + "content_hash": "56705d1de49a65edb019c422b293730164931e113e97d912bab0e05fd847f707" + }, + { + "id": 3058236537292677, + "content_hash": "92bf466b9fd597a7f2846d631d261d650096ecf4e2f222da9d2ef20bb3d95bbc" + }, + { + "id": 3058214302762821, + "content_hash": "0df09c316110f7e0508b4686b8c4a889f1a567a901e2ebd7f2da356030dcf17b" + }, + { + "id": 3058214302304069, + "content_hash": "09611ffeef697d3207a093896541f6595f76a25201d8a389880b75d7430f35bd" + }, + { + "id": 3058214301878085, + "content_hash": "636f342070ec0bf1f31bb68a02cae2c7612c57f42dceb3097a127dcfc83e3249" + }, + { + "id": 3058182126749509, + "content_hash": "7afe883872d06a19f49ec505588d0b777891e87875bb4a9705551127e15f8ec8" + }, + { + "id": 3058131095406341, + "content_hash": "6d449a90e7957b650959c45d16559c860a861c41404289025340d5dbac997ea3" + }, + { + "id": 3058110050682629, + "content_hash": "e784030386d1bd9030afa5aee70843faeb70f39f65ca0bccf0bc93e3a34d342a" + }, + { + "id": 3058110049814277, + "content_hash": "0597c0be37347d73ab48d7c0e683d8d4d273ce702363791edf59a6407a402f4d" + }, + { + "id": 3058099614205701, + "content_hash": "869b468190d17bc34e846c00ad8ef1ef3fa7646fbcf31c474ad970714e5a61eb" + }, + { + "id": 3058048542803717, + "content_hash": "a06c42598422a2927f2c71865f684be6c7011cd64a2f51f502eecaa16c25f549" + }, + { + "id": 3058048070764293, + "content_hash": "362e4a7c7b621027d7966196542d6012c393d021eb67262c1e7917c8eb0e6cfa" + }, + { + "id": 3057979150452229, + "content_hash": "c09430ff0630702686a979b77937ab0d38396b30021aa8e59c0d1d5ff0538897" + }, + { + "id": 3057859469477765, + "content_hash": "dc18298c712fdace0d44199a1450ddd062fa9cf6c76ec3d9b74e20b73944e82a" + }, + { + "id": 3057859469002629, + "content_hash": "70c737d44aa70a0e5da07cf71d80a093a0f3e90649f887758bb5a7df92c15723" + }, + { + "id": 3057420701845317, + "content_hash": "e6181995fbad9721525c2ed85fbacbd8d9d0f4dd82c9f6bf59074788ff231f14" + }, + { + "id": 3057420701222725, + "content_hash": "eeb9c4cabf67ba368ad56b17ccf075cbb5caab5ec01c6c2ea7912e16083e8b95" + }, + { + "id": 3057420700714821, + "content_hash": "7058327edf843b3cd192dcb6111f463156aacd312a549239bd55df6bfdbe0195" + }, + { + "id": 3057420700206917, + "content_hash": "e257cd7268af20b90ec5697f05f92d6059b826525f92fa7aab1fffee0082cdd5" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 37, + "records_with_pk": 37, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 66, + "records_with_pk": 66, + "missing": 1, + "missing_samples": [ + { + "id": 3071351863953413 + } + ], + "mismatch": 65, + "mismatch_samples": [ + { + "id": 3071074979842053, + "content_hash": "325c798e129a1aba861a4283688d8d5fba118f73cea57bbdebac46022afcc063" + }, + { + "id": 3071013741414277, + "content_hash": "4b7e02829e37e110e685fb83a4f3c549c48cba2320284e702d963e1e12ac1a3f" + }, + { + "id": 3069834081455237, + "content_hash": "1df7d58a64a35b553fb8db91ecb6cb35e97ca3cb114ac26740ae9ebddfce0463" + }, + { + "id": 3068597553416325, + "content_hash": "1d43c7a36b3083d7b1065950f2221dcffac631bdb340ab172be986d39af8fa8a" + }, + { + "id": 3068193226131717, + "content_hash": "52dff01d4b36aa3b0c7b7c5dc6ede4b84c1a3b2ed328a8c0e187fa7f15f2395b" + }, + { + "id": 3067210804955973, + "content_hash": "70a542897d1ddd0fbc26f5b33c178083c60080e609a8145580e93269ffb86d0f" + }, + { + "id": 3065748655475909, + "content_hash": "2674fe55264cc68ad0559ba868f0c9638a76897178063771883e4a7200916cc2" + }, + { + "id": 3062602213396037, + "content_hash": "49d330e73a268e64f382b85c37cbd8f9b600efb651e7ce508ea4344185bebe98" + }, + { + "id": 3062388894125509, + "content_hash": "10bd58cc9d7dfd87169bacc995c56d504ad2bbead2b6ba0c66dbe2ec74021e2c" + }, + { + "id": 3061787657997893, + "content_hash": "edfd00907eff9a2a9166f44a0bfbf5033d974f34433d62467c038dc0405708a8" + }, + { + "id": 3061771360030341, + "content_hash": "a02ecc9baa378814c77779cf5bd6eb283d527fb297da644a200fba429ff16a5a" + }, + { + "id": 3061734778015237, + "content_hash": "961ad62587fe203f3780e28f299324035a042903d38673eacb9d41be7b53917e" + }, + { + "id": 3060955647348293, + "content_hash": "2abe94ed956e2292652d6b6be2971e238f33c2de5102b594e39ad2e79c19d2e6" + }, + { + "id": 3060085605436357, + "content_hash": "b7aea862f1794bf1e263d3f732bc1c5ee4aa598ca268f70681c400c5877a79f6" + }, + { + "id": 3060008888323013, + "content_hash": "041a0b72552bfba0b89a57579c153fe84d63295f455ae7bca2804a9e5ecf2f92" + }, + { + "id": 3059409723082437, + "content_hash": "8ab1dfa831a934b394673585e56d7a9ade4f95536d046de3e564faa9396ff451" + }, + { + "id": 3058512929113925, + "content_hash": "ef37d5bbe51e8b380bf3b03a1e4bbd17ab68ffda8f44a06f26702aead09ace16" + }, + { + "id": 3058422344910661, + "content_hash": "c1ca3c9feddf5679af9d60f4d7c9bd84839d268f33e5a52ac48453100e7fc05f" + }, + { + "id": 3057333865711429, + "content_hash": "18f2f3e85640f7ebd3e4ff80b57d0fc7fc273abbbcfdfb52fba5be36920c6a9c" + }, + { + "id": 3057069833078469, + "content_hash": "38070756d2c68c162d839281b8a632beae8fdddb8fca45040799f5e750605549" + }, + { + "id": 3055852804769541, + "content_hash": "b891a61acbb4cbe43f95b7d43f5e7237becde34110276956bda6a91cf55ba38c" + }, + { + "id": 3055757040240453, + "content_hash": "82065c4820e4895ac9ec07507ec12b5cc4287ab5dcccf4d3f38aa77fee2b3b61" + }, + { + "id": 3055567463532421, + "content_hash": "21f17b129b46ef83dbaa5fde9ac640992bb5c17aeb0efb31ee17b99ac3a064be" + }, + { + "id": 3055177162837381, + "content_hash": "1d64c52238f7e3ff2b1d4eadbe3d1e6af35b7ee8c854e91aa6870f5d88f50c29" + }, + { + "id": 3054210385137029, + "content_hash": "c002bf69516e660ed4778d8f69b22fc65a193dcc9155f20750b404f6720e7370" + }, + { + "id": 3054195772001605, + "content_hash": "f333eb3fc6966ea20499f3a37c8f2916085c545832054b96f0d91b0ce8ccf827" + }, + { + "id": 3053966621347013, + "content_hash": "fd452717122b1b8f30d5aac27f2483485e9b0fd5565f30c517f070064626a08a" + }, + { + "id": 3053072921219077, + "content_hash": "abbd3d3b83a2435a78c233be4d00b72953b44d58a798fad97a73504f06d68c19" + }, + { + "id": 3053059529756741, + "content_hash": "b6c51066bd456eb7031a699f8c2af6219edc693bbd9121cece6c51635a4802e7" + }, + { + "id": 3052750316949509, + "content_hash": "b756dbc59ef2627bce3825248be93daa467b80e841a4819ab0d48048f76cc1d6" + }, + { + "id": 3052689166684293, + "content_hash": "1b0477ac8a41cfea1acf82918bb07a173d1b15ac9510ac4f3ed45dd5f3b5f3d6" + }, + { + "id": 3051658126477189, + "content_hash": "b60c7ef56ac58f9ee46d3a42fc484a99652d70888cf95f5f01d2f467e82a09d9" + }, + { + "id": 3051599278917509, + "content_hash": "29b7cd344fe222d9210f7ec3006ae40623d5edede854293d287096a947d56922" + }, + { + "id": 3050319796668165, + "content_hash": "29eef4f77d88e4a0a53b375cf7ec8c5ffcb6b4ed5cb5030fbb32c14a44e1701f" + }, + { + "id": 3050242288224133, + "content_hash": "ab9c6720dcee07743ffdc9e95e28665956ca6fcc186f1686a7b529996da13121" + }, + { + "id": 3050077116909253, + "content_hash": "c879b0c0d3fbc39590452de86dcd5eb19450e92857d217d94196be8459f04f8d" + }, + { + "id": 3048755221546757, + "content_hash": "e1cabf586814375d1f1c137ad9b14384f6b8aef89716e1b47951be5b565a410c" + }, + { + "id": 3048506799261573, + "content_hash": "40effc324d606cdfef9d3c2c60af9eab3111215c11ed33fd6cdf87dc1ad7a8c5" + }, + { + "id": 3048466098390725, + "content_hash": "f2b7850f1262772d626426fd92b543eadeaa28bbd0c40bee19e73f2bddd65f0b" + }, + { + "id": 3048239331870597, + "content_hash": "5b8ea1ae73259b9bb1301aca0220e69ae88c037dcbeb7b339f7df463cd440a0d" + }, + { + "id": 3046093275432261, + "content_hash": "54f18fdb49f7a0edb10b8670c6dc891c10fda4848a90326a328747c12fa1894e" + }, + { + "id": 3046020658824901, + "content_hash": "5b8f9072906522aa354909f752266226c7e96378aded6dfa85c3102f5b9b45e5" + }, + { + "id": 3045263163688838, + "content_hash": "742d2677417faa8783e9e762dd3d40afa0f74863e3c10448dac4a142efc649c5" + }, + { + "id": 3044610245412613, + "content_hash": "f3d9a392a0920a834c661503ebca91979356658c2737eee1952f3c6537cd6134" + }, + { + "id": 3043884598134085, + "content_hash": "3323aa2daebf4975395372ef691d8ebd30ee1d05555a36ba4654f224f810979a" + }, + { + "id": 3042915106867077, + "content_hash": "622a28540cf07a55e70d9df6365bcc159e3252816d9ad1bd9ed35abeed0b4094" + }, + { + "id": 3042725422253829, + "content_hash": "25bece9b4e7cf82e781d6f2e80106f38a9d01af7faa2f477f4ac26fd93a41323" + }, + { + "id": 3041504717391685, + "content_hash": "0d37f422eb991cd6134df53f4ed11516f2453851848ee7e4797192d32f3df545" + }, + { + "id": 3041169983669957, + "content_hash": "56d3921bac6714b95b3cbef750cc8a779277f04363188a8940bd37e55f946e88" + }, + { + "id": 3040354220656325, + "content_hash": "3c12f51204e13069181a73039f3d18a2f82b7aaa28e6cd4f18dae3010b710b8f" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4827, + "records_with_pk": 4827, + "missing": 99, + "missing_samples": [ + { + "sitegoodsstockid": 3071638015592325 + }, + { + "sitegoodsstockid": 3071634451269509 + }, + { + "sitegoodsstockid": 3071633557096453 + }, + { + "sitegoodsstockid": 3071632528869189 + }, + { + "sitegoodsstockid": 3071632310699845 + }, + { + "sitegoodsstockid": 3071631883765573 + }, + { + "sitegoodsstockid": 3071631616542533 + }, + { + "sitegoodsstockid": 3071631411398469 + }, + { + "sitegoodsstockid": 3071631205189445 + }, + { + "sitegoodsstockid": 3071630206715781 + }, + { + "sitegoodsstockid": 3071629779224453 + }, + { + "sitegoodsstockid": 3071629506463621 + }, + { + "sitegoodsstockid": 3071628686673925 + }, + { + "sitegoodsstockid": 3071628342872069 + }, + { + "sitegoodsstockid": 3071626727950277 + }, + { + "sitegoodsstockid": 3071626575365957 + }, + { + "sitegoodsstockid": 3071626320545669 + }, + { + "sitegoodsstockid": 3071567995062213 + }, + { + "sitegoodsstockid": 3071564938020869 + }, + { + "sitegoodsstockid": 3071564938496005 + }, + { + "sitegoodsstockid": 3071564938954757 + }, + { + "sitegoodsstockid": 3071490302904133 + }, + { + "sitegoodsstockid": 3071444244760453 + }, + { + "sitegoodsstockid": 3071444243859333 + }, + { + "sitegoodsstockid": 3071444244318085 + }, + { + "sitegoodsstockid": 3071294892164997 + }, + { + "sitegoodsstockid": 3071285920024581 + }, + { + "sitegoodsstockid": 3071279957985285 + }, + { + "sitegoodsstockid": 3071279820244869 + }, + { + "sitegoodsstockid": 3071279821244293 + }, + { + "sitegoodsstockid": 3071279820752773 + }, + { + "sitegoodsstockid": 3071279821735813 + }, + { + "sitegoodsstockid": 3071269105747845 + }, + { + "sitegoodsstockid": 3071261472081797 + }, + { + "sitegoodsstockid": 3071261335373701 + }, + { + "sitegoodsstockid": 3071243551541189 + }, + { + "sitegoodsstockid": 3071243551999941 + }, + { + "sitegoodsstockid": 3071243412834309 + }, + { + "sitegoodsstockid": 3071243357095941 + }, + { + "sitegoodsstockid": 3071243304896517 + }, + { + "sitegoodsstockid": 3071243245570053 + }, + { + "sitegoodsstockid": 3071242510010181 + }, + { + "sitegoodsstockid": 3071242345121669 + }, + { + "sitegoodsstockid": 3071242345596805 + }, + { + "sitegoodsstockid": 3071242346071941 + }, + { + "sitegoodsstockid": 3071242126247941 + }, + { + "sitegoodsstockid": 3071242060056453 + }, + { + "sitegoodsstockid": 3071241995536261 + }, + { + "sitegoodsstockid": 3071241936979845 + }, + { + "sitegoodsstockid": 3071238738331525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3357, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 18, + "skipped_missing_pk": 3357, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 239, + "total_mismatch": 24138, + "total_errors": 0, + "generated_at": "2026-01-29T10:35:50.429937+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 36893 + }, + "generated_at": "2026-01-29T10:36:09.740363+08:00" + } + ], + "api_to_ods": { + "total_missing": 925, + "total_mismatch": 188690, + "total_errors": 0 + }, + "total_missing": 925, + "total_mismatch": 188690, + "total_errors": 0, + "generated_at": "2026-01-29T10:36:09.740392+08:00", + "backfill_result": { + "total_missing": 239, + "total_mismatch": 46737, + "backfilled": 0, + "errors": 19, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 224, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 30, + "mismatch": 21528, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 28, + "mismatch": 9061, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 10, + "mismatch": 4298, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_PAYMENT", + "missing": 30, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 8, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER", + "missing": 0, + "mismatch": 554, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER_CARD", + "missing": 0, + "mismatch": 945, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "missing": 10, + "mismatch": 2335, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "missing": 1, + "mismatch": 412, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "missing": 0, + "mismatch": 18, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 15, + "mismatch": 7046, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 0, + "mismatch": 114, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 99, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 66, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 0, + "mismatch": 133, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "missing": 7, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TENANT_GOODS", + "missing": 0, + "mismatch": 3, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T22:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 2, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "cc77e6016f65c95fc1dead593f9bc0341afddf4ae257313b8b28d79fb4a3b6ff" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 20303, + "total_errors": 0, + "generated_at": "2026-01-29T10:44:16.111743+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 26238 + }, + "generated_at": "2026-01-29T10:44:23.641539+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "mismatch": 1776, + "mismatch_samples": [ + { + "id": 2814974177528453, + "content_hash": "f8240151eb8a2f9a45a12f7bd61b4ab36a2ed12151106b280d7459c83b10eb21" + }, + { + "id": 2814961324608133, + "content_hash": "2f44777aec25f62d1c45bf7cf91d1b684a3427a44c5622a0ab7fd41d1b887453" + }, + { + "id": 2814952556251845, + "content_hash": "40f42d83e5bc1923e6f47d0b3f793d66021fa201ff87e7b6995b572f0806b0da" + }, + { + "id": 2814948630940357, + "content_hash": "4daf0c80382e57278b5369f7c9a74cfef5d3305a02220b97699c99f582fc7cbb" + }, + { + "id": 2814945134938821, + "content_hash": "3fd4bec6c9a8841b71785f07baba879cb92edd8d4fe75db72b14d765b6fce5a8" + }, + { + "id": 2814933954120325, + "content_hash": "b6621ae806fa5811fafb852902910cf4bced887fb0947f0c158e4757e085f364" + }, + { + "id": 2814933748271621, + "content_hash": "a716a7d441566ca322eba9f0b15a7d062eabcfed61dd3adede476c66c4db6f46" + }, + { + "id": 2814933479099077, + "content_hash": "537c93ae757a7b0e7b67cd7cacd38eb8d1d544fa958f7a1538d4e720fdb473dd" + }, + { + "id": 2814931576375749, + "content_hash": "69eb1ef629e11b06696e21f751acb1fa4eeec95042bc8f206847fb2db212b8a5" + }, + { + "id": 2814924780128901, + "content_hash": "519f554f5207c7d0f9371a1e25c8301a619316f833c5765014f41daf5a2db719" + }, + { + "id": 2814917321329093, + "content_hash": "38779c9422cffec37e1e134c5c70bdf968b2c86d3af98a8330b0d38256781718" + }, + { + "id": 2814916795533957, + "content_hash": "05e0e1a14f2a96712f2002518ce6f171dd47d94c6dd50c755a43a8bf50b3cc79" + }, + { + "id": 2814914723252677, + "content_hash": "5a15b11f16b1468cafee082787fdcbd5e671c066f6bd392432da68028c3dcd2e" + }, + { + "id": 2814913343031813, + "content_hash": "4c257c4988842f3763c46fd69c54033fdcc281708dbeed3ac3af40dde93a7056" + }, + { + "id": 2814910637705925, + "content_hash": "175cfa670d1f1227743fa3353de764bb031829634bf6da231df8f5867ce83b1f" + }, + { + "id": 2814908226603525, + "content_hash": "cd07ece4e1c5ae95947535c3bc737c51cb059badb4e3f2aa84909180860d1089" + }, + { + "id": 2814903665806021, + "content_hash": "ac715a37e21308363b67aad4f9cd4e24a85fda483c7216e6e286f0f9f183c96c" + }, + { + "id": 2814903618472581, + "content_hash": "6590ea28afd917cfedcba3043f9d0f5dc6062962f742bd8f5f7931bd409523c6" + }, + { + "id": 2814903531965125, + "content_hash": "32be3be4b5154faf5edab9c3af7cb16e1b015e83ffc0fb9a1a3f157a2350c0bd" + }, + { + "id": 2814902142782149, + "content_hash": "1caea70dd87b08dd31320695a1f463c64639327697bbc20b371162f0f2a344bb" + }, + { + "id": 2814901496351365, + "content_hash": "d92bb2bae75d02474c4fbc30defe73df5f3d2a8e1a231d69d3a4c7993b360163" + }, + { + "id": 2814899746965957, + "content_hash": "32d3fac3c1020c8d6d48ccbc6e5fe8c7b541af05bfe6b486866f860999334df2" + }, + { + "id": 2814895489272325, + "content_hash": "38436b172a524e56c6cc482d11206381f584aa897b3dde6c036720a518261231" + }, + { + "id": 2814891250846149, + "content_hash": "099c0c194717c0f5afa7b4390ba812659cddcb1e6cd3588b0da236da7f7ddd0d" + }, + { + "id": 2814881671023301, + "content_hash": "6b8148506d1f463a70ad6623c85d3283104a3e8c1026f6c579b03ea256819de0" + }, + { + "id": 2814878484712069, + "content_hash": "9047992d08406e2a04f1faf220564bc14f596d07ffb1b200ff40e8b23874298c" + }, + { + "id": 2814878398679557, + "content_hash": "baa259631502c8d5b70497f4f28503dcd9ab4abf445f2fdff92e6c88052b242f" + }, + { + "id": 2814874876496517, + "content_hash": "e8dab362d049e1614cef344edbe6a13e317fc40ef47fd840c1581aebdd389af5" + }, + { + "id": 2814873440668165, + "content_hash": "e49a556c5bf3607a5b3012c30a13faa279707c4f4ad3b20661fbd02c4a0e151f" + }, + { + "id": 2814873001396933, + "content_hash": "cc87dffcd4e4faf942034a23e31c16afc43383bb2c3f9644f7109c9976271ad5" + }, + { + "id": 2814871099312837, + "content_hash": "1de4538fc41904be473924b71791b64c5c2d4fccfa48852dd20a9fd1f7951ce6" + }, + { + "id": 2814868343229061, + "content_hash": "05801d48a9e41d47f94b04c11846b93b925477ec4ece21e371cfeba36dc52f61" + }, + { + "id": 2814859964713477, + "content_hash": "c2decf272b7234ff0cf97c404853c09a28bcdb7af58d102790b362e6baf93745" + }, + { + "id": 2814858442230405, + "content_hash": "ec819de172b6964a92d49d3aa20ed60803140e306278df4b272920b91f1942bc" + }, + { + "id": 2814851705473541, + "content_hash": "86a96a592c86dc9a2dd65f829ab9f5556b674914189d3876bd7427897613391f" + }, + { + "id": 2814843170802309, + "content_hash": "cbc2c385d1a50f19521faa6499dcde6c180079bb4e2ce1e204f7b42654b7b296" + }, + { + "id": 2814841843583621, + "content_hash": "9f382e88ceb511a65dcfeb72d3cb4de14716f8e3df6698851d1177e35fe03eb0" + }, + { + "id": 2814838508030661, + "content_hash": "90c9159464a3779d03cd1a577ab56079932ac9d29d5fe9998518fb9793eda710" + }, + { + "id": 2814835004819973, + "content_hash": "95de26642d293198d2b817255970309e069f8b5d2ac5b1cb84b68be3343db9e5" + }, + { + "id": 2814827877845637, + "content_hash": "94940abea8327335dd8e2e36d75ced1e78c1c4919092fce27a394c2903d6bad4" + }, + { + "id": 2814827816848005, + "content_hash": "3a8ef8a1a2f1a7e9257978a32b2ac84dec9117548d38f7f7ee395c209815d0c0" + }, + { + "id": 2814827392371141, + "content_hash": "d7cce9d0fd04097ca893c30bf1b7ddd237081bd04ca07f60f0476d79bb4e133e" + }, + { + "id": 2814827188079301, + "content_hash": "879838838a6c38fd513bba46464c371138e86afe7a8c20c69a5a3246498d77bd" + }, + { + "id": 2814824774158981, + "content_hash": "34c6581e70b91e82ef94560780f4fb895030be40e97e0d8f90cf5673e0356110" + }, + { + "id": 2814823548603013, + "content_hash": "c243f8dcd7622b1130c53e78d99c80673fdb93a43d4f4759993ccf00e4238263" + }, + { + "id": 2814814818323077, + "content_hash": "d1d7412ae709cc3725e60397ed0c40149600b720c1cca09b3471d28f5a4bb328" + }, + { + "id": 2814807854696901, + "content_hash": "a9f63dfbd27cb9d8bd283e19756f186d4d0ce124ff5c2877fd962bf71f6112db" + }, + { + "id": 2814806725986821, + "content_hash": "b6fd3cb9757bf6f5bfcabe4d2bd179851c77288091261da2fbb9fcf72ed530e6" + }, + { + "id": 2814794429532869, + "content_hash": "e09c4b617593a1c2361ffc2d518a589ee4fec7fe38bea59c523ee17aa2ec2c20" + }, + { + "id": 2814791384484293, + "content_hash": "06a653262eba59b8957775023ac886d6708c27c18661836f04edbdb1ac0a7fdb" + } + ], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "mismatch": 351, + "mismatch_samples": [ + { + "id": 2814933689289221, + "content_hash": "f84d67a50b3a954e8b1c68cc869988f10841754db12b1e12d2858aec8f14fd0b" + }, + { + "id": 2814924810783429, + "content_hash": "b243abc685a1d8f8a01c6c2d90dcaaf52cc1349a11421ec2ea4d29f7125e63b0" + }, + { + "id": 2814901880228357, + "content_hash": "d8361a67a3eb9394b7096bc1053a35703e2735a298b7ef90b9129853943eada4" + }, + { + "id": 2814881854818949, + "content_hash": "b62ebbaed185d1d8486874fbdd3a034df73a95c07dcd62c42692e1c65d73cf7d" + }, + { + "id": 2814688934414981, + "content_hash": "5660fc99c8d39fcf5610dc45bc4a34db77ce9d7f92f86435e7c91ba5c4dbcec9" + }, + { + "id": 2814685997484677, + "content_hash": "92f64d85742ec40afa0d23bb157b6c02401723d0b6e3fc18ac712131aa986291" + }, + { + "id": 2814677560183301, + "content_hash": "921fdaf3783f937103f14b0e2c6094aa39c7bf76cac21af6ccebf3f1739dbec8" + }, + { + "id": 2814651472775621, + "content_hash": "fc5f3ce28078048e079210d05124f1324d855f925a91a6abc17203b6073a2fb4" + }, + { + "id": 2814632601815749, + "content_hash": "4c322d19c1ff6ecdbb866a6933af1ad4f9f17cda08612fd3b1ebc4cb4a3f8e9d" + }, + { + "id": 2814613702347461, + "content_hash": "980ad03d792eeddcf0df4d4948316d772e3269c7c7e48a3ce80333d491cdf06d" + }, + { + "id": 2814593864501957, + "content_hash": "d5681836b43e8f9b0f34bd059c711aa25a690ccfb1e6690107c2c4cb9b09b06c" + }, + { + "id": 2813729967638725, + "content_hash": "def92c1adbe21f92950c0195adf578896b616a0295e51db1cdcc2f6af2e6a7eb" + }, + { + "id": 2813729967392965, + "content_hash": "d734c36ab95cc214ca9689b352c5906046f0b1bd6eda8832b8d938801669911b" + }, + { + "id": 2813729967163589, + "content_hash": "7d58f67c4be4ce28ecf951bf5a561fff1927b8bcd50b1528b71a195016b21794" + }, + { + "id": 2813729966934213, + "content_hash": "ac4a2688f5b495881946fd3ef9c64255355e3a873b81db921fd68019ff57ffbb" + }, + { + "id": 2813729966688453, + "content_hash": "44de208b2fdd29f63a4df48d3b3947831c064f2f3efb5a4f13897918424724fd" + }, + { + "id": 2813717425818373, + "content_hash": "fb5ccdef30a0217c5df1a4d140934c674b1f7d2ca97775e832821a523e6faf0d" + }, + { + "id": 2813662852647365, + "content_hash": "c24b6f89ea7111cacd5895cfc5649d043aeddc6ca054fecd60430a4537a89fdb" + }, + { + "id": 2813658740576837, + "content_hash": "1e4e673f437e1539f861e08600b200a770df6d23122ef09fed6d36b6292f2508" + }, + { + "id": 2813658740347461, + "content_hash": "bb092f1842d3fe3638c5dc3677c4297e28179353cf231522ec4ae5edf29c8a43" + }, + { + "id": 2813616990800645, + "content_hash": "11c003c80ef62d02f6a86df29707897c15a4e4f42df317449e47bd1de018ca16" + }, + { + "id": 2813613600754437, + "content_hash": "ac6b4cb2d4b1894b8c8b1156cbcf9b12719a24bce7f9d7213e35da2dce472358" + }, + { + "id": 2813594974980869, + "content_hash": "acb2afb09dd1b9e7faa979ec14c8e3c66b0b4e5e604b26d883e441b0918dde2a" + }, + { + "id": 2813556457916869, + "content_hash": "98e11bd4adaf0a80c69736472cc6297a08e5290fb69689b7742cb00e7f5b4c47" + }, + { + "id": 2813556457589189, + "content_hash": "9b58d8489014c79ca5f49b4725a0919706791242bd98f872ea403abc51ad5a10" + }, + { + "id": 2813537587139141, + "content_hash": "1c4b1d65b006e72a2a4b5ff606364dc40a8c75e42a83186eac1b67bc11e35670" + }, + { + "id": 2813534697458117, + "content_hash": "b4b6852bf52c93af2d0228b76ea7e49f9ce3961341d0e6818bb0abb986433c25" + }, + { + "id": 2813533235417669, + "content_hash": "75c4ebd6338811113753d35c55e7c0727857e601cc2b40dd3ab541eaf5776def" + }, + { + "id": 2813533235106373, + "content_hash": "08423fc1c7916a82fd2cf730666ec14a4ae84e679279b46bead7c98b7a5c1fee" + }, + { + "id": 2813533234811461, + "content_hash": "1bd1c24b7f4b6cfa83f1dfa02642e9d8637abd545a22255665295903898be6f0" + }, + { + "id": 2813495350102213, + "content_hash": "fa2915c516a9a11a89ad7502ed9c66f975111168a51ecb2aca6e419d52d95e68" + }, + { + "id": 2813465996855813, + "content_hash": "29f3d4affa7f96ffc6f4105678800a7640a3c872188a75257437e1c595166aab" + }, + { + "id": 2813443550333445, + "content_hash": "e50d2ce6d81d041e46f65e4fb7c3ce33bba94df8e05d289050f7db346069701e" + }, + { + "id": 2813437666364165, + "content_hash": "6d2f3c1116889943dd40cdd7952c6ec4f852f450be33ccd90a689a63837cc206" + }, + { + "id": 2813346465221061, + "content_hash": "4823d0a61abb6e1b2aff13f7890a090a0018ddaf36b752f63545dac100b5821e" + }, + { + "id": 2813332730398917, + "content_hash": "1639062b20008aa727f9a4e8a6eb49801848d07f6c263c1317855758cbd48f08" + }, + { + "id": 2813321357888005, + "content_hash": "9806ef0840df60a702a3e8fa3a26583e78325192e6b69a7c6b6368578926add9" + }, + { + "id": 2813293513017797, + "content_hash": "9870f2adfc830ad567589d5442876e0266bdc260a59f88b47c5b51ab00e06ba3" + }, + { + "id": 2813251898542853, + "content_hash": "1eb8f961171b58088af5636de79b1fc78985f8720be8108da40f65f01bc8d5b0" + }, + { + "id": 2813250626996677, + "content_hash": "a6599108b81a754b741a0b9427302199f782fd90a4e6aeccb8b6ac1890041dc3" + }, + { + "id": 2813250626767301, + "content_hash": "962a3e573660cc43819ec6cab61e9ba6ce5f68a9e6cff22c580019d898403da5" + }, + { + "id": 2813227116841413, + "content_hash": "6e0bcccb2d2117c52916a80f263f565e8ae03da21202c19fd88ecc06d27795d9" + }, + { + "id": 2813208962484997, + "content_hash": "26b2e47bcfcbad8787f85a4ed1d3fa1b3b1e186184cc35504dae0216ad9cd1ed" + }, + { + "id": 2813176008493509, + "content_hash": "d4b185de9c0d9a8462cb38496774a47864700eba3f4b7b830b891cc845769026" + }, + { + "id": 2813089968409029, + "content_hash": "c186dec03d2721df1266cfc5194f32fc0d7d7c4438d65a963b76a3871bce4949" + }, + { + "id": 2813086934796741, + "content_hash": "c2e875536d272c9582573fb4b548101928cb6df8df0e2d0412c5b13d731afcee" + }, + { + "id": 2813030755076549, + "content_hash": "5c59303394b741b4a83a57d52d6da29f8b58580612d71731b58aa42a1b5f4b39" + }, + { + "id": 2812353040992773, + "content_hash": "111397c363cbf735e3becd0d68fcdf41d2c0fb24de896fe1785b3936a91a28d3" + }, + { + "id": 2812350109780421, + "content_hash": "247b8207b446ec5deeb864492832639d8e422d6d82da6a729fb5c0263bf338e1" + }, + { + "id": 2812350109518277, + "content_hash": "8e629252ff584a0210f7c507dd4488b0986ece276148c61e20f85def0a0a16ee" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17146, + "records_with_pk": 17146, + "missing": 8, + "missing_samples": [ + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "mismatch": 44, + "mismatch_samples": [ + { + "id": 2814476335547909, + "content_hash": "ce644db5bb343f86a12e4b2805ff1ebbb6e2fb7b87c4d9210ad72dc591c9d212" + }, + { + "id": 2813729032046789, + "content_hash": "fca1f722b25c99fcfec14716379021f332ea5e6cbee5dddcef31bd4a9d0bc840" + }, + { + "id": 2812352420645317, + "content_hash": "925250f52359a3afe1220e4bc37ea136fe6bed641595d948bc86ae560183b94f" + }, + { + "id": 2812164953934597, + "content_hash": "8b46db4dc2bbcbb50c461ff660197e938f04c756cf406626ea278c2932c7ec0a" + }, + { + "id": 2812160863095557, + "content_hash": "928ccf6062bda778ba2a907dab9740b0c96ea3c3d0db7a87973ad8b0361d3785" + }, + { + "id": 2811829130856901, + "content_hash": "c517c354f6e97e0ab1f4146149e658e02ca92e30d436a5ddc2917a3fdfb5642d" + }, + { + "id": 2810801124133381, + "content_hash": "96ef66f1558b8995c4ed4d95e2ef57990b1e7730f2f8cf2c0783f6f0b15c7abc" + }, + { + "id": 2810800364193989, + "content_hash": "00e87cf7f236566bea1b2393a5b994a4a84d52cbd08f687dcccf7c1a5f2ccddf" + }, + { + "id": 2810563362048453, + "content_hash": "439db26cc26b1a32cd749640ae88cd190f7c157e732f6028b24dbe8207040d1b" + }, + { + "id": 2810546930207237, + "content_hash": "3cb73a9ce91b73c61224bc758242ddffa685664cb2bd99a1e7727dbd0f5772aa" + }, + { + "id": 2810412839373574, + "content_hash": "67833d5df50d3df6a6b146802e16baf46eccaee11b9404c2c2ad9bccde575fbb" + }, + { + "id": 2810371281799621, + "content_hash": "03d1ed07f270ef8749d23c9fbda58192eba66cfcb6c27e6da98488011f689331" + }, + { + "id": 2809504839059909, + "content_hash": "9e559c998bdf696128dcacbb8db881bb66efa54313751574d34ece853d0dd7a5" + }, + { + "id": 2809471788321221, + "content_hash": "c822d82f0e94c929273b514b064e05a07f489acc1cc9267c579568bb664eefd1" + }, + { + "id": 2809392429549765, + "content_hash": "30b37978866ac35ac16b6f60091aed34bcede69019eb5bde9f3ae75e66268db0" + }, + { + "id": 2809187656829061, + "content_hash": "bc4ae3d210d0a49a07f48f593ce4e0245e2d00a04ee6b2b99d51b7e15bf1ad0a" + }, + { + "id": 2808923174783109, + "content_hash": "c3efe42359ca66073936c52522aef9caff9c60716126c18d453cd46c1016fd08" + }, + { + "id": 2807912803045957, + "content_hash": "8b76d636b841d902ed311dfb5abcb633019bcc5d6b6775275f9bedea28d5091c" + }, + { + "id": 2807909672309637, + "content_hash": "56b63ef9c2813bf0fbe70cecbf5245444ffef897922c48222e1de68a29ec4d7f" + }, + { + "id": 2807891556897349, + "content_hash": "98ebb15d15b5d7c400f4bbffaeada993d582ffbe7f77c72a604d2e7b09cc3040" + }, + { + "id": 2807815241847557, + "content_hash": "04ea40cbcabbc2efbbb1b73b413d9f7d15b58b104917e915ec1017a5783756de" + }, + { + "id": 2806859908384389, + "content_hash": "0259ee1b7b2beb1e55edcf846513fd8f752729b224ef29bc139cbe40adb7ac76" + }, + { + "id": 2806855233947525, + "content_hash": "32204699ba968b5a5263efd97e5bebce1bd516a82bbe2bda6eec5d30efe246a0" + }, + { + "id": 2806708031637381, + "content_hash": "4a0702411ef010fd0321e222c4d3bdafb7dba4c6caa929dc82e692491c8a9108" + }, + { + "id": 2806426635208517, + "content_hash": "4fafeb4ea1611d085392ae4d9dc36e65ecef0f25c79ce86a09055a5bf7ab2ce5" + }, + { + "id": 2806371278325381, + "content_hash": "c14145de34cb957b81c1e1aeae84700197fc274b1a0724a0ddd2ca36953d2131" + }, + { + "id": 2806244951017285, + "content_hash": "bab30ec752730010b14ae4b532320a02c2e7eece7e048a0ef445fc70aa4bf9f5" + }, + { + "id": 2805188835477573, + "content_hash": "6e9188ed1e68cb49eedc487548f0a7108833dbd74d5989728db1942d529a8977" + }, + { + "id": 2805121951074373, + "content_hash": "a9553614c13e7fed14e7caff900428f7dd1cd84994b318dfc408a9fe43f59675" + }, + { + "id": 2805111552117957, + "content_hash": "9210bea780945cd8f5ba8f278161439b0eed96089223429c99b71edff334623b" + }, + { + "id": 2805070136823365, + "content_hash": "ed27385d2860c2cde3f9e386ba063f9a01c8cfac9df87d22ad904a8a6888aa35" + }, + { + "id": 2804767340973317, + "content_hash": "f4bcbbfb57d10471eff24e26d5271f62f1b4a4b2946818840ae409e485f19bad" + }, + { + "id": 2803710575593541, + "content_hash": "6c2948b77910346200879c4bec52bf42e1fbe96e99ba8c3f57bf4c576f61c03a" + }, + { + "id": 2803666932010565, + "content_hash": "23fc618623bfab9a06065b52eae935c7ebfa8256d1f462109372b59bf88043c0" + }, + { + "id": 2803661545508421, + "content_hash": "ec9ab56f745c952d03962a9ce8f91e0a79245215c1d7bb774032d0db1fb2f6ab" + }, + { + "id": 2803649174965445, + "content_hash": "9a322b37c71eb8d0c8be45fe02048da31635b3e6eccede39412ed1035662d61f" + }, + { + "id": 2803524215835845, + "content_hash": "d1c9f767ace4a7e883152a7e575bb3f110a5e081da886f19f06a516a62d55089" + }, + { + "id": 2802480974171333, + "content_hash": "bd6ae46889043e77404f9da615c5455cba2b277b3cde888a685dd69cde39709f" + }, + { + "id": 2802393839258885, + "content_hash": "bed8f8f4c69f253ce1d3c2ab866b89b80b3ea97028425802e9538afe7fb33f24" + }, + { + "id": 2802362619840581, + "content_hash": "c6762a09fa18993143ba60c0fed8eb3656e2529374f95ffe5dc61680eac57dd0" + }, + { + "id": 2802064357345349, + "content_hash": "52d58af90c4902114165d33ae09368ee4ebb8255c3faf9125435dcc0abe4e7c0" + }, + { + "id": 2801879399532933, + "content_hash": "4e251101111e2d32d4e1b7cb0b0242e66a44c10a67f8ff85a8bd08d66f922f98" + }, + { + "id": 2800824057628741, + "content_hash": "f3fbec6e7e17ffedad6783fe6a88b799a95fa695dde137ba78e44d48b0bd7f43" + }, + { + "id": 2800763348731909, + "content_hash": "5c5c7dc15522c60759b9e6d750604f4735c0de25768d65add3b6082f90d9ae69" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "e00572fc0ebade75a2baff7d2c2956baede9754ca185ea7f459af4558d546d71" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 98, + "total_mismatch": 22474, + "total_errors": 0, + "generated_at": "2026-01-29T10:46:55.089568+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 32250 + }, + "generated_at": "2026-01-29T10:47:03.199432+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "mismatch": 4602, + "mismatch_samples": [ + { + "id": 2858856606271301, + "content_hash": "3b4bc6c06e08cdb9966219c7a7d9cd42863c7d7158f6d85f450f23ba663d2f1c" + }, + { + "id": 2858856201291461, + "content_hash": "7920be2b8895eece1d9a7f80240f4af0db1dbfa36cbc35b1272c31606c96dcdb" + }, + { + "id": 2858852359587525, + "content_hash": "e58b36ce7a243e22d1f35454c8044b44249ab90d37e1b7d3222cdbc2de273293" + }, + { + "id": 2858844609857285, + "content_hash": "ce069ec88e555b83275418561927f18d5f78eedaaa39868ef3447e0822cd91fb" + }, + { + "id": 2858838753347397, + "content_hash": "feee4ce4175249de38a8017a7a9b246103882f15b1e79a21f4e55ee3801ff758" + }, + { + "id": 2858837304100549, + "content_hash": "0f8c9b962f4ac871edbba41aab7624e39ccec716da396a86cc9f3b61989a1939" + }, + { + "id": 2858837207189189, + "content_hash": "0d30149d91e8f838e91551ce3908a87ca49c151879bfb534d81decab9ce4b9c6" + }, + { + "id": 2858811122468549, + "content_hash": "9a208010b3729c6037bf03ca60fbb704e9ca3f553eb52db3cba0bfcbdf0add01" + }, + { + "id": 2858800453584837, + "content_hash": "46234b1cea4055fc890cf73d71249b691f2f967dcdd4306c4f8ab3c37af66913" + }, + { + "id": 2858789121574853, + "content_hash": "e0921349afe405e4c9d26064dd6cf3c07fe1333a9721785c066df2cf52945e4d" + }, + { + "id": 2858771938838277, + "content_hash": "0776c82154dae75c18d5cb28024e2f719fb8f049b0f4c16f7bc144a347fbcc1d" + }, + { + "id": 2858768948381445, + "content_hash": "b492ebc6b6edecc722cabeb6aad21118d82e9a11fdf5827f43afc9ba44628074" + }, + { + "id": 2858768369780485, + "content_hash": "4163de2fe26b985e820861326a9fcaf0aaafe45967bf18688c8867f8df2c62dd" + }, + { + "id": 2858762261481157, + "content_hash": "18704acc96595fc1a0bf599187f150b9826e160a1f06e192c414949bb278cca6" + }, + { + "id": 2858761385379525, + "content_hash": "35babab13698a4fce57e6b8c8e2d1220dec87cc2dac23af2a5bb3fd01af30669" + }, + { + "id": 2858749729097477, + "content_hash": "6eb8fa4b148e6c44a8d0e13accc4deaf5466110194b9ee75acd08564ed4145c5" + }, + { + "id": 2858745648826181, + "content_hash": "125accdaf60b2704624567510a057c347be7a0a10308c6c44514e15b7184d568" + }, + { + "id": 2858744035542853, + "content_hash": "b6b43b603d05ebd0df2f8dec70edd89e373df6b75384ca9bf3171efb8aadd3b0" + }, + { + "id": 2858736848668357, + "content_hash": "8dc7b753f7d9b41d4795478873ef07393e2c9f88878fdc475523dc68d4421d0f" + }, + { + "id": 2858734854702853, + "content_hash": "7a4109f426d1463eef2f9a65a779b451f272ee5e96f0579658fd82b9dfb4943b" + }, + { + "id": 2858729261729733, + "content_hash": "88c23feafbd399ca841c6f3baf02b9b32c38f9fdbb2a2ec272a6df295fd8007e" + }, + { + "id": 2858716969830085, + "content_hash": "29a7a4858f5b9c55d250ec278ec38c8a6fff7011d157fdc13c37cd2283c3d1ef" + }, + { + "id": 2858709866710789, + "content_hash": "2030970107c2cae289256f2da4125f266af7c8970810a2beb16f3542eab48d50" + }, + { + "id": 2858708840417029, + "content_hash": "7d83378b157fdd40ac36654f3e0614b9427d50ba78170de689c5358a9f531a8c" + }, + { + "id": 2858690339374917, + "content_hash": "25ba18e8863aed84a058c092cbc37861a6addb9f1e3b77d5317e18a11b8f9371" + }, + { + "id": 2858681634539461, + "content_hash": "07fafa210372f02d0cde1d1d8c57f2bef473aa259b4f46464ffd51d906d329f0" + }, + { + "id": 2858678362654661, + "content_hash": "2ba62ee85be45b9462e92f36396b6236740f15aaacbba70c1c136c6789252915" + }, + { + "id": 2858676874446597, + "content_hash": "515b0373a5d975b5a7fff30a64ac913017cf3e6133ac77b4babae4c7094f19c0" + }, + { + "id": 2858676441171717, + "content_hash": "d9dfee02eba271d1dee84b4f6258ccf8cb1bfbb177d8d2f6e1033341f6e20b0e" + }, + { + "id": 2858671615592389, + "content_hash": "7d2a610194683e69accd721dedd0dd1c1690239bc02e0aed4933ca36a49099c6" + }, + { + "id": 2858671427749701, + "content_hash": "d39396140fe2a20f97aac481a7eaedc875bb19fe572e2567889ed1a8df012aa5" + }, + { + "id": 2858657669826501, + "content_hash": "9db901e5e3e9e54c526c59203a13a9eb656388b131905c1223239a8fcc1f6480" + }, + { + "id": 2858657020462789, + "content_hash": "fa2c40e478ad27c1dde2f203067643637354f01d805a93db67e9836687f85f24" + }, + { + "id": 2858655602591493, + "content_hash": "207298c4498227201fa8bbac59d784794c29327087a8f6d791d5ead676366d9b" + }, + { + "id": 2858648440260549, + "content_hash": "babfd4861c18484ae6aa5e4c6d66121072b1fc162dc27b4284a0655e2df2c86d" + }, + { + "id": 2858646823733189, + "content_hash": "bc7fa9fc30b79a4b483ab085c38f1b281436f3729aff4e272a669985b3640828" + }, + { + "id": 2858638961444677, + "content_hash": "7b6c64eacb3771b4718253d5ec5b3132cfd44483bef9cee23e99c69c972b0110" + }, + { + "id": 2858632150812421, + "content_hash": "fe91482cb76361b20226e02f5a8de815c201e9b6656d2c77ff8d246e0b77d44e" + }, + { + "id": 2858631245940549, + "content_hash": "ecb666992f3a369a68c9773f9c288d92260619b3bc090c6e67fcd27f4af15a6c" + }, + { + "id": 2858608894609221, + "content_hash": "da93fcd591d102ff4e841028cf311c54a53adf0f33c602f4c62e61db11df9b12" + }, + { + "id": 2858608649258757, + "content_hash": "9131a6bb42b5e8709e54e7c93c6b61e382591583d6efc54390899b691fcb5911" + }, + { + "id": 2858597884610309, + "content_hash": "438f8aab537b951a3670ac8e19fe74cd5abe2a36817e1df405dc972b45004cd6" + }, + { + "id": 2858597771167429, + "content_hash": "7e510d13d3b54176101992460aaa85d0b001b239c907e044e2ae5f97d4adfe14" + }, + { + "id": 2858597590943429, + "content_hash": "ec8c6cc83e805b46748e082c3b8cbff8351d7d2568825767b431beb6335d6ebe" + }, + { + "id": 2858581224507141, + "content_hash": "bb41a0288bea25a14497a9bc3e403da9b00bb989d2a2ccd36fae4ea798f91042" + }, + { + "id": 2858579725125381, + "content_hash": "68fd74d2dd07b4b365492b4a1b2407decf791f651e63ae2e4544f1fa456f7c50" + }, + { + "id": 2858570017114053, + "content_hash": "93702d422e406d3adb921f4539a24e4dfc5f65858ab6cd08d7330a47e9409556" + }, + { + "id": 2858565584357061, + "content_hash": "a770f65684f59f28f0fd39d05c25a07c94f6f3373b6b4f91fd43105384dfdfed" + }, + { + "id": 2858564439131845, + "content_hash": "9b6c3220195401f5f1af6f12077c880d182f7b451fb6201db16b5d68369c1835" + }, + { + "id": 2858558819747525, + "content_hash": "5800839b1cbd9856640ba64d79bd74e3d44e5921ca0bcc3fdcf75481917a1e18" + } + ], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "mismatch": 859, + "mismatch_samples": [ + { + "id": 2858749921773253, + "content_hash": "fb8f5b708472a1bfd119e04a5c58ada257bed45590667b0b0b817b88eb41403a" + }, + { + "id": 2858690674575045, + "content_hash": "2536c4d5b2eafb78d03f48452552a8f0f16bd59d6016ed63a077d52fae507b8e" + }, + { + "id": 2858646913550149, + "content_hash": "65770970b38ca59c423868c7770bc5e98ce63d27e7ebcb75a13d9f2748190078" + }, + { + "id": 2858646913304389, + "content_hash": "4ecbc78a68e0b7da62de8d6ee1ac99863ede69d81ac8b96473343cbade9aca25" + }, + { + "id": 2858631454918469, + "content_hash": "6ca3874c246dfd27fd58d7c01986d1081abec4d3881ddca6c5e984f77cac5d26" + }, + { + "id": 2858463459198661, + "content_hash": "64bde0ca87052d96181aad938e453d5a0096c91400a76ad8b8894d0410a92cfe" + }, + { + "id": 2858434239268805, + "content_hash": "b1715ba8d47bd1409cd5a2fc8cb5e830d3e6f48339179bb08d3a47e38ab57690" + }, + { + "id": 2858434239023045, + "content_hash": "06a179efb1548b6825443baa3104205fd6789c41951da006aeed7dcdb9809fb1" + }, + { + "id": 2857598760765189, + "content_hash": "4b2d3cfc6ee86e9cd5e29e9aaa632594751a8126086c0a828a29b107605f3b5d" + }, + { + "id": 2857598760519429, + "content_hash": "26d87a2b18ab964f8ec690bb774c1d056a7821ad27fa26433189745c07eced0c" + }, + { + "id": 2857598760290053, + "content_hash": "eef34af07d814072d7df9380b7caf6002cbab4105b0492be524c5dff2a50d5e3" + }, + { + "id": 2857598760060677, + "content_hash": "d321c4cd5650829b327eeef610cb143604bb729c0c52bf23af2cdc2d5865012c" + }, + { + "id": 2857598759814917, + "content_hash": "43cda51bed40345cb75c95251b76c7f99a8acb18c8472edf65cf8bc9af3ee222" + }, + { + "id": 2857582477756229, + "content_hash": "2141ff622fb1e04229482088ed5033ef5207c54436a518d14de83a368bb23854" + }, + { + "id": 2857582477494085, + "content_hash": "0c26c6e1d65092e8479954643ecb452e15392c032653bc16f993132ec874b479" + }, + { + "id": 2857564324136709, + "content_hash": "b4e2b8807ad927717721d1bcb35be322d631f94a720723f6e2a63c5d82733656" + }, + { + "id": 2857563663599557, + "content_hash": "4318f7e32c00044dd3ed802719ca4cf03b91bb7efaed2b6d426e4a032fe27d6c" + }, + { + "id": 2857521236362949, + "content_hash": "eb4ccb23fc7b169ecbfcf007bffa42d612ac8183cadd87cc2f3ac48889df16c7" + }, + { + "id": 2857515577198341, + "content_hash": "945f0ad1a65a8ec999de737f9546da6179ab18f0814ecdb5e13ce491da7735f1" + }, + { + "id": 2857515576968965, + "content_hash": "07ddb50c5f86c18b810e0d4afcac2a3dbde84747314bb1379d45b73119dbb7a4" + }, + { + "id": 2857493251966917, + "content_hash": "0eeadc28dddc341c9d032e0e5de89d462a416456b76594c0fd9d04eb7648902f" + }, + { + "id": 2857487644804805, + "content_hash": "eab435593cdbbc2740315ded3b8755f0d9e15e91296b35e024a6ea788adb5177" + }, + { + "id": 2857467498678085, + "content_hash": "a1d5b378aa1e649982f54e49455565d47548a9b99ebf4705c923a8e51cd85934" + }, + { + "id": 2857467498432325, + "content_hash": "bfa77d58374e354b3e6eb532a27efb36af1eba509ed7e606321b814f674969ad" + }, + { + "id": 2857455661434821, + "content_hash": "e8b8d4d0b05db99b9d2e6b16b9b295753742beb7df690943b25e3c3c5c4622db" + }, + { + "id": 2857455661205445, + "content_hash": "15825ab0f1e2c885c94616454df43a8b949b17d077bec60b29fc79e9740a7b33" + }, + { + "id": 2857455660976069, + "content_hash": "28df52cea245b2700a8bfb4d10b9555e461c55df03be6672337334028deaae0c" + }, + { + "id": 2857455660500933, + "content_hash": "4641abef56f97c7dff6719ccc6ee84ebf70bf6e7ce00afac8d582739b62084b3" + }, + { + "id": 2857437647455941, + "content_hash": "c6b867840e4d4d78500d97776eb9db7f3102a0edb06a295e314f31cf08fe4615" + }, + { + "id": 2857421476087493, + "content_hash": "19992b5cf0862b6f50ca2828b59a2eecf555baf38f8ffe1d0972bb6bd19f8bd4" + }, + { + "id": 2857353541715909, + "content_hash": "94d8d6aa408b8945db520c2e24c36b4c8475c88a0102338f677d442f4ff48088" + }, + { + "id": 2857275582924613, + "content_hash": "36fee3e84135c3e910e5fa301e5f7e3b8bd66bcb21250127b3d012cc942c9f55" + }, + { + "id": 2857275582646085, + "content_hash": "0311439d45f1d8f714abfd19c30dac61b4f9e0a833dfbab84bef22522e578bcc" + }, + { + "id": 2857275582367557, + "content_hash": "21ba55ac89c85e835fb68ddaba8b741a6d7405809fb4653da15d89ee1d46ed77" + }, + { + "id": 2857275582056261, + "content_hash": "173e7aafce7a07547a8336b799503eb63fcddb58dc424cbd74aefdee1a3c8e66" + }, + { + "id": 2857231782332165, + "content_hash": "cbc54f882e9188a6fd995c667c6a962289d18dea57ffe0ac4a2fdb6a805be312" + }, + { + "id": 2857222442927813, + "content_hash": "07e7dc69ce1d99d9bedcac0a8c3986bf74871abab0fad44b16a29a40b4a0f155" + }, + { + "id": 2857210736346821, + "content_hash": "62b35efeebad0e25392454253e7ecbfe95db95375b7f9198c61fa65c589911c0" + }, + { + "id": 2857210736051909, + "content_hash": "6719b572c85d912a9af345b468627d47cfd795bf9e19560f14f598cdd1a5ae1b" + }, + { + "id": 2857210735773381, + "content_hash": "49070ab6ed2a6809ab0b0d081ead34d95a9c046594ba6927d5734be18a8ede83" + }, + { + "id": 2857210735462085, + "content_hash": "c8bb2941224d5e32b65983f2de875f088352f8f18eb657bb60244bc21b15b3e7" + }, + { + "id": 2857162365634373, + "content_hash": "f6ad356fad6eda24434e3bc11fc8a411fab64f7ba1b68ccf50f6ff3771782431" + }, + { + "id": 2857162365142853, + "content_hash": "f768f881a0742514c926c3962bfcfffb5eec209c3154c7fd3eba3bd4d400344b" + }, + { + "id": 2857162364831557, + "content_hash": "1265d1f57adf73805a1c7c68fdc32c659bdcb9fe9af60044ef7b0424d5b50ef9" + }, + { + "id": 2856211229935301, + "content_hash": "c16a6c7570b7bc6df8b2acea5b2919573960324f5209aae7aade8b449a82fad1" + }, + { + "id": 2856159329896197, + "content_hash": "7befbe372fb77530e5f29e79be05fd41f458dc20d20d752d1f4830a077a07b8b" + }, + { + "id": 2856147952535493, + "content_hash": "023444ba40e2645fc3cb5e1bae05f52f002c56c0875cfed75a520529a47a6f70" + }, + { + "id": 2856078921795333, + "content_hash": "d6f75c405584f8e519eb09071e93ee5525b66153242ae26c882c5331a26b2c98" + }, + { + "id": 2856064449201861, + "content_hash": "33b9221bbdea28b9ea2cb3e6053c99c71575ffe1f5d0de34aea7c4a890808664" + }, + { + "id": 2856058427066181, + "content_hash": "946e752518f11622050002b47fe3ab576e9309393546bed67b03f6dda1662018" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17147, + "records_with_pk": 17147, + "missing": 9, + "missing_samples": [ + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "mismatch": 94, + "mismatch_samples": [ + { + "id": 2857597205137349, + "content_hash": "f6606ab5ce9f739f11e8064354bc2b46ee228ec3a680ca131d98d722a590af92" + }, + { + "id": 2857565328852741, + "content_hash": "814203b676987604e8762c21da670fad2198cd8cc9bc7cbdd3a8c200fcfedb7b" + }, + { + "id": 2857563297974021, + "content_hash": "6448602af07f5dae6747b0cf51aef3912df71fced2ce303500af2f74790b6273" + }, + { + "id": 2857455042447045, + "content_hash": "33c534bdcfc93090192f1a0dce1a7785df627fc21ee6ee2ae1ebecf8a226d5f7" + }, + { + "id": 2857185785841413, + "content_hash": "4d19c70b096ffabd042a82ab1a01bab50575ed3793987de4f23b5c52c7f467d8" + }, + { + "id": 2857160722335493, + "content_hash": "5f57190ed30744230e4ab9af294895b46a58739e0099b3c22a10b8826c0c8834" + }, + { + "id": 2857104323856133, + "content_hash": "ba8de19353dc33b08d9824ab309b7f3fbb7b3a5ad0d9dc66d21818cabc5c9474" + }, + { + "id": 2856331821188933, + "content_hash": "85d676992aa4a8c3fb7c8f95b8819d56d0bdb6b4afafcdc2cc6071abda73686a" + }, + { + "id": 2856323378448133, + "content_hash": "6f8f8797490ee616ceec779954153f139227df036063cca83bfca3cdf5cd8ed8" + }, + { + "id": 2854912864765765, + "content_hash": "9401a706bf6f76bc8a8ad2dde9a5b8bcfd965509f5a9a0f23a312b10d2318504" + }, + { + "id": 2854848858425093, + "content_hash": "497b0aa2b17ed012b9b92e9bbd33e7b13dd28eebb7ac300d488f28c92375c62a" + }, + { + "id": 2853824266129221, + "content_hash": "4578cb165fe6c51933f7239733602d682a18058bc2b33450a173ff7e0277dbb0" + }, + { + "id": 2853485651742597, + "content_hash": "26ee359712a168d2719f47a7e7c00cadd6cac9ee05a38d5da7fe573fe667e2b0" + }, + { + "id": 2853187328675653, + "content_hash": "4e6cd633dac083c7313b1ba3fccecb02afbf6731a8dd493f17aed34214a7c40e" + }, + { + "id": 2852939171532677, + "content_hash": "28d2834b03f10cfc3dec580b453ef10b503af53347e926f8b4f4f13ef499852a" + }, + { + "id": 2852681491566469, + "content_hash": "21b03c5f70a69a4a13189a6087eae481d87044434aab216d4397e69e6301db7a" + }, + { + "id": 2849995927358597, + "content_hash": "710be8934c372dac5ad8dde9869c8231e7d1ebc723e60b1b635b435e76be9410" + }, + { + "id": 2848750878133381, + "content_hash": "4b0eb3f1e5d2a6f3fdc23d7cf11534ec9bac2eec0f78ded60d9531b176420de2" + }, + { + "id": 2848687407238149, + "content_hash": "bc84a3ab50fade7f43eeac78a2dd834445732bf76ecf72638091e4b99c2ad3ef" + }, + { + "id": 2847748005972933, + "content_hash": "7d257af4e4e4c46380436405c687405d192bfaa336a111ccea97d49ea98f38a7" + }, + { + "id": 2847720002030597, + "content_hash": "2a6a8402e3c7ce81ff3a0dde37e078eeb20c7ffa647f872d0b481e5e03f194df" + }, + { + "id": 2847512879270853, + "content_hash": "0dc94d957d1a54abd5340f166bb1e591802e7c7d21faeda54454bbc8f25e2aa6" + }, + { + "id": 2847509834009669, + "content_hash": "f5980ec0e231345df6316c5eeb986a06b35133baaeb4f36273e28f125e1b84ae" + }, + { + "id": 2846252157471685, + "content_hash": "14716e65784b7f65574cc46f0c17a1be04674396125673a73247dc18cc62e588" + }, + { + "id": 2846208127110085, + "content_hash": "1928ab5f3a63ecaeb332e2b851a7ca53bcd1f609829473e42a7f3c34d63703fb" + }, + { + "id": 2846153478278085, + "content_hash": "e1472ace63041c2584fb4cbcb5a88a898309de4ee431d332dadcc8ee3e8b1ed5" + }, + { + "id": 2844990565223429, + "content_hash": "411ddb1b667afdde1d2e9d825de271595ee2e1ec807de16bcd4d142c91785c57" + }, + { + "id": 2844867041496197, + "content_hash": "28bb03012c98327043c8150f8d02608c1ad16d6d8003e85015755ed449ca8300" + }, + { + "id": 2844782170098693, + "content_hash": "8b716b03dd531ee8fa46af3393d78b8ce1dd82af8b215879a77f79e9505d1d93" + }, + { + "id": 2844728833706949, + "content_hash": "630562a6241dbae1000e8fce87c104b0110fa2a0a789db4aea0dd8ff01408b24" + }, + { + "id": 2844706900003909, + "content_hash": "d2600d3a6b66974c0d8f5359770540e5de880483f1da6593efff836de1113084" + }, + { + "id": 2844401427762309, + "content_hash": "7314daa50ac4626f7b8b82bf6640cd1fb4ac469709b0f6042efd7c52d5c55b2e" + }, + { + "id": 2843295798890053, + "content_hash": "b923df98861b4e89328a100a5f10df2d87a235aad92643130ad49f5d9338040c" + }, + { + "id": 2842013535571717, + "content_hash": "cef66d6d02628ffcf335534ecd98b1ca31eb547af02a04a200dc26e1d9201e77" + }, + { + "id": 2841996019076805, + "content_hash": "fbd547f5b9e534e69ae9021f33220847509a5c4f218737f75435a5f13bd5e9f3" + }, + { + "id": 2841939011243653, + "content_hash": "921c45b99b2d531bbfa8410165bccbe9dc02f3607ff67dcbd89021bcbbee5342" + }, + { + "id": 2840823874604741, + "content_hash": "4fb9c64bbed4f83965cf0c1dbf9b4823eb4f6b2a6bc1ef66245bb8ab715ad165" + }, + { + "id": 2840745001651909, + "content_hash": "525e815d5698c331bfb1597cc55c131c9c7251dd548937fb9fd8c3a6c2126571" + }, + { + "id": 2840195556560453, + "content_hash": "90b3d01bf3277fa2c7572c900a345004d56a878adb6e7d74dd19c14c54954cc4" + }, + { + "id": 2839291793787205, + "content_hash": "26ac1948089325ef69aaa27308b5aca0ca9431c48a13c20c8b939c80a7f762fb" + }, + { + "id": 2839012623190149, + "content_hash": "b4fa36d48d1bde3f1d2eb4647bafe86b0d2dc4ec85d69ebcfe27361addf5c486" + }, + { + "id": 2837870503413765, + "content_hash": "ea437a1ee11dc387be943213d99c0aaee76778ea2c770d9e406d963f78da86de" + }, + { + "id": 2837769534163269, + "content_hash": "749ded779029edb5526c3a71c99475a78a79240c4be23d435326d06ba57d97ff" + }, + { + "id": 2837637205084485, + "content_hash": "ff8353d67dd2fe93db887b14b056ee677cdb8cdb0d9308223e5f30f825a205b1" + }, + { + "id": 2837540204742725, + "content_hash": "7f143c2cb197976db73d3cfeb5c02447603994e340822f746dcef054aef3e1bd" + }, + { + "id": 2836326391892037, + "content_hash": "a1d009fba1b6985e8b2d58e13099013d1f374a93e67b4fbbfe5cd25ab0639f08" + }, + { + "id": 2836296941504837, + "content_hash": "db2bb2475d7057aff0d9d6b5ffd33be51ad40a79da4a50afbe01d99f15175992" + }, + { + "id": 2835801587124293, + "content_hash": "f354384a58808d631341f4402613cc1117c08eb0a42a8b724788f9b842a425a9" + }, + { + "id": 2834574686081797, + "content_hash": "f13ca912265585fdc18570ffa6544e85ebf01603009deec2e7cca54812765dfc" + }, + { + "id": 2834546123215429, + "content_hash": "b067a5827be1d1d5aa32923ae62efd39e4827fb8fed9b0402d770e7cd4ae9a8d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 99, + "total_mismatch": 25858, + "total_errors": 0, + "generated_at": "2026-01-29T10:49:56.366167+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 42602 + }, + "generated_at": "2026-01-29T10:50:04.295417+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "mismatch": 3720, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "mismatch": 654, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17148, + "records_with_pk": 17148, + "missing": 10, + "missing_samples": [ + { + "id": 3071831783819269 + }, + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "mismatch": 54, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 100, + "total_mismatch": 24731, + "total_errors": 0, + "generated_at": "2026-01-29T10:52:53.258002+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 35174 + }, + "generated_at": "2026-01-29T10:53:01.050277+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 317, + "records_with_pk": 317, + "missing": 0, + "missing_samples": [], + "mismatch": 317, + "mismatch_samples": [ + { + "id": 2945204668172293, + "content_hash": "ff23525a8cadf6a5562e943270c06bd979db906a05de4dcefa152f55956e459c" + }, + { + "id": 2945201408247749, + "content_hash": "175cf06ecc19e94a73f71669a6aeb05a2915208201ce1f3cd0fdd4cfb7074f1b" + }, + { + "id": 2945191805978629, + "content_hash": "ac734f0fab0c63a3b3d36fded4421db5a51bf1c6eea75b007d8b8f3b2d173329" + }, + { + "id": 2945189731633093, + "content_hash": "774e79c251727d3a924f83402b22521f4f12ce5fb3498b26cb60538ba835b8fb" + }, + { + "id": 2945182894114885, + "content_hash": "5968466009575eeb778df96ef6d6c8c64f3954205af4cc0bf6e3b78de776c078" + }, + { + "id": 2945180703574021, + "content_hash": "d5063d7ecf7113b5bf99f1e21f1da12be340196ea4a7c1f96a1ed12baaf02be3" + }, + { + "id": 2945178503038981, + "content_hash": "9fdb81f2bcc3c8b4678071624e9eff37ea1accfb3a6fd592261a86a066d56309" + }, + { + "id": 2945170625759365, + "content_hash": "9f11c8cd721fb8e1c15d62fff0cc75ab3f52ba7566881e9e06372ebeb336adea" + }, + { + "id": 2945170314774597, + "content_hash": "aae0d68b42de1fcda0713edc95b475defd1206fffc87d82e0501563624e66339" + }, + { + "id": 2945165544638597, + "content_hash": "01486c34ff703c09829a775972f749ceab7be172510fc0bfadf1c3240af9bcb9" + }, + { + "id": 2945163520985093, + "content_hash": "12e3a0729c93ae1318f956cc3c1be387d2837af143e1882ff28cf358b0820091" + }, + { + "id": 2945158720473157, + "content_hash": "14b006169b9dfb7b57e89a7472540ad41c40433ab439ddafc8cae1267efc4ebe" + }, + { + "id": 2945152643549189, + "content_hash": "b12299951385510ef9cafc9288ab361386ef89911f9b6a49cbb9c208354c868f" + }, + { + "id": 2945151456888837, + "content_hash": "0ac2ea9a44d28a421105934a1510470941d53bbc458998a77f28cc4f97184854" + }, + { + "id": 2945145603983301, + "content_hash": "dae1bafe088bcc6a699d929a40cf62a689424c4a93287584197ac2dbd5c24495" + }, + { + "id": 2945141989148805, + "content_hash": "5f16d6c4bbeb2083f353f92aa7ed1c548319d7dfa70820215a54b986afe1838f" + }, + { + "id": 2945141087324293, + "content_hash": "5ef7c8044666ba8ed14ac3f2e2786dfe01bb571b1ff5975b1b6bad7d7d23466a" + }, + { + "id": 2945141039974470, + "content_hash": "cf7d3b5f5372bc678f4bd75b3ad049a55402623aa652bcd28c48363aa7a6f63c" + }, + { + "id": 2945140319651845, + "content_hash": "60ecfbe3ba04253c5f57bfe223ea1600bc017ce790b6ae0d89aced37d5c550f9" + }, + { + "id": 2945131747477509, + "content_hash": "1bc725d7784ddb40d6c698478d26e9ab2c7b1e4fd256ae5be8105507d1afb5eb" + }, + { + "id": 2945131486234629, + "content_hash": "49d42a41d5f89fceae3d282e06d8532f8401cbef2bfc9c7f84158654cb0a8890" + }, + { + "id": 2945127772702789, + "content_hash": "7e3be126bcb2b765a4ef17f93ba6741bc47afa7ccc882097ae46ab222120b4bc" + }, + { + "id": 2945122115094661, + "content_hash": "2acc1d7f3ff1ff00833d5f026ad2044256ae4ce778aa182b9b311985b861e916" + }, + { + "id": 2945117834381253, + "content_hash": "de383855dc93ca7753133a6406134145549bae96ad99ff501f5f1fab8c114543" + }, + { + "id": 2945112963745925, + "content_hash": "0a15532d5ab30a28810e806bc5c0243e63dcc822f923892e2381774d32b5dc0d" + }, + { + "id": 2945112896587781, + "content_hash": "d89c17d0204bdea5e29751724a7489f0e30fe7f1631221e8638e6fb93039b499" + }, + { + "id": 2945112565614661, + "content_hash": "8961a45b7c2a34fc839d4b72ffc647189983a97af722221249b11dca26ad1510" + }, + { + "id": 2945111402514566, + "content_hash": "554ed778b0e299e2e2addc22df34ca99c37952d1cd77559d43ebe805a78782ac" + }, + { + "id": 2945106223138885, + "content_hash": "8adb213b874bdd33e2bb1cad94d7de22234d2c5fac3b370ec7a299887d4e8bc7" + }, + { + "id": 2945105967859845, + "content_hash": "93ba62da0af9de85b6a83672805b200b373a5d241e78d00b2e00b6f4feaaf000" + }, + { + "id": 2945101097994245, + "content_hash": "3590733e805a0e04ba04ec7efee2e59642066a1e2f00be99a9fd053658616b11" + }, + { + "id": 2945098187131013, + "content_hash": "d9e34e92b0b83fab3c1400401fa8a6ece286f4ac249b9024c6441614ec2ecaed" + }, + { + "id": 2945092769875909, + "content_hash": "a08a5ea417f8a5515d52672f00050ae2f85aabc7d86bf383c3276e10928e0621" + }, + { + "id": 2945092354279493, + "content_hash": "a2e5578f138ffeed09a107a9f736f5770176fe683d540784eae4028381a71bf8" + }, + { + "id": 2945091894691973, + "content_hash": "e4107b61d7d32a783bc49da9ad9fe43eb8f9d906a22ad18afd0321cc7e4b0073" + }, + { + "id": 2945090906556421, + "content_hash": "0350e897de651d4bbb2d785d08ebe53c5d3282208dd3454c49d95ffe064c6fca" + }, + { + "id": 2945089824769989, + "content_hash": "d7726a46c446dc5718672e5e0466dee947affb9ed65da9e0266f7be1d6c35b10" + }, + { + "id": 2945088918833157, + "content_hash": "e54361cb566421240e8974b457c61e66270cf553dc52d6292e1714b714a68bf9" + }, + { + "id": 2945087120279557, + "content_hash": "05789a2e212e3556dfb8b3b3244272e8803bdc23d38aa2a6ed2df222cfaa5c52" + }, + { + "id": 2945085344237701, + "content_hash": "adc2d636a019ec65accc14e91d03058f7e6cfb20cc633c54220f1af2eefbf6fd" + }, + { + "id": 2945084806465477, + "content_hash": "36368835b5ffe236383f700ca33c06c55adfa5840683c959b1d89e371720ae4b" + }, + { + "id": 2945068993906629, + "content_hash": "ec58a5b8f391ca1b8f546f705f0bfd6218816d61736cb91078449737af12c966" + }, + { + "id": 2945063041697861, + "content_hash": "e3e573fb26d93a92d7431799cb31960fad135a3e0c886554c11228bbb7d1f7a9" + }, + { + "id": 2945056179341381, + "content_hash": "876dcef6bdfe5d9744b88d4644aa9295ee6c2e1f615063e2f6e7bbf0ecb33098" + }, + { + "id": 2945044294322245, + "content_hash": "f0365bd1e17ed855a1796b712f7bc2743420e5afb5288ff55fd1d463d56c5bf5" + }, + { + "id": 2945044010125381, + "content_hash": "e9465e504dfd4aa317bf9d054891ed8d060dd2d13502788791d4cfbff2068c1d" + }, + { + "id": 2945043313887301, + "content_hash": "0dfa963a6c75f53c006045583605aa4a56dec5ebd8182ad162d118b5fea6807b" + }, + { + "id": 2945039983511557, + "content_hash": "ebabca7e7a5df3ad276ba700f3c4d6af8f056b74a93f6ddf1730773a71aab603" + }, + { + "id": 2945037148932101, + "content_hash": "d12bf2dfeb3ea8131f9b4cc3e7d8865efe21cade2384377a67c2c2ae5e05f225" + }, + { + "id": 2945033889450117, + "content_hash": "05832f8f81dcf44ae6adcbfb12a76422bb96ad8d2fafe1769d46f1d81611913e" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 61, + "records_with_pk": 61, + "missing": 0, + "missing_samples": [], + "mismatch": 61, + "mismatch_samples": [ + { + "id": 2945178713507909, + "content_hash": "589b733b1fa49c5f929a0e23843924ffd7dab0413143925e70cd74510d9f5532" + }, + { + "id": 2945165726140357, + "content_hash": "bbed3d48be254737d7ab632366be06156eb91696a97fb3aa9b7a7fc7b00cd5f4" + }, + { + "id": 2945112764745861, + "content_hash": "28e5c41bf0d2e1a2361ba4b75d6db53574e328025d138afc8c729a267c273659" + }, + { + "id": 2945085410494405, + "content_hash": "4aeb715f96113cfa04d3550df82b0bfbb42d29c9b382d680dfe3a5abfa2a448a" + }, + { + "id": 2945085410166725, + "content_hash": "d3f607c7af78e364fac22470d432e4c9e31d7ccd778d8903921b124e315e750d" + }, + { + "id": 2945085409839045, + "content_hash": "f9c3b1b65955801fef5be2562ab9de664ccd9e74c5f9b5c5c6a623fd363262fc" + }, + { + "id": 2945022155688069, + "content_hash": "faeaa7cc1724e0780f7987c6a77b1f7e17eb3f1e64864e0d7a739090dbc84bce" + }, + { + "id": 2944995526166533, + "content_hash": "2ddc642f9b0e60ec4442bade07f0ae7277683e3655cf93c8317a92694592d6a3" + }, + { + "id": 2944979152177221, + "content_hash": "d0244a11dda3cf799e0e71d9a49035c2b20c7ba1c14b224bb94fee049ac08fda" + }, + { + "id": 2944978182408325, + "content_hash": "4f290cf7c803c7019f512bcc3a423481d804cbb045ca5eb0cd97b5df4cf0be2c" + }, + { + "id": 2944863805720709, + "content_hash": "3582b9da8213d287c075733779cf737b811bc3e1bdb83a9085221cd29fe951f8" + }, + { + "id": 2944745580316613, + "content_hash": "9a68ebb273e05b76de12771c49515cf9f2e54a62ec72f06d494175646b03f4b4" + }, + { + "id": 2944745579923397, + "content_hash": "7e8ffc3214a266c020400f1626562ba6abb4d3a10a6642e0548e93ca31a1d499" + }, + { + "id": 2944745579497413, + "content_hash": "c5854e2f65f157bb681f6d805afaf9b839894cb0abcac29d6814d904ed2b9d54" + }, + { + "id": 2944745579186117, + "content_hash": "6c644ed8026f44dbf95ec4256357ae38eed0015db000daefd29f0c7d1048b40d" + }, + { + "id": 2944736432752773, + "content_hash": "06923a1f99570c70f398600b97f0d7fd49828c55663e8eb8a2ed8ffa220be3b3" + }, + { + "id": 2944736432392325, + "content_hash": "7476695fd54fa41925657a9ed8bb64455a282ab26e0b05988bbb77124d36570c" + }, + { + "id": 2944044330241925, + "content_hash": "8ee5b73a6a6b54911cbef05da33a80fe15fb572c99c9a6a7aae915ea7acb3d08" + }, + { + "id": 2944044329947013, + "content_hash": "b3b90740f31a13c215fc6060b162d3a2fb61eb914fa2e7b4b5031001db020bf5" + }, + { + "id": 2944044329586565, + "content_hash": "fb05af089fddf9025bf67c3ba731de8488bf34cfd84ba4064dc12baa51205031" + }, + { + "id": 2944044329242501, + "content_hash": "5dd451709b45fe09e5a0ece9a30097d3f3283db6c69931d63154b4ee7f50289f" + }, + { + "id": 2943941269164101, + "content_hash": "861f608bf6a89fa3c61eae3e1485c6fd5cd6ebab48e1eb2b6a51ef8b9e95cb5f" + }, + { + "id": 2943869443739717, + "content_hash": "bb92895b62c125ae7a347b50bfdd01b3ce6b07832d65fa5a0cb3bada24054597" + }, + { + "id": 2943831916023685, + "content_hash": "8e8dd79c83dfd6526da5b5c43e4338d47d5d0820b08b6f0288521a059e51f0a2" + }, + { + "id": 2943823635500869, + "content_hash": "bca74525f6cc06b87021e544d1155e0d87ec690e29806c19bd69261b081dc79f" + }, + { + "id": 2943820475092869, + "content_hash": "d87c7217898c83c16809638003f062c05cee266229d43276a03b13d90abc64d5" + }, + { + "id": 2943820231282501, + "content_hash": "20a34c9d8d27b4cea4fd1560ffa3159a5ca69998974f1897b6ac569d345def71" + }, + { + "id": 2943802963169349, + "content_hash": "89442895ab8d2554c6d2e82702ba5f8edfe199a7c83eec3afe2ba78e486263d5" + }, + { + "id": 2943802962858053, + "content_hash": "cf3078346750b84a2d2e68160f21658fadfe2248e5c3300f52175bbeb62a118e" + }, + { + "id": 2943796812484677, + "content_hash": "549f0e08ca2a9ba052d6594055b34c0b9519b4eba57b715d5248450e33b9d924" + }, + { + "id": 2943790057689029, + "content_hash": "b1638aecb921a1af50f743460ef0cd8ef68bb70a6504d6d21e8559a938a6de16" + }, + { + "id": 2943790057295813, + "content_hash": "09c08ddbac62f653b5e54a0ab5cd036f00864d53fd1ab4c8536cfb7ecb31477b" + }, + { + "id": 2943771106250565, + "content_hash": "613fc98749bf04cafa181cea87b8510de52330e45f11b1ab644b1d3912265a11" + }, + { + "id": 2943654372134789, + "content_hash": "2d57ec2f1565992049ba12f904bbc51ad968b48243f66b3f9d8795f9ba73790a" + }, + { + "id": 2943654371823493, + "content_hash": "7589ee63f44ae3c93e223b2ae28979126d5688cc61583a5b9c79bac3f84a9c84" + }, + { + "id": 2943640900603973, + "content_hash": "eb4b6211ded5760b20dd281b3010658ebdc815845418e0e81501494fabc5fcc2" + }, + { + "id": 2943563126853573, + "content_hash": "944a85939871bdcb1cd2088adb8941d14ebc594f7f2296c070309c86bc0c7c5e" + }, + { + "id": 2943557818191941, + "content_hash": "45cc1a992e5a084858bd0d2ef293fc4c991e8c35a4ef5806051b92aae4054d44" + }, + { + "id": 2943465910325317, + "content_hash": "b3298cc6ad76ea7805baa998b92b98130a33a6f3e7b74d8984935ae0b9468e4b" + }, + { + "id": 2943438601064261, + "content_hash": "eb55f5eb67fd909cea5c656eeee9444d9eabba2d56dd57c0f0c61dbd19f8c404" + }, + { + "id": 2943407127564101, + "content_hash": "5c9cc50056508fba63f5f86ea90d6a738fff1671331710b756bbfe87ad8cd39e" + }, + { + "id": 2942708034097221, + "content_hash": "7be382e8edd581f58b3dfb1747fa693c7a01e1fc9bd8011f7b0ef20e012bac08" + }, + { + "id": 2942452376244165, + "content_hash": "24f6425bcb083c3f95b14c730a884244993290d879de3b71ee7b665f2db262a8" + }, + { + "id": 2942437132767109, + "content_hash": "f4cea74362e8dbab972833e888ee61235d68023e62fdddf6bdeb62c940629bb1" + }, + { + "id": 2942400615174085, + "content_hash": "c9b35e732957308d5f33f8c5ee57721aa6d983fe116a7b6b374f7a1065cd7c08" + }, + { + "id": 2942400614764485, + "content_hash": "0788c4041c3cef7a684d3875b410f9c0ec3f958481ea528b01606ba3ef160088" + }, + { + "id": 2942400614404037, + "content_hash": "77159d461422f5b6a5708e9d288fa8367c0852998db174e50e014d48b6e98223" + }, + { + "id": 2942400614092741, + "content_hash": "ad49cafe6981beb1c112ae3d8e1d2a92e821f9f08aa00edc08a74f3f19a11f46" + }, + { + "id": 2942400613797829, + "content_hash": "7a8b9500403ec1d5462c30f632076ac336f68128024218a466858ffebfd918e9" + }, + { + "id": 2942400613502917, + "content_hash": "701d32d2c2e5c00551df916eae939e13098a3b9ce46b78f401bb33e883143eb5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 1, + "records_with_pk": 1, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17148, + "records_with_pk": 17148, + "missing": 10, + "missing_samples": [ + { + "id": 3071831783819269 + }, + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 5, + "records_with_pk": 5, + "missing": 0, + "missing_samples": [], + "mismatch": 5, + "mismatch_samples": [ + { + "id": 2945086921656261, + "content_hash": "ae94d3b1b2eb5af645d48ec01f9f5e56ab2673042b33850653ae0bf7b66fadf5" + }, + { + "id": 2944744609302533, + "content_hash": "bb3b7cf530ca7a95d8080dae757b3987ae57e32ed5998239903a7fe4dc38b464" + }, + { + "id": 2944743805700165, + "content_hash": "d85ef07033e51ee63b710f0df84ca2abfd04e55091608a9a25c599c3f0e5df00" + }, + { + "id": 2944743412713605, + "content_hash": "40140e93cf91773baf6703fbf7c92e0cf7cfe1c12dcda979489b7e5587b4f904" + }, + { + "id": 2944055920218181, + "content_hash": "c166350a317bb5c53dac624a1c2ba60e679864a7eafecef992c527bcdf1896aa" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 539, + "records_with_pk": 539, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 322, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 322, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 100, + "total_mismatch": 20686, + "total_errors": 0, + "generated_at": "2026-01-29T10:55:19.490463+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 41710 + }, + "generated_at": "2026-01-29T10:55:27.326422+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "mismatch": 3874, + "mismatch_samples": [ + { + "id": 2987664092500677, + "content_hash": "326b49398bdc4c24f72a8a20c0b7ccc4bcce4bb06730b7a8763bd443f521bda3" + }, + { + "id": 2987663077362373, + "content_hash": "4f86f1ec066cc1a92e0af69c226c5d02a65e0d44b1bc4fd829dc0b406cddcb42" + }, + { + "id": 2987654698209861, + "content_hash": "efbf859120b55c87bbbc2e4e8dae952d0095468ede82a359f334638893d990f2" + }, + { + "id": 2987652991128133, + "content_hash": "e30ff0081847b829a110081f6b7dc6f6a17332247a3c7b2f3e9b94a6027c5e79" + }, + { + "id": 2987648825152197, + "content_hash": "24f07f3ffcec41d9271ddb38f0c90f3bcc487d45e95dbda6999c6d89a07c641c" + }, + { + "id": 2987639361178245, + "content_hash": "0a9533619605c73f5d24a5db7b8330cff8a39f7f2c053471943d7ff38e7195f3" + }, + { + "id": 2987633957571269, + "content_hash": "6d50a4fee459f8ae3c41eb6a35b31e29a135dcb9192c4717985a49108ef6fb7a" + }, + { + "id": 2987620103686789, + "content_hash": "7424436626087647e49cf764b065941c9d3a42aabed907caa23b37b7f4b69009" + }, + { + "id": 2987607445262917, + "content_hash": "861ac542d05ee1baeacce16a6aedd78e0670661692f3a0324705b689f8d11e06" + }, + { + "id": 2987592132676229, + "content_hash": "a9fe11a9afcd64e437dce66f7b3acbdf0827fdbde81bc5d6643273af9eca899a" + }, + { + "id": 2987588384281285, + "content_hash": "8f46c5c4297f1fb5ea96c8e64fb6f1d9a0329c729b6dabc29ef2a6cf29a4625c" + }, + { + "id": 2987586189773445, + "content_hash": "f1d4a1df59121902fd9fe0ff34b25abab093d7498e8e39a41da7595a5d3f3297" + }, + { + "id": 2987584085643845, + "content_hash": "e005ca26c978342fe869afcb029c722239e84bbb5e49138857b5d40695cb45ab" + }, + { + "id": 2987582301080197, + "content_hash": "98c40b3518530b6693197b8c86d7847a6069d6d00288cdbbc47f05f78bfe8285" + }, + { + "id": 2987581875032773, + "content_hash": "3e64e268f14601b3f2fe1b95ad3404e6322db008d03fb5ce6ab56a03f113638f" + }, + { + "id": 2987578047924933, + "content_hash": "b081e6f8a09695875cf664675af5aa53ac42eee405790713dc349d1582ff7274" + }, + { + "id": 2987577171153477, + "content_hash": "a6ae5825b68ab2cb3be9289cf4daced9c5065cd7e46cf5019cf8dd0fbc5fae28" + }, + { + "id": 2987570888331973, + "content_hash": "07275cae4715a1c065d459c6347954ec87cd8471ff6b706c6e22092ab0800a05" + }, + { + "id": 2987566778487365, + "content_hash": "2d7450cb2586747fa27f6ff47785ce28bddf8bcc601d45f90e35b185445e0613" + }, + { + "id": 2987561781973573, + "content_hash": "f159d7b76229ff1d9b79ee31307720a9358aa3403d9c646a23d8d58961c56e8f" + }, + { + "id": 2987561189118533, + "content_hash": "ffdf26cce919ba853b3f2c41e54b83d5b3737fcde421a3296f135397ccb4559e" + }, + { + "id": 2987558686691909, + "content_hash": "e4b704ee294f59863d2de16537903e8d1a25cea383fcb21b87b0cb7479885a69" + }, + { + "id": 2987522603141765, + "content_hash": "68554d3ddf00d4e07a6f66beb88eec5e10391e29eaada3e3e68ee4940661d86d" + }, + { + "id": 2987519252712133, + "content_hash": "e37905240d24ccb1688418f0ce16eaa0bb1cd813c430caea36dfea616586383b" + }, + { + "id": 2987519191468677, + "content_hash": "3bc6d277ef1bf31df8179b63ec34e8c5e1fbe3d9836461893e9cecac4a412eec" + }, + { + "id": 2987514633898693, + "content_hash": "00f0208cf7b6a93455abe0d80e84e22356fb999f65fa8eaa086fe0438a34065e" + }, + { + "id": 2987503060535941, + "content_hash": "a475a22494a0aefc048c05186eab8dfcfbc96ab8d9b3b9c210a78a6f27a300d8" + }, + { + "id": 2987501265752645, + "content_hash": "522e4f911d06e5734b0eeb03d9c7484f6dda5c61aed563b3b56ebe5de6ccdef3" + }, + { + "id": 2987499595008645, + "content_hash": "f0718ef7bffe0e64288acd793856f2f6b922734b2f688aebd61c7c2b8b553484" + }, + { + "id": 2987495092390597, + "content_hash": "cbb6a0400e493f401a83ff1adac30b186953193c07392e0900c98b57317409d8" + }, + { + "id": 2987489028838085, + "content_hash": "ebf1c7e2bdc9782e1399cf472a6cfc655efba22e5df714c952be6c620bcc896d" + }, + { + "id": 2987460555688581, + "content_hash": "0ee6d12fd6038a3a61ee754307ae1d6ed428fec912cdf942f5c97c5ffc2d6506" + }, + { + "id": 2987457814399685, + "content_hash": "684221e9399afbc4b46226c13eac6b919f382d6e5874eb3c22c775b284405d7c" + }, + { + "id": 2987455436655301, + "content_hash": "8dfed4f17d3a9349efc672260353ce22e5bb77a439edf4f6bafc2953b50797b3" + }, + { + "id": 2987449433920069, + "content_hash": "c48768efc6e480cf635d5837be37a0240948b8b78820f293c24169f4fbcfc4b0" + }, + { + "id": 2987438796755653, + "content_hash": "f3fe8ee5a35429b482c16491da2ad04062a73353252dec7580dfad8c52324f63" + }, + { + "id": 2987421725018757, + "content_hash": "c33f8b43f625b9d721b9b797407f3f65bce7c3ea1d2c825b449ffcbd2ecbc97c" + }, + { + "id": 2987408042218053, + "content_hash": "5b8c3c85afce6786c9dd1a6ab7c9b9cc239364951fd5e5017bb1e65c9d7488d0" + }, + { + "id": 2987402534425285, + "content_hash": "49e2a55a5f4ef051c99eb90a4a2a3180edf5d2e49358102aadec1e9ed4d9df9d" + }, + { + "id": 2987396039084677, + "content_hash": "697c93b8180196061d9dce8fe29c0742a74abb40abb864b1009d652ef046ad9e" + }, + { + "id": 2987393076253253, + "content_hash": "ec84f3fbdab7c968f82bcb103c5c2b76a18e784191a007cac5c8598c7039b69d" + }, + { + "id": 2987388705641157, + "content_hash": "bce6efcb37c731377bc171edc3be0ca5ccd84e72a6f9d6e03f0d4b264c9d81c0" + }, + { + "id": 2987379205130885, + "content_hash": "4bfea9654e6054069639f0e5d001252af46647b2230a22cba451f3de40bad0e5" + }, + { + "id": 2987378420093509, + "content_hash": "09b11f6b1568739a6b9b83aa9f3d6d8200a2ef99f32d11ba8e6411408cca0a4a" + }, + { + "id": 2987367534236229, + "content_hash": "b17c8ab98d1df0c412f05a320635e7c04fca3036818bed999496d0914b4e0303" + }, + { + "id": 2987353674549957, + "content_hash": "289824cc1286ce8dbce65c90a5a60ebadd9a65bb4ce4fa8bf3483907d30eac39" + }, + { + "id": 2987349953399493, + "content_hash": "23a3acdccf3a8794b7c45bc8a9319e346c1c92558ed6efcafadf4484f4f887fb" + }, + { + "id": 2987347059790405, + "content_hash": "8874ea4e33c87c414c54b6351aaed4012e7908c2ad8f949f130c8b3503478b47" + }, + { + "id": 2987346537370181, + "content_hash": "c2b141b28705ecd8faba5d4a6114d227c732e1a70068035e6a676361d45db1dd" + }, + { + "id": 2987325464678981, + "content_hash": "75977f36fc214a4c983fb41ec7ce87108f88925572f81bb1f91cf4878cb3f779" + } + ], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "mismatch": 884, + "mismatch_samples": [ + { + "id": 2987663460700741, + "content_hash": "e315c5bf90846df76fa924b913c11685b71b03bfa8ee5e95a6a4b7832c1fd04f" + }, + { + "id": 2987663460274757, + "content_hash": "0bc18f1928a2c91878ff54538fc520893d3b9f70f27a9f7e87f3227b95beb2c1" + }, + { + "id": 2987663459832389, + "content_hash": "29d54bb5b83cffd600da0ad092cb637cad199b7ce8ffccd09e13cd19f8ebec9b" + }, + { + "id": 2987663459471941, + "content_hash": "25fc62cb3978ac77852f5f86cd72c58db8effbd038b6e75dc123330ea5493752" + }, + { + "id": 2987653170547397, + "content_hash": "4b43d2d53dfa4bd34790c058b48202666db7b5d230dfae7c48718150ee15a6f4" + }, + { + "id": 2987634281417413, + "content_hash": "48792bfb460f1480d55adc55573666e0294c5f443f9802b88d7d58be51738d7f" + }, + { + "id": 2987586289109701, + "content_hash": "20e0a388c9553af04694972be86203f012efd802bfe5b6228afe8183e2faf5ee" + }, + { + "id": 2987586288716485, + "content_hash": "d5bb1ba0f7719fa5a5b57130079c8b121c82ddc4bf2a28a92fafb043237ef6db" + }, + { + "id": 2987499743824517, + "content_hash": "dbec4464aa26c822e777160ff7a18c884ac50e4213218cbdae9f660119e0e41f" + }, + { + "id": 2986678250670725, + "content_hash": "2375d229452be15f0fa7ed4802cdfe0e6af18476309a9efe4d24cefa383c4ff4" + }, + { + "id": 2986482185095877, + "content_hash": "a596223eedb3c60e7bb5542ca4162018a9038a1c87e5242edfd8cb3514ba6bc9" + }, + { + "id": 2986482184735429, + "content_hash": "6df5c1b77324d2f61c8b4ed4954ca9df22c768bd6c2dfe8d87a2355a7149bd44" + }, + { + "id": 2986482184374981, + "content_hash": "31c58ce250a4c12ab3ed4f329eef26ca6fe3380555391be01e4c1cbc21ec9ea9" + }, + { + "id": 2986482183965381, + "content_hash": "2c8925212d495cd71da8bac760a6bba6712d59b6e756d31e35fe24e361c58622" + }, + { + "id": 2986482183604933, + "content_hash": "8cae10a4c04b88438f9466aa9bfbaff76d0d67874ff304e4d8c588753857c154" + }, + { + "id": 2986424503093893, + "content_hash": "38db526fa74b8473ec8baa2977a9b96bf096f84a9da867b30854945822a3c480" + }, + { + "id": 2986424116466373, + "content_hash": "55ce460c2dd47c049c172afab5a2f5e637fcbfd901c6c7daf97a91bd07cd4367" + }, + { + "id": 2986424116105925, + "content_hash": "f2b03fb538482ed018a496c09d36bb3f6e67f2cd3134898cbcd86efa2fa05d66" + }, + { + "id": 2986391265481413, + "content_hash": "d10ceb55458a6b9fbe8c24601a51b5d1c9c3bedb2780c168918f6d1e375907f3" + }, + { + "id": 2986365173732037, + "content_hash": "21eb1d57f253d556b52778abdc867c1525fe9f66f6e1d300165f22186a1f7ec9" + }, + { + "id": 2986355294065221, + "content_hash": "7076421b410eb3e23999d75ed8f99466cdab498d14dd079e1bb680c82c314afb" + }, + { + "id": 2986341875878533, + "content_hash": "bea4cb01272aa72b72c8c65286cf803cafc524f34f60e3a7fa28ba01476cbec5" + }, + { + "id": 2986315575825093, + "content_hash": "c9639f759555b95f09e6e77462874e13acc24e4d128a94d018b92632cd42d824" + }, + { + "id": 2986287314440901, + "content_hash": "329e61946c99c054df9547e4e6244af49a4716a15427886fa33fc4fb5989e932" + }, + { + "id": 2986287314014917, + "content_hash": "d9895b468c841ff6772513e529bc15478a4ecbf2564864a12c3b9c609f24ca03" + }, + { + "id": 2986264035611333, + "content_hash": "c84a4890b60ae7af9e103e59cc5cb9cb0f8194124a098d5e550dbfd5f8333ff4" + }, + { + "id": 2986177659163205, + "content_hash": "074b348f83ee542d1d28b37fea7095117718c6a9a26d07fa5908f3f2f459c82c" + }, + { + "id": 2986177658802757, + "content_hash": "9026d6507ac831f57c0f4d986e85f7129f471a34e5463d4a97a7d7cd353bdd53" + }, + { + "id": 2986144559958661, + "content_hash": "881bda0f404005ef028e44e1399294123da8bca8664eee20ced7676a9ed80fed" + }, + { + "id": 2986126991182469, + "content_hash": "8ab9f3563bb350aa2243908bf0a5cc61f6839f78c5fd45fc83cd8a860f0f8b23" + }, + { + "id": 2986083544255173, + "content_hash": "da212880bf25a254d9f946a20ed604a0d63f0709731ec5c7dd06801d8ec4492b" + }, + { + "id": 2985985925171845, + "content_hash": "d22e95e9a73f82b8d22a820ffcb9727f5c007c8fc1ecfcec8d957f8c10d6c69a" + }, + { + "id": 2985898409544325, + "content_hash": "a4fa2411695306ec04223ed2af7a99f8742484bd7e81c0cba0bee6d125225ebb" + }, + { + "id": 2985886071032453, + "content_hash": "b75fabb7236c201c5ee926d58ac209f5cc10f924d49fccebb208af44dc267cea" + }, + { + "id": 2985381807131333, + "content_hash": "cf1c965fb8d5c5e817cbe412e020d78f99e5fcdd591958e72df88fad9356efa6" + }, + { + "id": 2985381806787269, + "content_hash": "ea64dfeaa9fd1d903960f3ec67cb88efe718c19581dd47486bb25114dcea49fc" + }, + { + "id": 2985381806443205, + "content_hash": "9d56aaa0d9f590f344466775e51d620445ab712c3b2a4f3b21d032b2c83cc0c5" + }, + { + "id": 2985381806082757, + "content_hash": "fa974be65e78c4db85e7f49d3a6e05d8be441a8f40a57385b2b464363d01936f" + }, + { + "id": 2985381805738693, + "content_hash": "da7a899c6c410202b6f5b5505f1d0ac8fa100d97b77fff450ff2a51e07f54835" + }, + { + "id": 2985381805394629, + "content_hash": "508c9d64d26945894289ceed8362a96a2efcbe21c8ba5bdb92b6b57994b347b5" + }, + { + "id": 2985381805034181, + "content_hash": "990028e514037473f0faae0d1b81db64ed9c3f6a7f11c7af7900276b52bbdc6e" + }, + { + "id": 2985302363802245, + "content_hash": "482a12a187af0881fe88c03390687213d6b9657ab871ebdfca1e69002d8d1720" + }, + { + "id": 2985302363359877, + "content_hash": "97f1366e8e88d0cd6b656d9da35c65746bcda9db4c84e748c796811b231645e7" + }, + { + "id": 2985290875048645, + "content_hash": "a3235f918da1f511325f2b6ee98062af41df6668fe6060f8a9432c48e6156370" + }, + { + "id": 2985290874688197, + "content_hash": "c16bdf6f0fe096d1d117c634121c0db7e9dc1ad577dd1ebecc66b6aaf1fbb24f" + }, + { + "id": 2985030135204549, + "content_hash": "ff6d258de4fc531cbaf4873c4cf811cf68d7fdec222ff67006b38e05fb1638ed" + }, + { + "id": 2984949344277061, + "content_hash": "b2d91041c590e54e62b8e5e70fd33ddf29b887798e77e97aa1fee54483675b95" + }, + { + "id": 2984949343801925, + "content_hash": "3fd5b28740bd5f242630de0490383cbf6d4f55875b403268f82cd1ee376d7488" + }, + { + "id": 2984949343310405, + "content_hash": "f1daf23b6beedeac9c30cf2ca275b55ba576799b79a973839ccb5f19d084eb57" + }, + { + "id": 2984949342802501, + "content_hash": "82459b7585d58113bbb8582385390503193294c1f5209ef319e2ff5d8fb17504" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17148, + "records_with_pk": 17148, + "missing": 10, + "missing_samples": [ + { + "id": 3071831783819269 + }, + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "mismatch": 80, + "mismatch_samples": [ + { + "id": 2986677313868357, + "content_hash": "cc07f6d3991f5fee63a289fd016196de4f3d41f108a3f5b30e5d8896c9e4111a" + }, + { + "id": 2985941619888837, + "content_hash": "68f6453784e36f2f5bc32f8cac656e22c95288a41a6942e455cb373fbf74e421" + }, + { + "id": 2985380898411077, + "content_hash": "982452b1d507612c83a303952a5bf88284b61a774e713b17434e5953d4347b2f" + }, + { + "id": 2984898600487621, + "content_hash": "94efbadc6d6b955c92fe0b26333d8dbfda6d752ea33e8996560ec142af3fec77" + }, + { + "id": 2984856291283653, + "content_hash": "c3797d7e863a407ebe261550f65f9aefece32e7fcc8d5bddea854d043d08de0e" + }, + { + "id": 2984799421616709, + "content_hash": "0e43a6505d49416760d1dcab3f08a7a1e1878c1c0b09c6f01c5c16f3887ab3c4" + }, + { + "id": 2983452384971461, + "content_hash": "1bad0199d8a66087ab21b6f5069b1e951a5d5ae9e7dfeb485143e758686c3a80" + }, + { + "id": 2983144485210757, + "content_hash": "b32792fdcca06b828c590d743e2b5f328546aa01aa389af23b6c055dbf39e48a" + }, + { + "id": 2982031611988677, + "content_hash": "6d1942367320e2ad0023a4321867cbf99bbce7d5ee960082d87aa93d6ab48ac0" + }, + { + "id": 2982018382271173, + "content_hash": "9814c3c1c65b5db4d74715dd3cc758795f8f77c908e68b853a4fcf409e8d886f" + }, + { + "id": 2981925220717125, + "content_hash": "53e95b65966848ce9a85bccfc46ac136d3eb22ea7bb370eff190edbb94744e8e" + }, + { + "id": 2981788225933893, + "content_hash": "c3d35e9ee7ab100dc7530614bb5ae34e5d3ca8d9e80a588a0123ea14b3ca8cb9" + }, + { + "id": 2980722435983685, + "content_hash": "550c892046064b770f4cf8229c586fd4b1004f3041ea40f12dc941c32dbacd2f" + }, + { + "id": 2980066463499717, + "content_hash": "f0ce732ba1fcbc857d92125a678f91cd356a7d81a619f8403eb7bfa5110dc463" + }, + { + "id": 2979066984990789, + "content_hash": "8bd6eb4299584b9f7770d538b026d70d83ba411dca5b9e0480fec9f4437f0647" + }, + { + "id": 2978789978572933, + "content_hash": "e4ca24de714c215ba97a8b299f4b234d3620483301376eef3d9c645e3ea37883" + }, + { + "id": 2977461355956357, + "content_hash": "ddf55f51b4b15af59a7bf98b3e1d2b17c4dc1f5c105ea8f7900bb7c7edd6d5b5" + }, + { + "id": 2976471067346885, + "content_hash": "155fdc1fd460376d5ebf8a526c06f58269e8dd33f7d79344a5afefdebd038e0c" + }, + { + "id": 2976465941923781, + "content_hash": "a5b87c9f26c078f5af84764859f0c781e9b3abf4f82ca6c1f4a0265924f8a21e" + }, + { + "id": 2976403670828997, + "content_hash": "e9fe4901829f55d9023465e7aac970b66c608a314df6e8dbcc47721275420104" + }, + { + "id": 2976395099113285, + "content_hash": "40ee4cbe6aae255251aa6f638b4f7d42b88867f760ef3a1ddc8c943d606987d6" + }, + { + "id": 2976377255905349, + "content_hash": "2022daa8e194107921b2af00e2311b7acde1b689e24073368d717cb9cdfea9ca" + }, + { + "id": 2976362439329733, + "content_hash": "4e7513cc02ed49a62009911198735665f0045150d22cd04f2b117ff41af8565a" + }, + { + "id": 2976268497094725, + "content_hash": "af3f9f44fbe793f9fbd145678297dc0bd18586ccf0d7da3f5354bb8b3d812db1" + }, + { + "id": 2976185479891077, + "content_hash": "1fb1bf70cb151c25b435b1081fa39639623aa368c649751a97cf195feb764b3c" + }, + { + "id": 2976060709603141, + "content_hash": "3f3cccc0206c8cf133b424e9c4032bb1cca8378186a2e3be8ab4cc7cec35f82c" + }, + { + "id": 2975639522907013, + "content_hash": "901e89772d00a06f3e7d586b87ad4adcc7c4cdc089391880284dc2dd2a990ec9" + }, + { + "id": 2975065779901381, + "content_hash": "3b8a5abecc800d1bb15687f56136718b9547491fefc19a9fcd28ef3d3a2b50e5" + }, + { + "id": 2975012817359749, + "content_hash": "c77a589dd58295c36e7bc77b204e4ee8b07ae52de5eef3670113243a8a6ceb8f" + }, + { + "id": 2974770844734277, + "content_hash": "e303c6d5e8c877bb9f5fdb4cbd887b6a77600ed5cd6260f72544436d845e23de" + }, + { + "id": 2974179320681221, + "content_hash": "8b00736a299d870a753afd291973559af0168a74d1786ee1659f93ac004834dc" + }, + { + "id": 2973596878050117, + "content_hash": "d77d0e02b8809f2b2179d6d7ca6ea045cf718acb26d2b7f28f460ea0d3d2ec38" + }, + { + "id": 2973596582482821, + "content_hash": "7ae3bfca722179c7d04b469f848c586e3c4275f0fe22c60eff7cf8ec6abe60c1" + }, + { + "id": 2973596396589957, + "content_hash": "0c1108af8d9844d04f36ba287534234237814e6cba2551b5d5dba9ff71864bb6" + }, + { + "id": 2972320622480261, + "content_hash": "16492ad5944bf03a6b66d89f70805ce0623e5ccdb5b3560cb515b94c81f61af1" + }, + { + "id": 2972037539189381, + "content_hash": "ad339158f91356f60ba517a8d57c7b2a920f4e5ae1976194361084ac50fb2d7b" + }, + { + "id": 2971902677291653, + "content_hash": "405fc7ae02cee4be7d198fbb90c661ac4dc4b9e484319b160c19cc4cd2a6f2f6" + }, + { + "id": 2971114465922117, + "content_hash": "f6f90bc167e4d107f6ce42d4aeeda91dd9746f5447243f796365acafd1f26be1" + }, + { + "id": 2971000773249925, + "content_hash": "9b52f435689ce17920d0afa4d5e0527ebf2a49901da313c7cd80cf7b5f137bb3" + }, + { + "id": 2970966600027333, + "content_hash": "8fe65106970a7592f45eec6122003176c9a9f87bcf4d38771e8d309c8a9b6b5c" + }, + { + "id": 2970841516526469, + "content_hash": "e506bd767b2b6f7dc66e4dd4720db047f697bb0b2d15e6832c09fa8f3c3d6884" + }, + { + "id": 2970668399725765, + "content_hash": "8b37f68117d04498628186475a5b897164e36963d39032da75f1e5ef94acb15d" + }, + { + "id": 2969416198360133, + "content_hash": "14d7ac001494ce966e822682cf8121028c9bd55188e34ebc95b6522be958c950" + }, + { + "id": 2969257323105349, + "content_hash": "16a1c4457f0062cfe45dea5db51e5702815a566a8a605393f5d6479863a41513" + }, + { + "id": 2967042296235909, + "content_hash": "3d6a3fbae4b04cf5131f3d67b2fbfa5738241b2884952e2a6fd95db056a70fa6" + }, + { + "id": 2966452584695685, + "content_hash": "e7e096b5ae26ee314fc5231a31df3eb5dff4ed728113bedf144d3754755681ef" + }, + { + "id": 2965449916401541, + "content_hash": "d5959069cd0a74da307fe466c046276dc2772230a1d286da26d4538cf67285f4" + }, + { + "id": 2965095228901253, + "content_hash": "473f1d009b91cb2fdaf7e9257e7689bc8c6a81115c9e710e8f01967e68a51576" + }, + { + "id": 2965087688984517, + "content_hash": "a2ff7a4a0189a469a26c751488283db7f4c3e87e51f2008cce2d4b60d7534f8c" + }, + { + "id": 2964868528244421, + "content_hash": "bae4d7256fd71d4cfd58fe3ff5a8017b0d8950acc79b7271868da4fc390f871a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 100, + "total_mismatch": 25141, + "total_errors": 0, + "generated_at": "2026-01-29T10:58:19.104287+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 44289 + }, + "generated_at": "2026-01-29T10:58:26.873490+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 28, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "mismatch": 4011, + "mismatch_samples": [ + { + "id": 3031553686703237, + "content_hash": "f83d7d6f73acf872968b00669924820512ab35fb8393d820d4c3e31ad22ae065" + }, + { + "id": 3031547940670280, + "content_hash": "b472d0386988e61ec0a0a5069cf3301727c1242d339dfb2465d380bedf603faa" + }, + { + "id": 3031535591836485, + "content_hash": "073cbdd10ed7f5117155dfb41a5637ce74241795673e59e530e2cfa50c53e113" + }, + { + "id": 3031529344240709, + "content_hash": "83831e9c486205fbb5c5e255d06a61033d98cfe1886f47fef7bdd63620a259d5" + }, + { + "id": 3031529237056325, + "content_hash": "bbea6591245bf57bb5f491755dcce053b0c5a6ca96a4e9561bd9ca79b6708a4e" + }, + { + "id": 3031521233439621, + "content_hash": "5428b6a77d443aef63527d59d391250917b9fb72f539b25e06e22c24b842d37f" + }, + { + "id": 3031513938643846, + "content_hash": "cf7b90d457bc69f65ad49557c96389875d8fd65fed8db394dc6dfcac79dd3165" + }, + { + "id": 3031499419946117, + "content_hash": "1788cf29c22f49fcf3df5f20898b717965e83440e577e3b6cd16f7d9ee3d5afc" + }, + { + "id": 3031486643047557, + "content_hash": "7ddc20f3e22faf7cb50b17589937b3ad1ded3e6058e73f7733210f2fef06bfe3" + }, + { + "id": 3031484182924165, + "content_hash": "f66c9b6e5996db54e6961c3ad52a2233672372afabdbb4ed1305e546f65e373a" + }, + { + "id": 3031484101413765, + "content_hash": "21e46e157710778fcf9119efe16c95cfc9b7b9590094b24413cb32445e473f5d" + }, + { + "id": 3031479293807749, + "content_hash": "d988a9cccc0fd24db2307c23a57130997f30bfcd2fdb27e0b5528e4a3fbd84fc" + }, + { + "id": 3031475511872581, + "content_hash": "474df0d2976d27b907252587e52224d2207a8e6b6a08a905b0af36df24cccd59" + }, + { + "id": 3031454711647365, + "content_hash": "bb233f7182999b3b06192f0cc990388226239ac0349e49cc6e397863704d99cb" + }, + { + "id": 3031452319845445, + "content_hash": "4372f4b88148ba64f813dcfd3851a4466c28912f7ae13e77d8c2cc4345aabdb6" + }, + { + "id": 3031450929449797, + "content_hash": "0a6bd9b9d3d5e4c03accd00306efc383f33967ab83eece9fd58d57eb5626729f" + }, + { + "id": 3031428914187141, + "content_hash": "65d4d4f56b19b18a7fdc4cf1728520648ae5b8fecfb759ac3a110cf39dd1222b" + }, + { + "id": 3031428697885765, + "content_hash": "f8b2cfa7e963eea79dafbebd18f1afcc09058451aec032674437078c9aa1168b" + }, + { + "id": 3031427656207493, + "content_hash": "f897238902fe484dcac51e0ec87b446ae23e6cb0bc9b9551a4ba4b89d847d6e4" + }, + { + "id": 3031427544321093, + "content_hash": "2f7b9450da507cf5c5e506d73ff792b6138988ea37dca5254d8a4188118ebbcf" + }, + { + "id": 3031426139982661, + "content_hash": "bdd76f5df62e1080507876e8826e100f07deed2fce3b02508ac595fda565ff33" + }, + { + "id": 3031405829328005, + "content_hash": "1901cd50fac1656f61a9f4d4d5b5d182894009a786733559e4c6fabb36f7516d" + }, + { + "id": 3031397144202117, + "content_hash": "1f4fb30235f26f628e71a86953393374ed2659c9c7f7d15a95f4a6736cde141d" + }, + { + "id": 3031397096753989, + "content_hash": "1facbeaa4c60df4826a065f66073aeec7fce1fdff32233ea5bdcd4572f92c5f7" + }, + { + "id": 3031393829702469, + "content_hash": "92eb4245b04b381a8710e59fafa5bbc5edcd184bf12a57f724a5b150c3aeb4da" + }, + { + "id": 3031393755532357, + "content_hash": "12922e52d46e3ae2e3b5f572d23225ba5f2455d4cd49387b119c4d68e7973415" + }, + { + "id": 3031387400178501, + "content_hash": "626abe7d4115ff3de8c1c8d72d05570d395ec39457fa98d3bb6d6bee778ea881" + }, + { + "id": 3031386155813701, + "content_hash": "5cdba2e972a3216e16f2ce44ec9b43c817c0b4ef913b8406d1c46dbe6e1bc922" + }, + { + "id": 3031382596619333, + "content_hash": "407a9f7c7d51ee014591250299bb03f30826fb5756e14fe3e8cd6b8aefe548d0" + }, + { + "id": 3031381103578181, + "content_hash": "af88fc8d2a8990414eb45f80ca708498a5dfff74910ee98bf26684bf282bbbb8" + }, + { + "id": 3031375158152261, + "content_hash": "c57816ffdae71517134e9befbe95519b61ebe59a0b40c3881c1547b069cf5a86" + }, + { + "id": 3031375103364229, + "content_hash": "98caf8560e6d651e2aef631dc9b162981de001c1313e780a20970c6ee30bb4e1" + }, + { + "id": 3031373667454085, + "content_hash": "374117b521f4a236a4a520f73b3bbb464c1f8da9d1fc5d33db0eade317222b5f" + }, + { + "id": 3031369533525061, + "content_hash": "a205b6618267bca5c5f655b940ac3347ba727d89cf671b52230e65ac9a4d9172" + }, + { + "id": 3031367492848709, + "content_hash": "267669ac9bec51e5c74b919cffdcebe4b2218578f4cb31dc2e16f217afbce815" + }, + { + "id": 3031356355169158, + "content_hash": "fb3c80676ec638efd389edea280c721873077288050924c677b4d1c0e62e24d5" + }, + { + "id": 3031355999767685, + "content_hash": "ceaa0e013507403d635afe04f674b2486ba8d68cf1cc7e30779f17a8d2f389ce" + }, + { + "id": 3031355634289797, + "content_hash": "ef8e6bac6a00fc08d170ef2a0eef49cb7beeb4469dca7e63e71dac3cb5fed611" + }, + { + "id": 3031353219238725, + "content_hash": "e0a1d92a213b1c25e910d4a0fcbc5542015b66d9287eb1be35b790e55f885c5e" + }, + { + "id": 3031347117591621, + "content_hash": "f6686e205c9555f837933c0b5d0cf22b410fe1b9b5061905fc70bdad4631e475" + }, + { + "id": 3031341133220933, + "content_hash": "48442d87b1d735b2e1b5572c787c4a636b3a54b5650a841f54fabe96842f95f6" + }, + { + "id": 3031339438787461, + "content_hash": "1afd474584d9f6b45fc5548c34d13bc93f7c631071e98f9c713ea96f4965ce94" + }, + { + "id": 3031338556394309, + "content_hash": "b1a47e45ef148f36784faa695c0b6c8725eac8df87a18b4d32c907b1bc082aa2" + }, + { + "id": 3031329807338309, + "content_hash": "9a54ed25136fd9c49c2f8a9848ec6cd149fb589d110e1639b56f2b0fda57fdee" + }, + { + "id": 3031315741477701, + "content_hash": "0ebe5a5d0ec95208e0f1557e76a20d13d9a1575f03e80fb20eaf4c65ab81b47b" + }, + { + "id": 3031309820709765, + "content_hash": "c34ddb1699d7f5208f7c21ed259316578c8d9446a01aa692f831be9c212e0ddd" + }, + { + "id": 3031309088394117, + "content_hash": "0eb08b95ecc91b7ea9b8d4ffaac066566eef67921f181ba7fefcf9a4c08df04f" + }, + { + "id": 3031296683002949, + "content_hash": "308abb709ab04e7710a265791be4c50fc5acabdce69951ae50021264521d085c" + }, + { + "id": 3031290421857413, + "content_hash": "91697ffac154bbee7b914e528c6ca67edf5713825a8b0b935bfb4a3cafb158e7" + }, + { + "id": 3031289925946181, + "content_hash": "f2bff2a68e5e1e5defa380d362542298cff4bcecbcf2955fc7790dd0d38e4ce3" + } + ], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "mismatch": 975, + "mismatch_samples": [ + { + "id": 3031499563387973, + "content_hash": "593d10e985ca830857a428346ff977daa1afd9adf78080c45417db6b5f31b8f9" + }, + { + "id": 3031452354743109, + "content_hash": "3b4ba5e6c06753ebb13078ff703ad8137997eee832faf6bd78b1d0d90d64bfa8" + }, + { + "id": 3031428777053061, + "content_hash": "791345b24c506d00e81ea35ad67c8c3d50a03acf472071c0a8575f7e75e5bc7c" + }, + { + "id": 3031426224819269, + "content_hash": "cf70176d9a79c08af45e3eb3e49fba57d09210618ee1685272ead913c0ca39dd" + }, + { + "id": 3031373700844421, + "content_hash": "8cb87eab2a6d5a01bbd9828ffc507e3d3c7dafc2e6fc4dedf323694336d22827" + }, + { + "id": 3031233902153285, + "content_hash": "4e9443f22515b4d18d50fbdd06beb4e2b350e25e900dba3ec8610d91c1020540" + }, + { + "id": 3031211239280197, + "content_hash": "128d390084cee432512c3e3c1c12f4d6968ad39cc307f6a0d23f59f85f87366d" + }, + { + "id": 3030482506745669, + "content_hash": "b1d7d32161ff402e0b7d50b4ff23638238b85dc29c18eb00f28e8367993ee412" + }, + { + "id": 3030328740661189, + "content_hash": "5d3e3ea0ce5915b59fec7beddeec0a312efcc46e8b212442f8151a4311e19b4e" + }, + { + "id": 3030328740202437, + "content_hash": "ed8de44fb47eb9c815fe6918159565aae2f9a06cf204bf27b37ae341d4d00f5b" + }, + { + "id": 3030304014092101, + "content_hash": "030a15e8d44f2d1623b998c930b57408c1f050a1cb5791e206ca07df67451132" + }, + { + "id": 3030270746068933, + "content_hash": "d65de33b96c25a4b6ed8e7944c1b8c0ebef8b4b491bad9c3d6c2d612e531a749" + }, + { + "id": 3030270745642949, + "content_hash": "dc6979dd80b80e437cd9a2b664422514929a5f935cd053ad09a337412cb705fd" + }, + { + "id": 3030270745135045, + "content_hash": "5ac55081e928f7f68f8d2e242e30ba223fe364971faa0241bb68780a2e24e8b9" + }, + { + "id": 3030233437488965, + "content_hash": "c2c328d953c41789497acfe1ea27e39ffa82828dcde4be05e514690e631332fc" + }, + { + "id": 3030233437095749, + "content_hash": "8e9b5f1fd05245e2dc9ae66d7d518313905d4d7ce594be6c874ae848423fcb9c" + }, + { + "id": 3030207908612101, + "content_hash": "9c38a6b22735c35c206e80fcf58fcffcb788a53d35ab348c4c27bb85ad775c79" + }, + { + "id": 3030146031585349, + "content_hash": "024ffb7c3989ba3682a301640d9938cd36120b5cc6c9e2e5a7199745bb2ddad6" + }, + { + "id": 3030126805354565, + "content_hash": "f5ce7acf136e63d43e984ee9956f9d84c54694924b2044086e6443bb2558d38d" + }, + { + "id": 3030117423581253, + "content_hash": "cc90c7dfa6bd1386a1eb9ffc930684353ca1e40d8df1b0f20ea0e51aee4706ab" + }, + { + "id": 3030103312271301, + "content_hash": "97f198c4b9411e171b2320be295fc50482c0115ac8d8a2569f4ff3f37ee7c169" + }, + { + "id": 3030103311894469, + "content_hash": "cd9a94ed1feba53c1648d86eca5f25443002d1c4c3575de0f10a87908ccc4702" + }, + { + "id": 3030086789531461, + "content_hash": "6f7bcbd3f2e8989eaa5eaa16ff05be8f0880d82b7dec6d11429908d066bc26d7" + }, + { + "id": 3030084997728261, + "content_hash": "f54bd3adb57a6c6f9a491eb061e848410d59957b09efae65bafabfd6b487865a" + }, + { + "id": 3030082033371205, + "content_hash": "8fb13e78a0c1ea4426951b737c64bf8ba101dad6c1f3ff2c4626409a5c9ccf62" + }, + { + "id": 3030071691577285, + "content_hash": "99ec18c57d4607e7f876e4aab00242583725748cb4244b9c0043cc314fa71182" + }, + { + "id": 3030071691134917, + "content_hash": "4a36e7a165012dba366ed1c6c54c62c923019a39e46fc7e204e8db78394b8269" + }, + { + "id": 3029990762874821, + "content_hash": "db23daaff1795007ef03cbee29eaa73ce092b18cbdb8de4086c0e39b738c6fd8" + }, + { + "id": 3029952331319109, + "content_hash": "15da56dc42d90ba025375bb4d1ca71bfe47adb15c1ac6eb8fc9444750fe7448e" + }, + { + "id": 3029935480064069, + "content_hash": "e76540c519de092ef582b49d0c4aa607d6591d3d632fafc0387bafa6372e7665" + }, + { + "id": 3029935479670853, + "content_hash": "c37cdf671ce31fa54a83c26a5751411c83b77b7fcbbb397bcca4372407d0dfc1" + }, + { + "id": 3029934175127557, + "content_hash": "2335c245658fdc0951d41575204373836b451bfe7771b12b816c21a55f190293" + }, + { + "id": 3029931405510469, + "content_hash": "d127bc2c62d99468d57bb83d5c771f06d4a57755b387ee33fdaadc30942fa5a6" + }, + { + "id": 3029912371005381, + "content_hash": "0f59b058069f7b3040a76cfb6225cfc03c42cdee2221681f6b41c537d1a755a1" + }, + { + "id": 3029904197847109, + "content_hash": "6d2cb968b12654d5296599921c58e4c8eee8b6afeb2b5a7a39f13455535486ac" + }, + { + "id": 3029846410020933, + "content_hash": "f24be14c8ae98412f883887250dee257c9730458b9b657b3ed1259fe0e4d1615" + }, + { + "id": 3029823293425733, + "content_hash": "265823feafa5aaeda2f6ad9071529c9e5e705f4e4e634a1568edb013cae34f31" + }, + { + "id": 3029822648944645, + "content_hash": "ccc16f746a2fcec36e64cdea201d79eed077cd6cf4664adf3f6e4d0209d6abc9" + }, + { + "id": 3029226090497989, + "content_hash": "a0b344a49c471b0a58e0f4ca5ce1e874152b83e70d06219a6495348c51055602" + }, + { + "id": 3029226090039237, + "content_hash": "068d42b7ff901b14c1dae648688a64671cf64924152e527e9aaf2eb25b5f3f76" + }, + { + "id": 3029226089646021, + "content_hash": "340d7f865c6db873dbe9b666c01cf3d28f3673bfd8c012e2bdb0adb89fa177dc" + }, + { + "id": 3029226089236421, + "content_hash": "c2401f8523c073d503af55d0c118b3d0244ee564626df88c28f011a412a82a35" + }, + { + "id": 3029226088826821, + "content_hash": "ae2b6ee8d1bad01e2e4e1aa8a7164979eb4548583e4b25a491fffc2c88b9b48e" + }, + { + "id": 3029226088433605, + "content_hash": "76b26f9d76a43c22003dd97ad891ff25a376d47bf4580a09d3fdfad20ad57f33" + }, + { + "id": 3029226088007621, + "content_hash": "928201bd05428b31359b9bfbd23f4ec626ebcc616163b201e27dec26650eae46" + }, + { + "id": 3029226087614405, + "content_hash": "5ba2c77f079f55c18e8bbe489c979ad7bb6fdadae602354169510123a17ad85e" + }, + { + "id": 3029153200162821, + "content_hash": "3e98bc77e13dd8f179ec91870fb7b2211d297335804966262b7f43cb3d7777a2" + }, + { + "id": 3029141418428229, + "content_hash": "24752009186ae993f3e35df7abe7d1073161c1caf00421a72228b3cef0bffdc2" + }, + { + "id": 3029141417985861, + "content_hash": "8b27a59664d2b1cc2c399d6eef91300a28eca997c2854cd8605907a76567cd27" + }, + { + "id": 3028849010067461, + "content_hash": "59be6932ceee372f1f55a94cb5624765ff1068719476d159df9d336f5607d268" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17148, + "records_with_pk": 17148, + "missing": 10, + "missing_samples": [ + { + "id": 3071831783819269 + }, + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "mismatch": 70, + "mismatch_samples": [ + { + "id": 3031260065891973, + "content_hash": "cbb47430172eaf638ee0ad7f17495a10b7cf87791cea8a7725af52645864b890" + }, + { + "id": 3030482082580421, + "content_hash": "fc5144f308f246500c1b48c95805c405306fa9f735a8779b20d6673ac3473047" + }, + { + "id": 3029225280358213, + "content_hash": "022b155614828b521d793483141a19202e12ca92a6def592f9c1686264c23440" + }, + { + "id": 3028964616128581, + "content_hash": "eedd1cd9799f07258b86190a08e7b7902e0324bc341a61d4bc5e4a753ddfa88d" + }, + { + "id": 3028367672969029, + "content_hash": "a5b172d9f7cb2070de9c1dfc1d01c47443274e353c367684a22c4145a45b428e" + }, + { + "id": 3026062386677573, + "content_hash": "3ce4716b416656d23c44f8ff074a8c7e379b330c34cf794040c16c580f21a972" + }, + { + "id": 3023433559394373, + "content_hash": "c8d9d9710b68198f46772951d821dde3cf071b44292a9978ddd5c09be0b76d3c" + }, + { + "id": 3022926742456261, + "content_hash": "bc024f095bb86dc5bf3b6a83b557d48089ffc838929c97e2a1b3b65c1d190620" + }, + { + "id": 3022926054164485, + "content_hash": "fc0c258894bb00757beff12498c220520798e67b2dce07e075b3f92243a3cd40" + }, + { + "id": 3022919499270213, + "content_hash": "738ffe0bec970c666f06738b9c2405e60976f0fe18817d7e983bb0d12cc9f60e" + }, + { + "id": 3022566422382661, + "content_hash": "89d574012fe5a7b82356f60d4e488dfabe5eff07edf49aec8d3379444d89e6bf" + }, + { + "id": 3021815358605317, + "content_hash": "f2ead8a2776267fb8bbed6c3cb79cec645851a3b433a8e0bc667559250645911" + }, + { + "id": 3021499004766021, + "content_hash": "37ba2908bcf4f18b8ddee11850b28794b5cd33a877c3eb43c54e8e25011f72b7" + }, + { + "id": 3021371351320645, + "content_hash": "d31b089cd1b4a8cbe7c15b6a916aaa975d745ea4a72aaff63c9366a626e25306" + }, + { + "id": 3021353085454405, + "content_hash": "5d017408e058b1938e6531c277eeeae4def0704bba334edd801f697afa536e29" + }, + { + "id": 3021269617313861, + "content_hash": "737a52a2e0987aeb63b804ddc2573c07b71096c190109a6c01248974bc4ceea0" + }, + { + "id": 3017679641134597, + "content_hash": "e2fd6dca8976a544c64d1e9c02f3a5b4d43ad0245f69f027801eb2a38b99c026" + }, + { + "id": 3017481236006405, + "content_hash": "718da7123fae6acf6d25c023f78ea32a5c61cb3a94b772207e8af50d98283a29" + }, + { + "id": 3015999356667333, + "content_hash": "5b6adc7227107a09e089b9383ffa6ee1d022a4932a6a3d0a90a6645324552e20" + }, + { + "id": 3015147654729541, + "content_hash": "5ecdd2b5a7206085b6b164e9937864b4583281fd57ea141320e187287cb2b81b" + }, + { + "id": 3014723179712133, + "content_hash": "864122ba5743a72c14695545b49ac21840126082b1990dc6dfdbf2f9dfb92165" + }, + { + "id": 3013579609099909, + "content_hash": "cd8ba96775eaaf855305ba659a372f77f227aa52dbd01d2bc454dce4b0752f70" + }, + { + "id": 3013266134732549, + "content_hash": "3c58046ba2db6a5936849db9ca6a6269c8dec2792b03a7ba1bf23bb0c8331751" + }, + { + "id": 3013155050950085, + "content_hash": "ae39e9a4fc116731a6a7bf08c4bd7393d02d055e4f1ec47b70fbbfccce4938d5" + }, + { + "id": 3012857868848581, + "content_hash": "474d4e104cc1df065bcca740a46d4c63c0ffb1ef45a2551d32f6da83cf66a802" + }, + { + "id": 3011875070085061, + "content_hash": "eb29074fb754e4d8809f4e5276cfda0ce1a410a1c96edc3c1648f79d3e67bdf8" + }, + { + "id": 3011659321821317, + "content_hash": "a31e0d101866184e839177a65e9a178e7c9acfc6cf5e475f74aa9c26275a8084" + }, + { + "id": 3010829303007749, + "content_hash": "2b44a022f892f60199f350ee997b468c5baeec14d873e30c5538257d3d1e5037" + }, + { + "id": 3009303890233861, + "content_hash": "05150947bf8aad28c9c2c03c7e55788e0fcbbe2cd5cc21fb3815806ae2a88a72" + }, + { + "id": 3009051792902469, + "content_hash": "5e3bb34cca941fe7b86b95b5c8394f5c833f5cf9b79cfe52afeb4ccbc867efd3" + }, + { + "id": 3008954535365125, + "content_hash": "42a184e6817784677952fdd293309b1058c73ff5fe720df65cc3eac36bf3c969" + }, + { + "id": 3005510070650885, + "content_hash": "e0270cbc7d5857d6f3065bbfcbdd8cefb022e74db80be402d8533ee833fce38d" + }, + { + "id": 3005099972970565, + "content_hash": "1068f314177a7aec95b247c293a7c68bfaa1fc1d1bbff7653f259c0e552120dc" + }, + { + "id": 3005097233795333, + "content_hash": "3428fa8ed23762cfb5e374c6f263861fa21d4fd4254e64649c3009bcac521457" + }, + { + "id": 3005078168471557, + "content_hash": "a56251a03ae84a62d7076c2794662725647f61352c56c09dc95af8398603da41" + }, + { + "id": 3004683495114821, + "content_hash": "bb3c663faead3f41b426d69b88e0f1625a27e29bd307155db7fbccc79e283563" + }, + { + "id": 3004680012449925, + "content_hash": "848c257a17d6718a38a70644de6de04de2f9f0b7cb064b5e6bfa7930df1a56f9" + }, + { + "id": 3004595127781637, + "content_hash": "df078b78eba697bf6feab2c83c3816abf6b16bcb7a105d26c59e3ec85172eb4f" + }, + { + "id": 3004369763698757, + "content_hash": "847b599722019f3f5c7f09338709697a1b4519f55ef587ee60c29c9bad68e77d" + }, + { + "id": 3003565055185861, + "content_hash": "c41dd1d757e4c9ec9ffc74e7ea8bc907372a1cbb25b82e673fe51dfa879f3935" + }, + { + "id": 3003555900052357, + "content_hash": "46d5fb63916cf32b8599fd010adb23a65704b14c06e44d84491318938595cb9e" + }, + { + "id": 3003553510904581, + "content_hash": "3c5e1db0844782ce1b1b429662fb0b03b47ebd38361a765952620f7a016e4347" + }, + { + "id": 3003353150280453, + "content_hash": "a4e2512172b6b0b92f3d5c6fbea3d83bcd51e6114500c46846566dce2ed477d6" + }, + { + "id": 3003186184573829, + "content_hash": "fdaac8856ada242623929343b41bee78d96311307261c4c7b9ce13dfb175f8b8" + }, + { + "id": 3001974467971845, + "content_hash": "cb6bca2fa25aafd1fd2041ef1f6c67e59d5a5c25cf4c7a2d0bf00202fba9a620" + }, + { + "id": 3000438163032581, + "content_hash": "ad63b3b8d43e00c1a121e0d31abb94b34109e0a864a128020a5a2fe8cf8946cd" + }, + { + "id": 3000366606371269, + "content_hash": "52b59d720e4d9b92b7126e3a73752962162e2d5556b0df4a6790189ad66b5de0" + }, + { + "id": 3000317539961413, + "content_hash": "84a288183d499892e4665b9491250be891fec5d7d457b8bb072e9fc71510b8ab" + }, + { + "id": 2999136862030213, + "content_hash": "5a1a94b7ae4ad642306061b9897a6e93928bccf5d900e019746bbba6d6886b01" + }, + { + "id": 2999125996653061, + "content_hash": "8874838d24eb508a2a8a66998a6dcc77a70895d25c2df79026227999e9792830" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 100, + "total_mismatch": 25359, + "total_errors": 0, + "generated_at": "2026-01-29T11:01:26.507816+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 43091 + }, + "generated_at": "2026-01-29T11:01:34.394887+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T01:00:00+08:00", + "cutoff": null, + "window_days": 29, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "86948edc652e6043b1822d16f34bd27354595490ca4e2db97f483a761b5b20c6" + }, + { + "id": 2793530479530053, + "content_hash": "12288654a4cf2062f74bcccff6c7cd7c7884e29d39877c223b8735dbd381e21d" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "9749c6a66db8037927a49dd290934de7982fb299e61a878ad059b2ae1e039672" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "b974554729b900391711349f34c197a8dc8ea5c767bb32e6d5a470ce7374e0c6" + }, + { + "id": 3053834039789701, + "content_hash": "17ced16947c2f0ba3c34f5c9e2630a75e25e466a81518f47e179cb612d04d49c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "f58a8d2c901bcc0408169164bece8bafed9d26e8b25c85266bf0ef7ea7385bbc" + }, + { + "id": 2964641017858885, + "content_hash": "9caec1003f55cc1086b2ce2ffeb323c30de99f025207a8822117bc87f6336274" + }, + { + "id": 2964640248745157, + "content_hash": "1dc6b0d70650c23cd07564a7e2e37edd1cd56a749a3cbb4c2f406660d6d6c96a" + }, + { + "id": 2920786464294661, + "content_hash": "a64dc9532ffb0dc8d099eb29921f137324f511f83a6bd2c28941d6e6ccece0af" + }, + { + "id": 2861304461364293, + "content_hash": "1d08cf1d18244445be30585096d1d018c2dc7021f820482487590e8e850ccbe8" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "eb9ca09aee0dd09ee4eeb0e686d23abd6be5d1255860e07cd13943adfa3f1d9f" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "8829269d8931d2ffd0a04886d9a33692a0a06ac05628af77107fe2fe90997dc3" + }, + { + "id": 2793363001774149, + "content_hash": "5234c5da432d16bad4ecc3674e72bddf214d4e816b634d3b9fe66f9da791e26b" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3258, + "records_with_pk": 3258, + "missing": 30, + "missing_samples": [ + { + "id": 3071367814022981 + }, + { + "id": 3071358011164485 + }, + { + "id": 3071351468230597 + }, + { + "id": 3071300794451973 + }, + { + "id": 3071287272392645 + }, + { + "id": 3071261600597893 + }, + { + "id": 3071254220998597 + }, + { + "id": 3071238529812293 + }, + { + "id": 3071237503698949 + }, + { + "id": 3071222320793413 + }, + { + "id": 3071218843666373 + }, + { + "id": 3071205601036101 + }, + { + "id": 3071204897048581 + }, + { + "id": 3071199960336197 + }, + { + "id": 3071195400144709 + }, + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + } + ], + "mismatch": 3228, + "mismatch_samples": [ + { + "id": 3071088356951941, + "content_hash": "5e68b307438e75ce929521ca5a69478d3db5bec2ac24369ac7b27240efc1093e" + }, + { + "id": 3071084050237445, + "content_hash": "9ed9329b8f459ec19736bb36cef43957755d475cba66c24c95771c4b1b816acd" + }, + { + "id": 3071083752097669, + "content_hash": "b230585eb01f2cedaf99326ac276699b00cfe947fccbbfb7141d0a6b3a20eaeb" + }, + { + "id": 3071083395991365, + "content_hash": "8c48227d594dfacbf7d5ddbc5ed0ddc9e7f50eedab0d9cbd4cfa631c4555a3b3" + }, + { + "id": 3071082466625413, + "content_hash": "0c5e5529506841b700a5c4a0a1423dcbe12fa8da01c6254253fb55e13454bebd" + }, + { + "id": 3071079853033413, + "content_hash": "37892aadb8a8ce5c9fe865f431a0325aa27e05e0c5f6dd76f8f440dcd6de0098" + }, + { + "id": 3071074249803717, + "content_hash": "39b617493ce746ccd7cf08c8d5da1345a346187303b71aadf59924424e693f23" + }, + { + "id": 3071073946306565, + "content_hash": "8d7560e44ba1b296c82d64c3cc19fbcb425c05538e089ac3e13f260c877441b8" + }, + { + "id": 3071067553679365, + "content_hash": "f506659c09fa607d9df4b454103909f3ca8c5cbe4348212e1659cfa4991bf385" + }, + { + "id": 3071067014760261, + "content_hash": "9e8ec8d470ce18c96bf5568169b66da6c3f48c1ce62cc49f3a539e5106340f1a" + }, + { + "id": 3071063452616517, + "content_hash": "2d1e8f20a32f2bf9fcd4dacbd97cf55313e9be9e11b313a0f81b7f1b8c872727" + }, + { + "id": 3071062782347077, + "content_hash": "3478aa2ccdc286d8818cb3ad298779d083afa4261857dd16b0f6e2933107422a" + }, + { + "id": 3071056930604869, + "content_hash": "aed3f5c15edd6892437629d066ab5f94e872292794e08deb57acbf8f8e6260be" + }, + { + "id": 3071046501517189, + "content_hash": "306a052cf5b3ff8383d128799e02731891e9b43df270164433f2ed6a4687c23b" + }, + { + "id": 3071046229460997, + "content_hash": "0e4bc8bf9860f186a4f07a50b33c5d210d082edd0c8e318c805329ef1c8c14a3" + }, + { + "id": 3071036520974341, + "content_hash": "8d90433eb3936a72c5096c48c93a220a07d9baf2bf323b6c0adb270c19941786" + }, + { + "id": 3071033603065669, + "content_hash": "7a946c81aac403ce3095f6a704637c9d183e1d9dc77684c38b0aa8080e97ca9d" + }, + { + "id": 3071031556441989, + "content_hash": "7a4f995894f3d9cc4763e4e1aa5e4bd4e88a9e272b1700a1643e05d05536733e" + }, + { + "id": 3071014106286021, + "content_hash": "5a1127b2387ad429164e165df760372b7d86a48680d0332c4cd69b283925cf08" + }, + { + "id": 3071003523827525, + "content_hash": "7c58ed707ab3a5fe7858f9bbf41ace34a224c527a85d6518ac0f0bb9ee02245a" + }, + { + "id": 3070992902735813, + "content_hash": "c091ff242ecff0989be7aa526c47f608ded7d7b63a11b677fe861ef87275bd23" + }, + { + "id": 3070987450763141, + "content_hash": "39633c3ae011ed02ef118f01c7607e25709f6c672fab5c1e55b18361854eff97" + }, + { + "id": 3070973067609989, + "content_hash": "591fdcd176e3b39d46679b61c58863ee071ab15427233cd5e009218279c7bc02" + }, + { + "id": 3070959113127813, + "content_hash": "d560b0b9afb00ff5f30c31ccefddb4edac921eef3991641968e1b0c445966361" + }, + { + "id": 3070954610870149, + "content_hash": "e1e23bd5a211b9e4edd7c5047f8cf654388e5b9867829701096755cb0b937e82" + }, + { + "id": 3070948860217285, + "content_hash": "3456f5dc24bdb14dea6b889a2582ba97d4dd63eb8137a4a2fba748681f8ac1b2" + }, + { + "id": 3070945360480197, + "content_hash": "2f5f3d2790df9d21131ba414ba975d8781f36e89329474f64ea2b6da907b49e7" + }, + { + "id": 3070943968331653, + "content_hash": "139688977f0175f196bff6998091c22ffc0981ff3ae92e57f96534f97cbf245b" + }, + { + "id": 3070936278910917, + "content_hash": "2135531aaea622fb735c673894ae9762084a857d5c93565e9e8a93bd4acd7c25" + }, + { + "id": 3070928858056517, + "content_hash": "58743aa4241958863642dcd928be3e65865bb8f22b7d060e9b81ff4b13556208" + }, + { + "id": 3070928781821893, + "content_hash": "4b497018f925ddf4352901e912642acf422b5b4eb85235488c93bb6da89fbdd8" + }, + { + "id": 3070927299823557, + "content_hash": "736592362ea095162a07cd337aa7b60d7cb7b15d7efae6ccc854f585f63c0b34" + }, + { + "id": 3070920253245253, + "content_hash": "e970ca43fe2c38c1f79469de6a4fa7cd46d055cffe3412f9215b0adecec07976" + }, + { + "id": 3070918150490117, + "content_hash": "3251513eeeb9557f6fc260726c01121c8827a2a6e9c00e0999d9e943dec0c3aa" + }, + { + "id": 3070914816559045, + "content_hash": "6eeff0c23a212e3c06a321126345cf778dee4b4d34483db28c9f579401799d78" + }, + { + "id": 3070910406674373, + "content_hash": "c186714451eb9eaa06e67de3f11a2b73b4e20f1f792ae7c1c59f65aee28a3a08" + }, + { + "id": 3070902720399301, + "content_hash": "9621a4cee7d3e3428040e8bca98cbad0e5b1f4b726cc5ec00a7a010ec8d3da91" + }, + { + "id": 3070885127587653, + "content_hash": "7f07f33fdf1f7bdfb6ae8174b4e4eb977c4655e07fca7f712c2d7d7abcb75b76" + }, + { + "id": 3070865740580805, + "content_hash": "486d1c42d969557f1790fbf963c215d5f727738413ccd52f0afc20f46ed5cb97" + }, + { + "id": 3070862464059205, + "content_hash": "dc3785a77cbecde1274bef9a4fae3bc583dca962334825cf7812cc93fc8d6ecd" + }, + { + "id": 3070859429693381, + "content_hash": "e1026abcd468ce09a670382d9ded737eb565baaa9799dc6a5f7a4bbccd2af120" + }, + { + "id": 3070846510270405, + "content_hash": "21067aa6c19d9f8f91077fb76f4f40d4ad8016cf367f7c050624b37f53c71ad1" + }, + { + "id": 3070828262787013, + "content_hash": "f343704fcb4ce3ea93ba78b7dfe94b140a8cf6421d8adb280dfe3b8f3f804048" + }, + { + "id": 3070825249032069, + "content_hash": "0322a67cb894947045a1614974f3ea082682c3debfa436bc9a35d863913812d4" + }, + { + "id": 3070825071511493, + "content_hash": "57c7e53d83e9e34c06d8805a2d10c7e03a3bebe62edf6dc4d81ade38f6fd92d1" + }, + { + "id": 3070813326444421, + "content_hash": "d28dfdecd4e75c2a9ec95572064fcab325b4d1563814fb30cce6c7d46ed2a302" + }, + { + "id": 3070790841730885, + "content_hash": "ca88265f1baa90348c60210226dcd53c6db29f14a99ef83023406849df435ff0" + }, + { + "id": 3070772188710917, + "content_hash": "beff8617ae8202f00395f1700bbcb92e2ff25d5578d90747c0caf0a6fdec4036" + }, + { + "id": 3070771103582085, + "content_hash": "5e0db9154e663f3d50744dd2c81421db14cdf7ef021d15e23ae67e033d23eacf" + }, + { + "id": 3070769613768581, + "content_hash": "556a04000c853092cf2a4bcb93640bdbef2d0be6765a3b0c4c318660050367e7" + } + ], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 9986, + "records_with_pk": 9986, + "missing": 28, + "missing_samples": [ + { + "id": 3071367860209669 + }, + { + "id": 3071358040950725 + }, + { + "id": 3071351517743045 + }, + { + "id": 3071300813850501 + }, + { + "id": 3071287354247045 + }, + { + "id": 3071287354230661 + }, + { + "id": 3071262110402373 + }, + { + "id": 3071254449276742 + }, + { + "id": 3071238591318021 + }, + { + "id": 3071237922473989 + }, + { + "id": 3071205626611717 + }, + { + "id": 3071205162370949 + }, + { + "id": 3071199977998277 + }, + { + "id": 3071195418019781 + }, + { + "id": 3071190575843269 + }, + { + "id": 3071188924811077 + }, + { + "id": 3071182334412805 + }, + { + "id": 3071156553942917 + }, + { + "id": 3071130738067397 + }, + { + "id": 3071125551089541 + }, + { + "id": 3071119209908101 + }, + { + "id": 3071116033132485 + }, + { + "id": 3071112298170181 + }, + { + "id": 3071109789845381 + }, + { + "id": 3071106986821445 + }, + { + "id": 3071106250278725 + }, + { + "id": 3071101089515525 + }, + { + "id": 3071097321392133 + } + ], + "mismatch": 9061, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 50, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 760, + "records_with_pk": 760, + "missing": 10, + "missing_samples": [ + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + }, + { + "id": 3071188925302597 + } + ], + "mismatch": 514, + "mismatch_samples": [ + { + "id": 3059410044372677, + "content_hash": "71b00c68a219d3b5e1c7438296f7d381a62cc834a12753882e39ac3fbb5423c7" + }, + { + "id": 3058885519853381, + "content_hash": "ad6cf2a834a8a176feb93a79646d7ea50cd4337490fcb38c29a3930cb3281971" + }, + { + "id": 3058885519427397, + "content_hash": "f364405e2fc3ddcf35273ae79111d5e27650c6b2a82c3b99c7c68bde4f7e1163" + }, + { + "id": 3058596371941189, + "content_hash": "f886f1115b3b703b5868ab96a45d522d80435aa212cae208af7312cd3f00a0b7" + }, + { + "id": 3058553634244485, + "content_hash": "8e13504910c6867ec6aad61f541b1d1c272fb25f5eae58ea89610be2f3d6dd7b" + }, + { + "id": 3058553633736581, + "content_hash": "8e75837863d40a856141e0a311c8313b7b9890df696470d00d1193698d8d9235" + }, + { + "id": 3058545293199109, + "content_hash": "9f68fb3d8122b4a099ccc6e95baf603f394fe6810deaa4034b7efb28e42fc5fc" + }, + { + "id": 3058545292609285, + "content_hash": "33185e01dd8660c8c561b1cabe53c68524b5ff1ca45b37a19bc89bb74463647f" + }, + { + "id": 3058545291953925, + "content_hash": "d0e8f76efb98fd25522f3f91bdd3f344134b57c45e8ee99ef800627975dd92de" + }, + { + "id": 3058536030340805, + "content_hash": "a4f2413c8cea12b6c8dd33d9de10b6b4b1db742f3653b4f311ca16625ddfe336" + }, + { + "id": 3058523007616773, + "content_hash": "4e7917732f1324b4f17055208b01987b0e5845808c0bd91ff3ed4526e1b81e19" + }, + { + "id": 3058513156638533, + "content_hash": "1de693b031171c369b2bf923e8f4d5a593ab1cc8e9a9a946180f022909dafc70" + }, + { + "id": 3058496801408901, + "content_hash": "e1342a433a7838e34b02f4f707e25651ce9cb9f71746658a845bcdbbc2999d78" + }, + { + "id": 3058496800851845, + "content_hash": "2099c7ea643f967d555299866fa0aede48d375f7945c62793ef60212140b906a" + }, + { + "id": 3058488662837125, + "content_hash": "775df29aa64633645a6b24236fb525aeda085e486b56a2c885fe71b2a601a16c" + }, + { + "id": 3058482685036293, + "content_hash": "5c1b320d409c583f18ee8a7ec715141462559843cc8f80bdb142f5cdc613179f" + }, + { + "id": 3058482684462853, + "content_hash": "0d97e673ce11b21b30cb2a016cc916e3605aacb5e0a50df698aa05b2d1db19d3" + }, + { + "id": 3058482683823877, + "content_hash": "bf3aa02232ba86db4a39208e140051087889bc3a6ccacaf4004c8b2c8532948f" + }, + { + "id": 3058482683381509, + "content_hash": "d514fb66717e741ad0169a42151b9c7d3df8ce259a561842a1f71403a8be6492" + }, + { + "id": 3058455037052677, + "content_hash": "ce8725b550c7a7bc844e97f12306d4bb52c019b725d820d7a4946704eef74e9f" + }, + { + "id": 3058369605568325, + "content_hash": "bb7eb8d3bb33f79a59783cb93cbeb62f2d1cd686bb291d28d11f9fe3b5b49ec8" + }, + { + "id": 3058369604749125, + "content_hash": "de82969cf55663abf01c505eeafca7b07e193fd192702bd898c294b501dff590" + }, + { + "id": 3058333186787077, + "content_hash": "71bfd60389e8b38c4e77d5d0bc30b8c33f85b8bf6ed095fe4805dfc20c8866b1" + }, + { + "id": 3058333186197253, + "content_hash": "807224ffe6fbf40ed58a83f1f2846bea4c134a257913e23c0400c9ff465a1d21" + }, + { + "id": 3058318685308677, + "content_hash": "d0ed594b28bec92e71c208a4c0e2827dd98490ceef98e2568bac981c42787f5b" + }, + { + "id": 3058318298728325, + "content_hash": "f4927549fdd1dfe325d050e4b7ad2f1c056b2972e711d85f06f303dab6f822bd" + }, + { + "id": 3058318297909125, + "content_hash": "4d13ffa45de5606f4bbaf7eaccade31601e5a2cabd2652208e6890a516d7170d" + }, + { + "id": 3058297748702981, + "content_hash": "0270fa9185b17d57411f2e2ae38a66aed6a03b898b142570fb68a09425762509" + }, + { + "id": 3058243529328517, + "content_hash": "3fa754448fb56a168f266ba4e53e7be9e0ea6e2d0ae7432f28545812ea5aafa5" + }, + { + "id": 3058243528443781, + "content_hash": "d4892a19ba513613122749f41406c2cf4ccf4ae523d591467d14096b99a88f56" + }, + { + "id": 3058243527624581, + "content_hash": "d8d7df60f0642381eb38d6e91a41f9c74889001d555baf11d4c808608092cbbe" + }, + { + "id": 3058243527001989, + "content_hash": "56705d1de49a65edb019c422b293730164931e113e97d912bab0e05fd847f707" + }, + { + "id": 3058236537292677, + "content_hash": "92bf466b9fd597a7f2846d631d261d650096ecf4e2f222da9d2ef20bb3d95bbc" + }, + { + "id": 3058214302762821, + "content_hash": "0df09c316110f7e0508b4686b8c4a889f1a567a901e2ebd7f2da356030dcf17b" + }, + { + "id": 3058214302304069, + "content_hash": "09611ffeef697d3207a093896541f6595f76a25201d8a389880b75d7430f35bd" + }, + { + "id": 3058214301878085, + "content_hash": "636f342070ec0bf1f31bb68a02cae2c7612c57f42dceb3097a127dcfc83e3249" + }, + { + "id": 3058182126749509, + "content_hash": "7afe883872d06a19f49ec505588d0b777891e87875bb4a9705551127e15f8ec8" + }, + { + "id": 3058131095406341, + "content_hash": "6d449a90e7957b650959c45d16559c860a861c41404289025340d5dbac997ea3" + }, + { + "id": 3058110050682629, + "content_hash": "e784030386d1bd9030afa5aee70843faeb70f39f65ca0bccf0bc93e3a34d342a" + }, + { + "id": 3058110049814277, + "content_hash": "0597c0be37347d73ab48d7c0e683d8d4d273ce702363791edf59a6407a402f4d" + }, + { + "id": 3058099614205701, + "content_hash": "869b468190d17bc34e846c00ad8ef1ef3fa7646fbcf31c474ad970714e5a61eb" + }, + { + "id": 3058048542803717, + "content_hash": "a06c42598422a2927f2c71865f684be6c7011cd64a2f51f502eecaa16c25f549" + }, + { + "id": 3058048070764293, + "content_hash": "362e4a7c7b621027d7966196542d6012c393d021eb67262c1e7917c8eb0e6cfa" + }, + { + "id": 3057979150452229, + "content_hash": "c09430ff0630702686a979b77937ab0d38396b30021aa8e59c0d1d5ff0538897" + }, + { + "id": 3057859469477765, + "content_hash": "dc18298c712fdace0d44199a1450ddd062fa9cf6c76ec3d9b74e20b73944e82a" + }, + { + "id": 3057859469002629, + "content_hash": "70c737d44aa70a0e5da07cf71d80a093a0f3e90649f887758bb5a7df92c15723" + }, + { + "id": 3057420701845317, + "content_hash": "e6181995fbad9721525c2ed85fbacbd8d9d0f4dd82c9f6bf59074788ff231f14" + }, + { + "id": 3057420701222725, + "content_hash": "eeb9c4cabf67ba368ad56b17ccf075cbb5caab5ec01c6c2ea7912e16083e8b95" + }, + { + "id": 3057420700714821, + "content_hash": "7058327edf843b3cd192dcb6111f463156aacd312a549239bd55df6bfdbe0195" + }, + { + "id": 3057420700206917, + "content_hash": "e257cd7268af20b90ec5697f05f92d6059b826525f92fa7aab1fffee0082cdd5" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 37, + "records_with_pk": 37, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11796, + "records_with_pk": 11796, + "missing": 30, + "missing_samples": [ + { + "id": 3071367856523269 + }, + { + "id": 3071358038116293 + }, + { + "id": 3071351865837573 + }, + { + "id": 3071351514449861 + }, + { + "id": 3071300811638661 + }, + { + "id": 3071287349659525 + }, + { + "id": 3071262107944773 + }, + { + "id": 3071254446475077 + }, + { + "id": 3071238588663813 + }, + { + "id": 3071237920016389 + }, + { + "id": 3071222363392005 + }, + { + "id": 3071218888017733 + }, + { + "id": 3071205623891973 + }, + { + "id": 3071205158504325 + }, + { + "id": 3071199975753669 + }, + { + "id": 3071195415087045 + }, + { + "id": 3071190573696965 + }, + { + "id": 3071188921304901 + }, + { + "id": 3071182332168197 + }, + { + "id": 3071156551698309 + }, + { + "id": 3071130735790021 + }, + { + "id": 3071125548877701 + }, + { + "id": 3071119207712645 + }, + { + "id": 3071116030707653 + }, + { + "id": 3071112295941957 + }, + { + "id": 3071109787338629 + }, + { + "id": 3071106984527685 + }, + { + "id": 3071106248099653 + }, + { + "id": 3071101085566981 + }, + { + "id": 3071097319147525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 59, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 38, + "records_with_pk": 38, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17148, + "records_with_pk": 17148, + "missing": 10, + "missing_samples": [ + { + "id": 3071831783819269 + }, + { + "id": 3071829015103301 + }, + { + "id": 3071205334878085 + }, + { + "id": 3071165016180677 + }, + { + "id": 3071144368408582 + }, + { + "id": 3071140708878277 + }, + { + "id": 3071136224348101 + }, + { + "id": 3071118437451717 + }, + { + "id": 3071116463540165 + }, + { + "id": 3071096665737157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 86, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "b462acce966b18edc2363dd473a7e5f5b4802d4f53e0db7717647eba6c6eae84" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "5b0b47e38fe693d7235f56bf5526b589986218c0517f5e7906d88287d8b952b5" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "3e59f995fc8bf7c6d7b6b0407664818a82486499cca77ad59c3ef0d7aa537e27" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "a241f65d1a8c71068b2c405392ffa0da406f3efa8eb22b8a6db2f6a58445e1cf" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "2ba2c736930a39e454a4e589b3999ae332d958f10d57c082aa0b4015fea2b064" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2470, + "records_with_pk": 2470, + "missing": 10, + "missing_samples": [ + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2335, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 66, + "records_with_pk": 66, + "missing": 1, + "missing_samples": [ + { + "id": 3071351863953413 + } + ], + "mismatch": 65, + "mismatch_samples": [ + { + "id": 3071074979842053, + "content_hash": "325c798e129a1aba861a4283688d8d5fba118f73cea57bbdebac46022afcc063" + }, + { + "id": 3071013741414277, + "content_hash": "4b7e02829e37e110e685fb83a4f3c549c48cba2320284e702d963e1e12ac1a3f" + }, + { + "id": 3069834081455237, + "content_hash": "1df7d58a64a35b553fb8db91ecb6cb35e97ca3cb114ac26740ae9ebddfce0463" + }, + { + "id": 3068597553416325, + "content_hash": "1d43c7a36b3083d7b1065950f2221dcffac631bdb340ab172be986d39af8fa8a" + }, + { + "id": 3068193226131717, + "content_hash": "52dff01d4b36aa3b0c7b7c5dc6ede4b84c1a3b2ed328a8c0e187fa7f15f2395b" + }, + { + "id": 3067210804955973, + "content_hash": "70a542897d1ddd0fbc26f5b33c178083c60080e609a8145580e93269ffb86d0f" + }, + { + "id": 3065748655475909, + "content_hash": "2674fe55264cc68ad0559ba868f0c9638a76897178063771883e4a7200916cc2" + }, + { + "id": 3062602213396037, + "content_hash": "49d330e73a268e64f382b85c37cbd8f9b600efb651e7ce508ea4344185bebe98" + }, + { + "id": 3062388894125509, + "content_hash": "10bd58cc9d7dfd87169bacc995c56d504ad2bbead2b6ba0c66dbe2ec74021e2c" + }, + { + "id": 3061787657997893, + "content_hash": "edfd00907eff9a2a9166f44a0bfbf5033d974f34433d62467c038dc0405708a8" + }, + { + "id": 3061771360030341, + "content_hash": "a02ecc9baa378814c77779cf5bd6eb283d527fb297da644a200fba429ff16a5a" + }, + { + "id": 3061734778015237, + "content_hash": "961ad62587fe203f3780e28f299324035a042903d38673eacb9d41be7b53917e" + }, + { + "id": 3060955647348293, + "content_hash": "2abe94ed956e2292652d6b6be2971e238f33c2de5102b594e39ad2e79c19d2e6" + }, + { + "id": 3060085605436357, + "content_hash": "b7aea862f1794bf1e263d3f732bc1c5ee4aa598ca268f70681c400c5877a79f6" + }, + { + "id": 3060008888323013, + "content_hash": "041a0b72552bfba0b89a57579c153fe84d63295f455ae7bca2804a9e5ecf2f92" + }, + { + "id": 3059409723082437, + "content_hash": "8ab1dfa831a934b394673585e56d7a9ade4f95536d046de3e564faa9396ff451" + }, + { + "id": 3058512929113925, + "content_hash": "ef37d5bbe51e8b380bf3b03a1e4bbd17ab68ffda8f44a06f26702aead09ace16" + }, + { + "id": 3058422344910661, + "content_hash": "c1ca3c9feddf5679af9d60f4d7c9bd84839d268f33e5a52ac48453100e7fc05f" + }, + { + "id": 3057333865711429, + "content_hash": "18f2f3e85640f7ebd3e4ff80b57d0fc7fc273abbbcfdfb52fba5be36920c6a9c" + }, + { + "id": 3057069833078469, + "content_hash": "38070756d2c68c162d839281b8a632beae8fdddb8fca45040799f5e750605549" + }, + { + "id": 3055852804769541, + "content_hash": "b891a61acbb4cbe43f95b7d43f5e7237becde34110276956bda6a91cf55ba38c" + }, + { + "id": 3055757040240453, + "content_hash": "82065c4820e4895ac9ec07507ec12b5cc4287ab5dcccf4d3f38aa77fee2b3b61" + }, + { + "id": 3055567463532421, + "content_hash": "21f17b129b46ef83dbaa5fde9ac640992bb5c17aeb0efb31ee17b99ac3a064be" + }, + { + "id": 3055177162837381, + "content_hash": "1d64c52238f7e3ff2b1d4eadbe3d1e6af35b7ee8c854e91aa6870f5d88f50c29" + }, + { + "id": 3054210385137029, + "content_hash": "c002bf69516e660ed4778d8f69b22fc65a193dcc9155f20750b404f6720e7370" + }, + { + "id": 3054195772001605, + "content_hash": "f333eb3fc6966ea20499f3a37c8f2916085c545832054b96f0d91b0ce8ccf827" + }, + { + "id": 3053966621347013, + "content_hash": "fd452717122b1b8f30d5aac27f2483485e9b0fd5565f30c517f070064626a08a" + }, + { + "id": 3053072921219077, + "content_hash": "abbd3d3b83a2435a78c233be4d00b72953b44d58a798fad97a73504f06d68c19" + }, + { + "id": 3053059529756741, + "content_hash": "b6c51066bd456eb7031a699f8c2af6219edc693bbd9121cece6c51635a4802e7" + }, + { + "id": 3052750316949509, + "content_hash": "b756dbc59ef2627bce3825248be93daa467b80e841a4819ab0d48048f76cc1d6" + }, + { + "id": 3052689166684293, + "content_hash": "1b0477ac8a41cfea1acf82918bb07a173d1b15ac9510ac4f3ed45dd5f3b5f3d6" + }, + { + "id": 3051658126477189, + "content_hash": "b60c7ef56ac58f9ee46d3a42fc484a99652d70888cf95f5f01d2f467e82a09d9" + }, + { + "id": 3051599278917509, + "content_hash": "29b7cd344fe222d9210f7ec3006ae40623d5edede854293d287096a947d56922" + }, + { + "id": 3050319796668165, + "content_hash": "29eef4f77d88e4a0a53b375cf7ec8c5ffcb6b4ed5cb5030fbb32c14a44e1701f" + }, + { + "id": 3050242288224133, + "content_hash": "ab9c6720dcee07743ffdc9e95e28665956ca6fcc186f1686a7b529996da13121" + }, + { + "id": 3050077116909253, + "content_hash": "c879b0c0d3fbc39590452de86dcd5eb19450e92857d217d94196be8459f04f8d" + }, + { + "id": 3048755221546757, + "content_hash": "e1cabf586814375d1f1c137ad9b14384f6b8aef89716e1b47951be5b565a410c" + }, + { + "id": 3048506799261573, + "content_hash": "40effc324d606cdfef9d3c2c60af9eab3111215c11ed33fd6cdf87dc1ad7a8c5" + }, + { + "id": 3048466098390725, + "content_hash": "f2b7850f1262772d626426fd92b543eadeaa28bbd0c40bee19e73f2bddd65f0b" + }, + { + "id": 3048239331870597, + "content_hash": "5b8ea1ae73259b9bb1301aca0220e69ae88c037dcbeb7b339f7df463cd440a0d" + }, + { + "id": 3046093275432261, + "content_hash": "54f18fdb49f7a0edb10b8670c6dc891c10fda4848a90326a328747c12fa1894e" + }, + { + "id": 3046020658824901, + "content_hash": "5b8f9072906522aa354909f752266226c7e96378aded6dfa85c3102f5b9b45e5" + }, + { + "id": 3045263163688838, + "content_hash": "742d2677417faa8783e9e762dd3d40afa0f74863e3c10448dac4a142efc649c5" + }, + { + "id": 3044610245412613, + "content_hash": "f3d9a392a0920a834c661503ebca91979356658c2737eee1952f3c6537cd6134" + }, + { + "id": 3043884598134085, + "content_hash": "3323aa2daebf4975395372ef691d8ebd30ee1d05555a36ba4654f224f810979a" + }, + { + "id": 3042915106867077, + "content_hash": "622a28540cf07a55e70d9df6365bcc159e3252816d9ad1bd9ed35abeed0b4094" + }, + { + "id": 3042725422253829, + "content_hash": "25bece9b4e7cf82e781d6f2e80106f38a9d01af7faa2f477f4ac26fd93a41323" + }, + { + "id": 3041504717391685, + "content_hash": "0d37f422eb991cd6134df53f4ed11516f2453851848ee7e4797192d32f3df545" + }, + { + "id": 3041169983669957, + "content_hash": "56d3921bac6714b95b3cbef750cc8a779277f04363188a8940bd37e55f946e88" + }, + { + "id": 3040354220656325, + "content_hash": "3c12f51204e13069181a73039f3d18a2f82b7aaa28e6cd4f18dae3010b710b8f" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8185, + "records_with_pk": 8185, + "missing": 15, + "missing_samples": [ + { + "id": 3071262111074117 + }, + { + "id": 3071237923244037 + }, + { + "id": 3071237923260421 + }, + { + "id": 3071205627381765 + }, + { + "id": 3071199978538949 + }, + { + "id": 3071195418675141 + }, + { + "id": 3071182335166469 + }, + { + "id": 3071156554631045 + }, + { + "id": 3071156554631046 + }, + { + "id": 3071130738902981 + }, + { + "id": 3071125551646597 + }, + { + "id": 3071106987394885 + }, + { + "id": 3071106250884933 + }, + { + "id": 3071101090465797 + }, + { + "id": 3071097322293253 + } + ], + "mismatch": 7046, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 114, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "eef3503f5894f4c789e3a317286d57a2c3841b922dc69cee740b9885990d8330" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "97b77a07dadcb3cc4e51b2bc182c0f411da297042974d4ad322255c0753c9181" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "edac056468826d84a5820933aebdf07ae8960d8529a296db42ec7d11d94ee0fd" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "74af4eba741cd7a2c32b22aacb79cf846366b8cbf3c9d2d53fbcc824d468d15d" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "01c1e944584b0669417add6e01e9e1e05d96c996c7dc960be7267cf63b1d8f65" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2906983124748485, + "content_hash": "69c19771ef7c15eb429e1406696b93e362fee72a30fe752d2545824d549e7bee" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "c2d2924904fa22497b19997dc31bab140c61df16b92092fa0faadb78fe24f634" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "eb18103a02198d65b5a875eddc00dc294b6d11856cd3080e613fd68f49eaaf65" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "12d455c11e939b91ef63f2e47fdc2b26dd846613a34a47acc5fffb2088f62f42" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "ba23722274de4be0cc0bc78fce3a0c15f029078dfee9b2ed601463d2c8238ec8" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "fb445d676c6d0db3e480168a1baeb517e16c278cd63e6ad9081bf2b89e886dbb" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "6a7fcdd8f45b33fcd75d1ffc1ce4d3747aa153f4e9ddab34559e89629e176606" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "d40474d7d3121c2b9e0861c1b39a892a6ed46a787432e11413b5d5c4db0c5fa8" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "38ccce701949c5dd7b87e3ec39b592dc52a6f584d014cf4ee8e19008cd926d4d" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434715781, + "content_hash": "50affe96fbfd105e805674d1b4b904c93fb36beb04bf3a69b66a215b37dcb750" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "f817813453fcb4fbe9834c558b0ef4d420ccc2838391a0cc119a29b2513966e2" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "5945bc60aa4e96e3619c67fb855674c51f6ded5b945fe55b02d2539de906ac52" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "562c1449add68e0b77aa7c51a391f943f6a134c9bb101f16c718cb0de1419efc" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "b02e00724836fa6d8e8f7db49c92618f3668b81b98579a3d8c9987a64f152b1d" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "2e37ed06b05104900dc1af7f5c61e675630d2d8e01656ecaf3fa63584d7a0a6b" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "8b4b99d88cf1558bcc3534e997ced02f4502445088df0c72d54866a29a04d064" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4827, + "records_with_pk": 4827, + "missing": 99, + "missing_samples": [ + { + "sitegoodsstockid": 3071638015592325 + }, + { + "sitegoodsstockid": 3071634451269509 + }, + { + "sitegoodsstockid": 3071633557096453 + }, + { + "sitegoodsstockid": 3071632528869189 + }, + { + "sitegoodsstockid": 3071632310699845 + }, + { + "sitegoodsstockid": 3071631883765573 + }, + { + "sitegoodsstockid": 3071631616542533 + }, + { + "sitegoodsstockid": 3071631411398469 + }, + { + "sitegoodsstockid": 3071631205189445 + }, + { + "sitegoodsstockid": 3071630206715781 + }, + { + "sitegoodsstockid": 3071629779224453 + }, + { + "sitegoodsstockid": 3071629506463621 + }, + { + "sitegoodsstockid": 3071628686673925 + }, + { + "sitegoodsstockid": 3071628342872069 + }, + { + "sitegoodsstockid": 3071626727950277 + }, + { + "sitegoodsstockid": 3071626575365957 + }, + { + "sitegoodsstockid": 3071626320545669 + }, + { + "sitegoodsstockid": 3071567995062213 + }, + { + "sitegoodsstockid": 3071564938020869 + }, + { + "sitegoodsstockid": 3071564938496005 + }, + { + "sitegoodsstockid": 3071564938954757 + }, + { + "sitegoodsstockid": 3071490302904133 + }, + { + "sitegoodsstockid": 3071444244760453 + }, + { + "sitegoodsstockid": 3071444243859333 + }, + { + "sitegoodsstockid": 3071444244318085 + }, + { + "sitegoodsstockid": 3071294892164997 + }, + { + "sitegoodsstockid": 3071285920024581 + }, + { + "sitegoodsstockid": 3071279957985285 + }, + { + "sitegoodsstockid": 3071279820244869 + }, + { + "sitegoodsstockid": 3071279821244293 + }, + { + "sitegoodsstockid": 3071279820752773 + }, + { + "sitegoodsstockid": 3071279821735813 + }, + { + "sitegoodsstockid": 3071269105747845 + }, + { + "sitegoodsstockid": 3071261472081797 + }, + { + "sitegoodsstockid": 3071261335373701 + }, + { + "sitegoodsstockid": 3071243551541189 + }, + { + "sitegoodsstockid": 3071243551999941 + }, + { + "sitegoodsstockid": 3071243412834309 + }, + { + "sitegoodsstockid": 3071243357095941 + }, + { + "sitegoodsstockid": 3071243304896517 + }, + { + "sitegoodsstockid": 3071243245570053 + }, + { + "sitegoodsstockid": 3071242510010181 + }, + { + "sitegoodsstockid": 3071242345121669 + }, + { + "sitegoodsstockid": 3071242345596805 + }, + { + "sitegoodsstockid": 3071242346071941 + }, + { + "sitegoodsstockid": 3071242126247941 + }, + { + "sitegoodsstockid": 3071242060056453 + }, + { + "sitegoodsstockid": 3071241995536261 + }, + { + "sitegoodsstockid": 3071241936979845 + }, + { + "sitegoodsstockid": 3071238738331525 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "cb210a7e737c91007d7d2d4336e0b9521cde7fb84f1750114922d6d11b6a5d39" + }, + { + "id": 2792521437958213, + "content_hash": "00d0db0261dfe7c3bbd144a66e567d3e4f9d28dd822b6f8d832162298b652ae2" + }, + { + "id": 2793001695301765, + "content_hash": "3524da62e556150bb1541eba9319189648968009b987320dc3652bd11af572ce" + }, + { + "id": 2793001904918661, + "content_hash": "a4877474896fc85c96c87d47ce783f19a9bced0100355e6878c591243dc207f8" + }, + { + "id": 2793002509209733, + "content_hash": "5912ee8349e7488d06be68315decd4eec4969ce962b299ee607f48cbe4683840" + }, + { + "id": 2793002673295493, + "content_hash": "a0f12179a006c7e8ee79c8c3743506770d5d4940a2fe238251b059d48c339660" + }, + { + "id": 2793002808987781, + "content_hash": "c9759dc8dd82d93fb85cae384013a5081784015a2a064235bbae3af6fe200672" + }, + { + "id": 2793002896494725, + "content_hash": "3deb04b381f9a99be082ff925373ff8acbe0f150ba050d752f559278e25a82ba" + }, + { + "id": 2793002980429893, + "content_hash": "832356e408d29c75ddced9f203d9ce06e275509a8947b880460d4d101136a4f2" + }, + { + "id": 2793003066429509, + "content_hash": "b56eb7a2a3c8ddad15d353d1726079af4fd44e5fb21e899a4c788d23e69ea82c" + }, + { + "id": 2793003159474245, + "content_hash": "bf4326ee246c0b784f6945a8850946fc5d64439644c8db6ff3b997606dbb540f" + }, + { + "id": 2793003243294789, + "content_hash": "41dbd3ac7472013fa7aeaefdeea627132d46e434d09a8371592b66a49e4f2e1f" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "3e797a21ad59f57f6978cd9c246080dbff5fb3425f1b209545a6eaf0d4b4c3cb" + }, + { + "id": 2793003506815045, + "content_hash": "eb5175ab3289c5dd267db6544443e6e384f1fe4e272c55602123a7c5b8156aab" + }, + { + "id": 2793003618340933, + "content_hash": "724d70d165a83022814d8f3eed875e54694e6ec07d23d88d1fa2c67d8de584d4" + }, + { + "id": 2793003705192517, + "content_hash": "c370fbcabc41c9908b6dbde06e45c7e5c9ba142e4d62871607f4d029d0c9163d" + }, + { + "id": 2793003806953541, + "content_hash": "b0cdb8379f8e81999909bb4d9649ec6b4370a32d1cc70b0377a7ead6329526b9" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ed82663353185af588cea305de4be3242696cd44134df2220fcf5337b982ed4a" + }, + { + "id": 2793012902121605, + "content_hash": "12dc03c53a79fe6c786f1d6527e813ee0b8245b858ba8ec955b223a3703b1685" + }, + { + "id": 2793012902154373, + "content_hash": "79f87c4d843c791a1aecf484477997b28a64a1361cf3d5d618c576567f30e923" + }, + { + "id": 2793012902203525, + "content_hash": "276bbf86ef3e8598a47775bbb17d455df61bd9a9c0a9d051bb7847faeddd7296" + }, + { + "id": 2793012902236293, + "content_hash": "c21f8f4af1547e6300443fb54ed102698cdbfca56fe08283ed9b12817df0bb2e" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "3e7547ebf68d3ff2bc827bba786f9d5b23b6488b8c931c1bac2632f45646f3d2" + }, + { + "id": 2793017278451845, + "content_hash": "fff6db303c8a43089407a3b8c255b53422949918f1f5ef136cd00a98f5fa70bd" + }, + { + "id": 2793017278484613, + "content_hash": "0fa1f666060bd0dbd6839cf13563a20583945d65d226c7b9137f8c602879f017" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "27fb8553de00c3253c3730203360aecd1e248370000b3317bffcd8ad71de6709" + }, + { + "id": 2793018776604805, + "content_hash": "eb6096f20e4eadba128c8c1b103f49a9dd0198cf92c35ea5f7fb976a8aac5a43" + }, + { + "id": 2793018776653957, + "content_hash": "d8fe06b5c0bbc51f2591ffc5e83325dc4c95e2802eb92e8da85a7b9260df5b1c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "b1aa37b3272251a0bd74a009a5eae0a17a04d3b4b87e224fe053bb1c9268ada6" + }, + { + "id": 2793020259897413, + "content_hash": "6495522fe775a90858d001a69e914937cea80c316e408dfda7de9c5a3c857463" + }, + { + "id": 2793020259946565, + "content_hash": "77b13ec478742562b2469cb96600b1f90c53c95b0f461b518c2573bd05c2c1c4" + }, + { + "id": 2793020259995717, + "content_hash": "ae1d7891d32b8ca73d06d459fc6dadf4f0c362fdc89e0cdd782f781614a31c80" + }, + { + "id": 2793020260044869, + "content_hash": "018ee46d6a8add27f62b13c2f0631740d31da2590f9ac04c7c5e39b69db6fa8f" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "3017ceed6aacba9eaf660e7179aac42a9542c560eec1182e9e6af154bea85388" + }, + { + "id": 2793023960551493, + "content_hash": "7e6dcbb268601db7e754bd622fd92d8fac090e314074480bcaeb656fa83616ae" + }, + { + "id": 2793023960600645, + "content_hash": "221ba3de156943f1a5400f29606b311c5a5e451970d1a6547a37dfdc47a256c5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 171, + "records_with_pk": 171, + "missing": 0, + "missing_samples": [], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1b99170eb85e9bc12932345275c68957600bfc744a163ef55bfd4df0bc5a58c2" + }, + { + "id": 2793025849102405, + "content_hash": "2df6056f0c4cdbe6bd901ac8d7e42ebdc8606f752f2d19fbaf5d1222455023fc" + }, + { + "id": 2793025851560005, + "content_hash": "a60f4c27a0ba6d37bbe01ca6419995f52caaf282a6cf67aaf612a633a4594ac3" + }, + { + "id": 2793025845825605, + "content_hash": "077da9a7c97ac1f5da91bdd839b33fe7ae64d6807250d98dc82599392b89418a" + }, + { + "id": 2793025849593925, + "content_hash": "ecbafb6f71a28fdb1420cb23a67f1c285ba0357e436904317db81dd8367bfde7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "1f9ba0f1d3f93e014be40d28647db87c4754d61a0f15e63291607b1dede7087f" + }, + { + "id": 2794695800934533, + "content_hash": "6daeb8c68e9714a947a6c1a45516dfc95e9afacee0396ed5d50e3a3b4a589595" + }, + { + "id": 2794695801409669, + "content_hash": "4dfeb035be9052085a8e1d0dfff5b6d307ad11067e5fa3f7cf729ef8d3562c1a" + }, + { + "id": 2794695801589893, + "content_hash": "5460493c39d653aa250592f95eb86345a0df44fe5d3d0c5f7011e1349156afc7" + }, + { + "id": 2794695801753733, + "content_hash": "29e110ea68a4e38df1607f302716c79c65d58b71778981d4194895ad7805ea9e" + }, + { + "id": 2794695801917573, + "content_hash": "0a753b5b9520937f73642164e8cf7b6e1e34a3912dc6418e12382193008a186c" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "ed5980edfb011d80188b16baa52aa2d655e73a6093bb73532a8cfab7a23f0290" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "ab54f60efee78fa1ed223efea7f91d1543b01931968e810be70644f312703e50" + }, + { + "id": 2878393200266693, + "content_hash": "e255d52703054eed2116a69f32dc3e4e5d6be0f6cdb8750b248a547aa79ba404" + }, + { + "id": 2906983124748485, + "content_hash": "e29b2c8204ead8a8b099d19bd75399282643f3ba31e337dfdff2a10161b9673e" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "00eca4af27d74c575ef308f255009093e6f2f02a6947e702ba9bd7667ad14f67" + }, + { + "id": 2793025860145221, + "content_hash": "0d6a4e99e098487a11da6cdbc7d9fa7661e43541c4a728f07c98b7547aee50c1" + }, + { + "id": 2793025860636741, + "content_hash": "746df9241079eb0b43b635955b27c55ede126794327598be3986b8bace418c60" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "9cc950d876947e970d32fa77e24f3f409ea79fa8839bcd390dfca8bb16879515" + }, + { + "id": 2793025861505093, + "content_hash": "0bf7db89d5a4620c69817b25df4bbea4d220f5e0155c5419d7364df756f3b983" + }, + { + "id": 2793025861685317, + "content_hash": "8452036ae10b25a255cd7be25d4296179fe192dda00575af11a8af90ac93ff4d" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "c45085bc32c755897cf72c9623a82ad043c8817cd237ae292d96a98dc90df5ee" + }, + { + "id": 2793025862438981, + "content_hash": "a948d06adf4348edd9d61be4839d03b71646b05108bced136e9af2bc053bff80" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "c256429c94641deb9e347c2c19cf9c859ae16a317f23cc44b42063a342ad2bfc" + }, + { + "id": 2793025863127109, + "content_hash": "09ec5c3a74bd634fe24def65b4d2cdd522bd9e3eb77b32d1c2de33ddb1680a6d" + }, + { + "id": 2793025863290949, + "content_hash": "85b9be01b9f1875e64417de1a1f7001e1e79dd2f440d1fd2807428912c039e18" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "2092e97dd08dae9a6e992ef08fba22499f976adcd4149cec7f22170b0d3ae644" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "ea67d5ea49ad3c6fb94cfdfa176ea86ab0aa036c640bfce43a03ed22f00e8afa" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "7a56a490220d26a20378f5ef00ba0ae6bbc7d2404374208b2396a4b8d03385b2" + }, + { + "id": 2793025846464581, + "content_hash": "364678bdf9a8ae916ea828f3b7c12c223765e6217ef037b4da85e71dbf2711dd" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "a91df90a302e67ec354d755c73944159606636c3f310f16f7860908f046c80eb" + }, + { + "id": 2793025848102981, + "content_hash": "fcb8a113f21f21e719afdfe5be2d30266e7721056d484f67139114bc51846b9b" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1746, + "records_with_pk": 1746, + "missing": 7, + "missing_samples": [ + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3357, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 18, + "skipped_missing_pk": 3357, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 241, + "total_mismatch": 24138, + "total_errors": 0, + "generated_at": "2026-01-29T11:04:27.139727+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 36893 + }, + "generated_at": "2026-01-29T11:04:34.871523+08:00" + } + ], + "api_to_ods": { + "total_missing": 936, + "total_mismatch": 188690, + "total_errors": 0 + }, + "total_missing": 936, + "total_mismatch": 188690, + "total_errors": 0, + "generated_at": "2026-01-29T11:04:34.871547+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260130_211444.json b/etl_billiards/reports/data_integrity_window_20260130_211444.json new file mode 100644 index 0000000..d431d26 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260130_211444.json @@ -0,0 +1,9432 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "0d734cb63ad3ac7ad099cc458223108ed7920d7d11542c24f1a4790b2a58d8b3" + }, + { + "id": 2964640248745157, + "content_hash": "93b320e8969aae9cad71101424907535d4ddb6f1255617e5ccb9b2cf27fbb50e" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "80711a362a8b4ad6069a9dd746b2dd54b4d68c6a360ab02b79ff02a3c6296400" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "37d88b8c385ad829b87aeee38df0679e8f4d0018d0713ce1d857713c8e2e5241" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "6f374a05289b9d8c215daaee1369f93ccec5badcd506df23cede0b76676fa279" + }, + { + "id": 2793530479530053, + "content_hash": "6460459be11d7c8da5277a8ff508b19fd5e6bc8268ba9957213804136d906c6b" + }, + { + "id": 2793486361710725, + "content_hash": "83f3fbec9622dce2408d06bce598c74c2d2034f415a6a5d782f592870610b200" + }, + { + "id": 2793493699088517, + "content_hash": "174f9986afb4cc51fa2c988ba70b30024f015df39bbe1f41a2193f2ca275b9d2" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "0d734cb63ad3ac7ad099cc458223108ed7920d7d11542c24f1a4790b2a58d8b3" + }, + { + "id": 2964640248745157, + "content_hash": "93b320e8969aae9cad71101424907535d4ddb6f1255617e5ccb9b2cf27fbb50e" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "80711a362a8b4ad6069a9dd746b2dd54b4d68c6a360ab02b79ff02a3c6296400" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "37d88b8c385ad829b87aeee38df0679e8f4d0018d0713ce1d857713c8e2e5241" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 103, + "missing_samples": [ + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + }, + { + "id": 3072533861139909 + }, + { + "id": 3072533176878469 + }, + { + "id": 3072525887735237 + }, + { + "id": 3072517966825093 + }, + { + "id": 3072517187388869 + }, + { + "id": 3072509575873925 + }, + { + "id": 3072498721129861 + }, + { + "id": 3072489848555077 + }, + { + "id": 3072485641700805 + }, + { + "id": 3072483044230790 + }, + { + "id": 3072471418046021 + }, + { + "id": 3072465060513157 + }, + { + "id": 3072450650965381 + }, + { + "id": 3072450265892293 + }, + { + "id": 3072449766835781 + }, + { + "id": 3072432396338821 + }, + { + "id": 3072428241077701 + }, + { + "id": 3072425811560005 + }, + { + "id": 3072419508127365 + }, + { + "id": 3072398647444933 + }, + { + "id": 3072356633511557 + }, + { + "id": 3072347174323845 + }, + { + "id": 3072347127055813 + }, + { + "id": 3072347075724933 + }, + { + "id": 3072344928159109 + }, + { + "id": 3072332612814213 + }, + { + "id": 3072331990795653 + }, + { + "id": 3072318637344133 + }, + { + "id": 3072298068411845 + }, + { + "id": 3072296746108549 + }, + { + "id": 3072294319703685 + }, + { + "id": 3072287723308613 + }, + { + "id": 3072287573165445 + }, + { + "id": 3072281234359941 + }, + { + "id": 3072275533727109 + } + ], + "mismatch": 21414, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10017, + "records_with_pk": 10017, + "missing": 154, + "missing_samples": [ + { + "id": 3073829506926149 + }, + { + "id": 3073818600392325 + }, + { + "id": 3073817370248773 + }, + { + "id": 3073814678947205 + }, + { + "id": 3073809412032069 + }, + { + "id": 3073797232330373 + }, + { + "id": 3073797232313989 + }, + { + "id": 3073786718996037 + }, + { + "id": 3073771770414725 + }, + { + "id": 3073763304326725 + }, + { + "id": 3073751213786501 + }, + { + "id": 3073750324053637 + }, + { + "id": 3073743226815941 + }, + { + "id": 3073741228852869 + }, + { + "id": 3073735537984901 + }, + { + "id": 3073734857180741 + }, + { + "id": 3073734857147973 + }, + { + "id": 3073734142625349 + }, + { + "id": 3073705558132293 + }, + { + "id": 3073704045954501 + }, + { + "id": 3073702633473669 + }, + { + "id": 3073697293796933 + }, + { + "id": 3073690257065349 + }, + { + "id": 3073683966281349 + }, + { + "id": 3073683742803397 + }, + { + "id": 3073681145923013 + }, + { + "id": 3073658609059269 + }, + { + "id": 3073653510473093 + }, + { + "id": 3073652727973509 + }, + { + "id": 3073631146264005 + }, + { + "id": 3073581977830981 + }, + { + "id": 3073574924469637 + }, + { + "id": 3073574873941637 + }, + { + "id": 3073545156888005 + }, + { + "id": 3073520159950469 + }, + { + "id": 3073430045984389 + }, + { + "id": 3073387406525893 + }, + { + "id": 3072792115250757 + }, + { + "id": 3072786616141445 + }, + { + "id": 3072782519453061 + }, + { + "id": 3072782519436677 + }, + { + "id": 3072782519485829 + }, + { + "id": 3072782519502213 + }, + { + "id": 3072766252664197 + }, + { + "id": 3072754585601477 + }, + { + "id": 3072748095096389 + }, + { + "id": 3072705242203781 + }, + { + "id": 3072705242187397 + }, + { + "id": 3072696455136901 + }, + { + "id": 3072696389076613 + } + ], + "mismatch": 8966, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 15, + "missing_samples": [ + { + "id": 3071188925302597 + }, + { + "id": 3072498777589125 + }, + { + "id": 3072489929852549 + }, + { + "id": 3072432452519365 + }, + { + "id": 3072432452044229 + }, + { + "id": 3072332756567429 + }, + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + } + ], + "mismatch": 4278, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11828, + "records_with_pk": 11828, + "missing": 176, + "missing_samples": [ + { + "id": 3073829504550469 + }, + { + "id": 3073828344890821 + }, + { + "id": 3073818598278789 + }, + { + "id": 3073817368315461 + }, + { + "id": 3073814676129157 + }, + { + "id": 3073809409787461 + }, + { + "id": 3073797226661510 + }, + { + "id": 3073786716685893 + }, + { + "id": 3073771767416453 + }, + { + "id": 3073763302196805 + }, + { + "id": 3073751210755461 + }, + { + "id": 3073750321104517 + }, + { + "id": 3073748715652677 + }, + { + "id": 3073743224473029 + }, + { + "id": 3073741226559109 + }, + { + "id": 3073735535756677 + }, + { + "id": 3073734853183045 + }, + { + "id": 3073734140249669 + }, + { + "id": 3073705555478085 + }, + { + "id": 3073704043644357 + }, + { + "id": 3073702630262405 + }, + { + "id": 3073697291503173 + }, + { + "id": 3073690254771589 + }, + { + "id": 3073683963922053 + }, + { + "id": 3073683740296645 + }, + { + "id": 3073681143645637 + }, + { + "id": 3073670469993925 + }, + { + "id": 3073658606454213 + }, + { + "id": 3073653508244869 + }, + { + "id": 3073652725712517 + }, + { + "id": 3073646756890053 + }, + { + "id": 3073631143855557 + }, + { + "id": 3073581975242309 + }, + { + "id": 3073574922012037 + }, + { + "id": 3073574871778949 + }, + { + "id": 3073545152611781 + }, + { + "id": 3073520157623941 + }, + { + "id": 3073491229132421 + }, + { + "id": 3073430043952773 + }, + { + "id": 3073387403986373 + }, + { + "id": 3073307387102789 + }, + { + "id": 3072792112727621 + }, + { + "id": 3072786613896837 + }, + { + "id": 3072782512637317 + }, + { + "id": 3072766249829765 + }, + { + "id": 3072754582357445 + }, + { + "id": 3072754358060485 + }, + { + "id": 3072748092343877 + }, + { + "id": 3072745492628933 + }, + { + "id": 3072741153621445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 1, + "missing_samples": [ + { + "id": 3072740947101125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17257, + "records_with_pk": 17257, + "missing": 119, + "missing_samples": [ + { + "id": 3073829133239685 + }, + { + "id": 3073824938575301 + }, + { + "id": 3073822112564613 + }, + { + "id": 3073820270773893 + }, + { + "id": 3073814908470725 + }, + { + "id": 3073802735388293 + }, + { + "id": 3073797914281541 + }, + { + "id": 3073794447935045 + }, + { + "id": 3073792231835013 + }, + { + "id": 3073779752093061 + }, + { + "id": 3073778630346181 + }, + { + "id": 3073758002448005 + }, + { + "id": 3073755283375493 + }, + { + "id": 3073749492483653 + }, + { + "id": 3073740424496581 + }, + { + "id": 3073733296129669 + }, + { + "id": 3073728923682373 + }, + { + "id": 3073728567314053 + }, + { + "id": 3073726889772421 + }, + { + "id": 3073726744168005 + }, + { + "id": 3073717513946693 + }, + { + "id": 3073702552864197 + }, + { + "id": 3073700711302725 + }, + { + "id": 3073684098107013 + }, + { + "id": 3073676096505285 + }, + { + "id": 3073645110707653 + }, + { + "id": 3073626155271557 + }, + { + "id": 3073624383391109 + }, + { + "id": 3073610862134725 + }, + { + "id": 3073598733944389 + }, + { + "id": 3073592919065989 + }, + { + "id": 3073590209070661 + }, + { + "id": 3073585935205765 + }, + { + "id": 3073585830086021 + }, + { + "id": 3073580981749381 + }, + { + "id": 3073557996340805 + }, + { + "id": 3073545710093893 + }, + { + "id": 3073526036825541 + }, + { + "id": 3073525904164421 + }, + { + "id": 3073485143344709 + }, + { + "id": 3073474164049349 + }, + { + "id": 3073454669661573 + }, + { + "id": 3073452216485445 + }, + { + "id": 3073435172488645 + }, + { + "id": 3073434994754949 + }, + { + "id": 3073400834246085 + }, + { + "id": 3073392316188037 + }, + { + "id": 3073370594461253 + }, + { + "id": 3073325501253253 + }, + { + "id": 3072641404847685 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "6cf1f700c54da6d9f7f749cd889c5030aee73f1b74f0325e0880aaf946ba8b73" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "decc49b3288553100a503cce049acb8a5873c55b931030f92ee78b2de5fef54c" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "929d8f631b7992d2a7ceb1573c5bc2a323cadf083ebcd52e6135e9ebc99d14c0" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "1798a4485ee2e42c18ceda5f81821dfd6dfc7373f9e24cecb4882dfe282a6680" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "0dddb75a7690ff8302288a38011585b2c07ac49ad829bda313de7da1832c2534" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2477, + "records_with_pk": 2477, + "missing": 32, + "missing_samples": [ + { + "id": 3073751211328901 + }, + { + "id": 3073750321677957 + }, + { + "id": 3072782513456517 + }, + { + "id": 3072782513243525 + }, + { + "id": 3072757527416517 + }, + { + "id": 3072754582865349 + }, + { + "id": 3072754359502277 + }, + { + "id": 3072743656476357 + }, + { + "id": 3072741154964933 + }, + { + "id": 3072740945233349 + }, + { + "id": 3072740723557829 + }, + { + "id": 3072705238435461 + }, + { + "id": 3072705238238853 + }, + { + "id": 3072672972064325 + }, + { + "id": 3072639798724037 + }, + { + "id": 3072523081485957 + }, + { + "id": 3072498775344517 + }, + { + "id": 3072498363795013 + }, + { + "id": 3072489926887045 + }, + { + "id": 3072432448685509 + }, + { + "id": 3072296785839493 + }, + { + "id": 3072106133079622 + }, + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2320, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 2, + "missing_samples": [ + { + "id": 3072498360337989 + }, + { + "id": 3071351863953413 + } + ], + "mismatch": 412, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8192, + "records_with_pk": 8192, + "missing": 108, + "missing_samples": [ + { + "id": 3073829507597893 + }, + { + "id": 3073818600916613 + }, + { + "id": 3073817370838597 + }, + { + "id": 3073814679635333 + }, + { + "id": 3073809412621893 + }, + { + "id": 3073786719602245 + }, + { + "id": 3073771771250309 + }, + { + "id": 3073763304883781 + }, + { + "id": 3073743227422149 + }, + { + "id": 3073735538591109 + }, + { + "id": 3073705558836805 + }, + { + "id": 3073705558836806 + }, + { + "id": 3073704046560709 + }, + { + "id": 3073704046560710 + }, + { + "id": 3073683967018629 + }, + { + "id": 3073683743524293 + }, + { + "id": 3073681146512837 + }, + { + "id": 3073681146512838 + }, + { + "id": 3073681146512839 + }, + { + "id": 3073653511226757 + }, + { + "id": 3073652728628869 + }, + { + "id": 3073631146935749 + }, + { + "id": 3073581978453573 + }, + { + "id": 3073574925124997 + }, + { + "id": 3073574874613381 + }, + { + "id": 3073574874613382 + }, + { + "id": 3073545157428677 + }, + { + "id": 3073520160573061 + }, + { + "id": 3073520160573062 + }, + { + "id": 3073430046508677 + }, + { + "id": 3073387407082949 + }, + { + "id": 3072696455841413 + }, + { + "id": 3072673043564165 + }, + { + "id": 3072673043564166 + }, + { + "id": 3072672522389125 + }, + { + "id": 3072672522405509 + }, + { + "id": 3072609884046725 + }, + { + "id": 3072608048367238 + }, + { + "id": 3072585214576005 + }, + { + "id": 3072583142311301 + }, + { + "id": 3072533207221893 + }, + { + "id": 3072517983422021 + }, + { + "id": 3072517206197637 + }, + { + "id": 3072509777692293 + }, + { + "id": 3072485663049093 + }, + { + "id": 3072483061040709 + }, + { + "id": 3072471439066565 + }, + { + "id": 3072465077814917 + }, + { + "id": 3072465077814918 + }, + { + "id": 3072450667382405 + } + ], + "mismatch": 6960, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 41, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "sitegoodsid": 3073782716778501 + } + ], + "mismatch": 115, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "a9913b113eaf64147f8ac13b00bfbc2f1274c6a0a3e5ad5446ad56c647c74931" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "4264c035192dcd99094aa115632d04cca3e851031cedf8771bd569fd338d0801" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "2890bf429dd18c412b5a3d619d4a15840c915e6bf9b2347b3531f9f6aaf3476a" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "f9bf5b63ee886bf11c672a9bcb0a3f9f81e5b0fd8c8909bb0ebc4259dceeaafc" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "4f2a0b6fb787afd25d2800712efd04212b851466c1e7488e4a4f98ab139d0396" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "ad05ab7963bbddc6a2e1eff4c0d68c4d85542ade126d062ffb9671e4f81eda2f" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "30f68ad5baec22309f38a0d146711a7d1733f1f3c408dee1221ef55115d00e18" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "ca117cf4a57c3a4a4666f5709a629cc85a06335f8c5ac7abc176b5552a8b404a" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2804514498563141, + "content_hash": "e1dbc327b8c014787f1cb144c721f60a5840cd5ff27d46b99df53f8c62bf5d70" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "f1966917a48f6300e33d064067023d88dce7f32a40d78793b87c5d5a95dd945f" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "aa6139ae2b4f8e95b20f86570921926b8ecbfc36cb12c0a5b427aca58e760cc8" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "975451ffa4f62a9f0f1d23dc418cc0ac804d0eb93b9c821d31c5ab0e6528c115" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "3e517fbb2c48ba27f802bda7e48457117a6fb952c29a574c45c99854c8370d5a" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "fefbe7e3f520049437bafaf69d4543bd633618d5b9b3408302473cb9ef01beb0" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "98ed4ad513c3bada92c1e73c8d555611df623a235daf5b2abb4f304cc2dca00e" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "9b20a2b6ff7aa28ee4397a97603ba55cb584abbba22f76ef56d3a1d840475394" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "654c73b7716f3f2e3f68c019b9a0410d3c33621f0736d983f02e9872b6860496" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "84a4ece9bb1f866caab801177674a93ec3f4847381e7a57c79c922c328687dec" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "4da3fca81315491bd59867e6c46fe5e5e5d617c409d1fe609d1d81c2df156ad5" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "40e48b1aab5015608c96ecdce9dcab55941e2ce214cdda589e04ea99557283f5" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "bc119d1d9318e5ef0e0b73582589b7063e914275048d59be50f919b059a099d5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 208, + "missing_samples": [ + { + "sitegoodsstockid": 3071187890865989 + }, + { + "sitegoodsstockid": 3071182788102021 + }, + { + "sitegoodsstockid": 3071182787594117 + }, + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + }, + { + "sitegoodsstockid": 3072549650433605 + }, + { + "sitegoodsstockid": 3072549649335877 + }, + { + "sitegoodsstockid": 3072549650974277 + }, + { + "sitegoodsstockid": 3072549649876549 + }, + { + "sitegoodsstockid": 3072549651514949 + }, + { + "sitegoodsstockid": 3072546025702853 + }, + { + "sitegoodsstockid": 3072545888241093 + }, + { + "sitegoodsstockid": 3072544489932357 + }, + { + "sitegoodsstockid": 3072544190055813 + }, + { + "sitegoodsstockid": 3072543251072645 + }, + { + "sitegoodsstockid": 3072535484794501 + }, + { + "sitegoodsstockid": 3072533915993733 + }, + { + "sitegoodsstockid": 3072513744684613 + }, + { + "sitegoodsstockid": 3072508727346757 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "fe996bc9f648df2d9b8b056d25183f55700d5ed0ca167f8d3401776a2dd4a3cf" + }, + { + "id": 2792521437958213, + "content_hash": "44308fd32ad3980508ae8ab6d1acaf2e2e26b72aa69e085bfa9bf8cd69e405fb" + }, + { + "id": 2793001695301765, + "content_hash": "298dbbf1e49ae45db09b1c54c9453da12793153163bcf673e1936b67a7837d0e" + }, + { + "id": 2793001904918661, + "content_hash": "8fbfe73d6376cc8ae8d04b042b3c6aa893d25417f115fb914a26f3e7679ded0b" + }, + { + "id": 2793002509209733, + "content_hash": "8f317e6e29ea0819eec9ebb4e68b506ed6076d2edb6cf0045289bcd30ff8a6bf" + }, + { + "id": 2793002673295493, + "content_hash": "1901c6fe7ce62af1db9cb4196256472f31448281a8b7eb30cc0faf677e976b40" + }, + { + "id": 2793002808987781, + "content_hash": "6ca2c6edaf0ad0f6fd2307dbd069805f59368ca46ecff4f1b7b3f2935756c201" + }, + { + "id": 2793002896494725, + "content_hash": "1445a0a120e60a9879d8547f1309fb043caf35064c3e8ded8430ad82c941eeed" + }, + { + "id": 2793002980429893, + "content_hash": "50d428a141c2e54634fe486654c633cd81a7477c86073ab988639262e991913e" + }, + { + "id": 2793003066429509, + "content_hash": "86e8ffecf1ce9ce1bf0744d4223dbb61123d06dabaddf84521046eaf7ceedcd5" + }, + { + "id": 2793003159474245, + "content_hash": "cc08debd1c81e5b710970455a43802fb2be0dad1e3693bbba74cce700eae0466" + }, + { + "id": 2793003243294789, + "content_hash": "aec7e3afda2979996015be5c7d612b07233056e746efdcf421c454ebb694d7f0" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "ac38b59da2751f9e769fefbd6d0a52beca2518a563690463991596336c3d7d4e" + }, + { + "id": 2793003506815045, + "content_hash": "da6fb0f27740d8f4d87f87ca16950b7cc90fbb8356481da2c5b2a3b2976557be" + }, + { + "id": 2793003618340933, + "content_hash": "13388f89af216142386c81365191ee3ef3e9b5bf0eb0fbcffc035e0d296a35f0" + }, + { + "id": 2793003705192517, + "content_hash": "91daf1a85dc18fbabca50afbf704386a392f3ade316cef3f704205839aef51ea" + }, + { + "id": 2793003806953541, + "content_hash": "245e08f11683746966e9af4cff9f5264ff2712342df78dff9c4624b5287f8243" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "29bbf4e5b89e0eb4af82e2f644745076cbebd81c924c9d951006763069f910cc" + }, + { + "id": 2793012902121605, + "content_hash": "4dcd6679a3b533cfdc75d2ffb1617c6573e2a8474817ca15bea31e73edf04258" + }, + { + "id": 2793012902154373, + "content_hash": "277938a622e6019c1c47699504f81dae3c38fbee4e12c8f846e6f56a18678dbe" + }, + { + "id": 2793012902203525, + "content_hash": "70a0efb5d0b12d8e52fec3b125669a5a72f036f437116927b13116c3244cf39a" + }, + { + "id": 2793012902236293, + "content_hash": "31bd7bc7c1e464becfd5c755e9309f70c3443ddf7d04a27b25d3c32d0f4e11d7" + }, + { + "id": 2793012902285445, + "content_hash": "92887451b4d552b33574961150d6612e1a34b2f39e602fc1643d1ba2ec5bf985" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "f5059f01b09a1bc0d4343409c08ebd93324ef4a2988ecc19a1edf39a500c10ee" + }, + { + "id": 2793017278451845, + "content_hash": "ac6908a86b834961924076134891d3e21b931d7318603ebd9c199dbf64e490fc" + }, + { + "id": 2793017278484613, + "content_hash": "868a7f5fd72b0c0574b23dbfaaf2cd6f9609dca9b807c5cf03fe3273e370db3b" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "44bc9f567f483040b1364ab85081b03bf6c70a81f7a9191eb9c4620165ceafbe" + }, + { + "id": 2793018776604805, + "content_hash": "e28469ae6e8ae489301a67c45de99bb1c96652656ff6ca3a882850ed9506d493" + }, + { + "id": 2793018776653957, + "content_hash": "b5ccc0da91d465f5e2cc1dc5e8fe87edca90117e2eafcf9a309ff09b21e87f9c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "ff3fad45e8528fced7591221b358dd17cb450889a2ae517276a7ac947e2e897a" + }, + { + "id": 2793020259897413, + "content_hash": "d63d30676d7f2c3d0e548783da9263f142f30ee199fcd36c161ef73a436e3629" + }, + { + "id": 2793020259946565, + "content_hash": "0b197efcb35c7f72066cb77e46f482edce3bf5912e251663e11e47fde38e7bfa" + }, + { + "id": 2793020259995717, + "content_hash": "3d7d25be1f90271e94c1dd166debae99716235be23f00dfa234610a81d250df2" + }, + { + "id": 2793020260044869, + "content_hash": "e5e52f2b8b6dd66b80298a16d9200673a0ed360918dba6484b7b8d0d0e4d87d7" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "868f4264d5787daa1c2b1cf3694272a4c28d25fff92a4bd0803038c9ec1bf18a" + }, + { + "id": 2793023960551493, + "content_hash": "e942fde98eff603bbd4bfe849cdd5b177620fdd451995cf24c32333ed6f44d6f" + }, + { + "id": 2793023960600645, + "content_hash": "28c042b687e714bd012305115dffa2b257c96f522001d127d9b0356cae3c6100" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "id": 3073782716778501 + } + ], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "1e469d9473f715a20941386138ddddba09f9cdc3cc4b9257ad9dd6baf346a3dc" + }, + { + "id": 2793025849102405, + "content_hash": "7428324ca083b36a0b773d44ee083d674ebdcf0fa083a62f61f7a8aa970a93dd" + }, + { + "id": 2793025851560005, + "content_hash": "4902a5845dfdb09978812f4caf46af27d431c937df2837cd3b127d2bb03f5df6" + }, + { + "id": 2793025845825605, + "content_hash": "781e7b15e4410be5e2a4f836a12eabcb6abcd7c7ed4c2434b36699076407190d" + }, + { + "id": 2793025849593925, + "content_hash": "ec216cfac8b9550e0e54739a724b749dd8b0b0b208d0a0cdacdd783ef4da53d7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "78412f7f62cbb8ef5e7210d857656633ad73e39c390a7a858959a4055939e2b2" + }, + { + "id": 2794695800934533, + "content_hash": "e5c8c5042fa23167b7bd4da0a4d937cb4d5de6a52c7fe9f666a5d87feea8c8eb" + }, + { + "id": 2794695801409669, + "content_hash": "4563fcea1149b0151d5f758bebb7225df763f0943857871617241726cf050c86" + }, + { + "id": 2794695801589893, + "content_hash": "326070376fbed1314c8d6e988143a763e63795b14b61c483ba33cb7c5e978921" + }, + { + "id": 2794695801753733, + "content_hash": "5454ae9e95807596e640a1b319c4a0252f5ecfea481769b5ff9d9ea264661274" + }, + { + "id": 2794695801917573, + "content_hash": "710eeb95bc3ff85607f085500b0b12b36dd014eac0779a72484b3c57d820a6ff" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "e1961444a2eb82970d92f4569206d3d92c693b835a0a16f13e68ebcae61d37a6" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "24c4d4a63ec90981980fbd593a7117ac088ea858d9b8d558a06fb13ae06d677e" + }, + { + "id": 2878393200266693, + "content_hash": "97387f73dc72810d071f0e197ed210f41fac05526b12da46f082c2f7a737ee2b" + }, + { + "id": 2906983124748485, + "content_hash": "4b6cacf0ed0acf07be37301d91ca189c6fd7f04488f5ad9df14ef3df4c1f9c5f" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "eb091e5f20cb90d597e65185bb320e8b0af5232bcb042b5298421b6f170d3d8b" + }, + { + "id": 2793025860145221, + "content_hash": "29b411595b75b729405925b99a5a617ee16d48afe10deb0f97a3e56e3ac018e0" + }, + { + "id": 2793025860636741, + "content_hash": "3056c631707f0bd0cfedb0a9c1ef51b2df43e924063b177df1ff6248d7c688a7" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "ffa97a56bb1c8168558d2669df2cf335a6e862d6f870728c95097488aefcd729" + }, + { + "id": 2793025861505093, + "content_hash": "314673b3d453f3cab58bd2bdd0a38f80cf25b924e95c9778064cf9dec685193d" + }, + { + "id": 2793025861685317, + "content_hash": "50feb875844c3befa2f145b3c0d2977efb25d8b7224ef2dea9dca2d9076afdd3" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "3405caae57ff0edf233856a751753ebdd3134613b2e63baadcc97067fed34537" + }, + { + "id": 2793025862438981, + "content_hash": "cb3b5baccea0a0e2d36199b7a2dc3645a2a0b8231db22b73286b4eb1f4b69878" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "bb89b4dd3e1557d5ccd5c8dad42201f4399369ccb1277476ac1933ea34765e07" + }, + { + "id": 2793025863127109, + "content_hash": "0754d6ec59da19288e2666f1c4f820af8a8a79a6c930eb3430b50ba9d7339900" + }, + { + "id": 2793025863290949, + "content_hash": "a88508f2f5ab8e27e9ad8c27ab0b5989793f03065411b6fd672f95bfc5097417" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "1407bbea6e906ea0a59e28f6256d539550c76b20f388dd2bb5121824ad74ab66" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "7cf1f9ec07b70ebd232b9ae03c1d120ba513e4875a23bb5d54dcfae1cdfdf7e5" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "a5d8c911a343ff06a4aec09177e70d0c8e95bca99a3dbb60c3698ce8c642ba70" + }, + { + "id": 2793025846464581, + "content_hash": "f6af93a7072201dd2ffce05971fcd2dc0677732cb86370aa1e22ce904091a36c" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "4744c615cdde3e37c96cf9c0fe7b7db04654f5c50e42f86e26dc201e5641f4b1" + }, + { + "id": 2793025848102981, + "content_hash": "da1edce4539bd68da501ec659d2a25d57ea7fa104a76e86b11614d8acb6b76c4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1755, + "records_with_pk": 1755, + "missing": 27, + "missing_samples": [ + { + "id": 3073751214392709 + }, + { + "id": 3073750324758149 + }, + { + "id": 3073734143411781 + }, + { + "id": 3072792115840581 + }, + { + "id": 3072786617042565 + }, + { + "id": 3072782525613445 + }, + { + "id": 3072782525564293 + }, + { + "id": 3072782525515141 + }, + { + "id": 3072748096325189 + }, + { + "id": 3072705244628613 + }, + { + "id": 3072705244595845 + }, + { + "id": 3072672977225285 + }, + { + "id": 3072639801509317 + }, + { + "id": 3072526135870853 + }, + { + "id": 3072489930671749 + }, + { + "id": 3072398679262661 + }, + { + "id": 3072332757337477 + }, + { + "id": 3072296789329285 + }, + { + "id": 3072272556541317 + }, + { + "id": 3072162523006597 + }, + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 1, + "missing_samples": [ + { + "id": 3073781669250565 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 949, + "total_mismatch": 46240, + "total_errors": 0, + "generated_at": "2026-01-30T20:52:22.679034+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-30T20:52:45.018561+08:00" + } + ], + "api_to_ods": { + "total_missing": 949, + "total_mismatch": 46240, + "total_errors": 0 + }, + "total_missing": 949, + "total_mismatch": 46240, + "total_errors": 0, + "generated_at": "2026-01-30T20:52:45.018584+08:00", + "backfill_result": { + "total_missing": 1151, + "total_mismatch": 46409, + "backfilled": 0, + "errors": 20, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 224, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 113, + "mismatch": 21414, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 157, + "mismatch": 8966, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 16, + "mismatch": 4278, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_PAYMENT", + "missing": 179, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_REFUND", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 120, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER", + "missing": 0, + "mismatch": 554, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER_CARD", + "missing": 0, + "mismatch": 945, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "missing": 32, + "mismatch": 2320, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "missing": 2, + "mismatch": 412, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "missing": 0, + "mismatch": 18, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 113, + "mismatch": 6960, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 1, + "mismatch": 116, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 387, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 66, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 1, + "mismatch": 133, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "missing": 27, + "mismatch": 0, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + }, + { + "task_code": "ODS_TENANT_GOODS", + "missing": 1, + "mismatch": 3, + "backfilled": 0, + "error": "错误: 没有匹配ON CONFLICT说明的唯一或者排除约束\n" + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "0d734cb63ad3ac7ad099cc458223108ed7920d7d11542c24f1a4790b2a58d8b3" + }, + { + "id": 2964640248745157, + "content_hash": "93b320e8969aae9cad71101424907535d4ddb6f1255617e5ccb9b2cf27fbb50e" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "80711a362a8b4ad6069a9dd746b2dd54b4d68c6a360ab02b79ff02a3c6296400" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "6f374a05289b9d8c215daaee1369f93ccec5badcd506df23cede0b76676fa279" + }, + { + "id": 2793530479530053, + "content_hash": "6460459be11d7c8da5277a8ff508b19fd5e6bc8268ba9957213804136d906c6b" + }, + { + "id": 2793486361710725, + "content_hash": "f60aae0fe872b9a613e87390df2cf72cc8713c501c0d7f02b230baf142985b9b" + }, + { + "id": 2793493699088517, + "content_hash": "174f9986afb4cc51fa2c988ba70b30024f015df39bbe1f41a2193f2ca275b9d2" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "0d734cb63ad3ac7ad099cc458223108ed7920d7d11542c24f1a4790b2a58d8b3" + }, + { + "id": 2964640248745157, + "content_hash": "93b320e8969aae9cad71101424907535d4ddb6f1255617e5ccb9b2cf27fbb50e" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "80711a362a8b4ad6069a9dd746b2dd54b4d68c6a360ab02b79ff02a3c6296400" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 103, + "missing_samples": [ + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + }, + { + "id": 3072533861139909 + }, + { + "id": 3072533176878469 + }, + { + "id": 3072525887735237 + }, + { + "id": 3072517966825093 + }, + { + "id": 3072517187388869 + }, + { + "id": 3072509575873925 + }, + { + "id": 3072498721129861 + }, + { + "id": 3072489848555077 + }, + { + "id": 3072485641700805 + }, + { + "id": 3072483044230790 + }, + { + "id": 3072471418046021 + }, + { + "id": 3072465060513157 + }, + { + "id": 3072450650965381 + }, + { + "id": 3072450265892293 + }, + { + "id": 3072449766835781 + }, + { + "id": 3072432396338821 + }, + { + "id": 3072428241077701 + }, + { + "id": 3072425811560005 + }, + { + "id": 3072419508127365 + }, + { + "id": 3072398647444933 + }, + { + "id": 3072356633511557 + }, + { + "id": 3072347174323845 + }, + { + "id": 3072347127055813 + }, + { + "id": 3072347075724933 + }, + { + "id": 3072344928159109 + }, + { + "id": 3072332612814213 + }, + { + "id": 3072331990795653 + }, + { + "id": 3072318637344133 + }, + { + "id": 3072298068411845 + }, + { + "id": 3072296746108549 + }, + { + "id": 3072294319703685 + }, + { + "id": 3072287723308613 + }, + { + "id": 3072287573165445 + }, + { + "id": 3072281234359941 + }, + { + "id": 3072275533727109 + } + ], + "mismatch": 21414, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10025, + "records_with_pk": 10025, + "missing": 162, + "missing_samples": [ + { + "id": 3073851453802053 + }, + { + "id": 3073849681069701 + }, + { + "id": 3073849387681221 + }, + { + "id": 3073845066941893 + }, + { + "id": 3073844860880517 + }, + { + "id": 3073841866704517 + }, + { + "id": 3073840475096517 + }, + { + "id": 3073835265984069 + }, + { + "id": 3073829506926149 + }, + { + "id": 3073818600392325 + }, + { + "id": 3073817370248773 + }, + { + "id": 3073814678947205 + }, + { + "id": 3073809412032069 + }, + { + "id": 3073797232330373 + }, + { + "id": 3073797232313989 + }, + { + "id": 3073786718996037 + }, + { + "id": 3073771770414725 + }, + { + "id": 3073763304326725 + }, + { + "id": 3073751213786501 + }, + { + "id": 3073750324053637 + }, + { + "id": 3073743226815941 + }, + { + "id": 3073741228852869 + }, + { + "id": 3073735537984901 + }, + { + "id": 3073734857180741 + }, + { + "id": 3073734857147973 + }, + { + "id": 3073734142625349 + }, + { + "id": 3073705558132293 + }, + { + "id": 3073704045954501 + }, + { + "id": 3073702633473669 + }, + { + "id": 3073697293796933 + }, + { + "id": 3073690257065349 + }, + { + "id": 3073683966281349 + }, + { + "id": 3073683742803397 + }, + { + "id": 3073681145923013 + }, + { + "id": 3073658609059269 + }, + { + "id": 3073653510473093 + }, + { + "id": 3073652727973509 + }, + { + "id": 3073631146264005 + }, + { + "id": 3073581977830981 + }, + { + "id": 3073574924469637 + }, + { + "id": 3073574873941637 + }, + { + "id": 3073545156888005 + }, + { + "id": 3073520159950469 + }, + { + "id": 3073430045984389 + }, + { + "id": 3073387406525893 + }, + { + "id": 3072792115250757 + }, + { + "id": 3072786616141445 + }, + { + "id": 3072782519453061 + }, + { + "id": 3072782519436677 + }, + { + "id": 3072782519485829 + } + ], + "mismatch": 8966, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 15, + "missing_samples": [ + { + "id": 3071188925302597 + }, + { + "id": 3072498777589125 + }, + { + "id": 3072489929852549 + }, + { + "id": 3072432452519365 + }, + { + "id": 3072432452044229 + }, + { + "id": 3072332756567429 + }, + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + } + ], + "mismatch": 4278, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11837, + "records_with_pk": 11837, + "missing": 185, + "missing_samples": [ + { + "id": 3073851448575557 + }, + { + "id": 3073849678825093 + }, + { + "id": 3073849385174469 + }, + { + "id": 3073846749038213 + }, + { + "id": 3073845064500677 + }, + { + "id": 3073844858488453 + }, + { + "id": 3073841864181381 + }, + { + "id": 3073840472376773 + }, + { + "id": 3073835260626501 + }, + { + "id": 3073829504550469 + }, + { + "id": 3073828344890821 + }, + { + "id": 3073818598278789 + }, + { + "id": 3073817368315461 + }, + { + "id": 3073814676129157 + }, + { + "id": 3073809409787461 + }, + { + "id": 3073797226661510 + }, + { + "id": 3073786716685893 + }, + { + "id": 3073771767416453 + }, + { + "id": 3073763302196805 + }, + { + "id": 3073751210755461 + }, + { + "id": 3073750321104517 + }, + { + "id": 3073748715652677 + }, + { + "id": 3073743224473029 + }, + { + "id": 3073741226559109 + }, + { + "id": 3073735535756677 + }, + { + "id": 3073734853183045 + }, + { + "id": 3073734140249669 + }, + { + "id": 3073705555478085 + }, + { + "id": 3073704043644357 + }, + { + "id": 3073702630262405 + }, + { + "id": 3073697291503173 + }, + { + "id": 3073690254771589 + }, + { + "id": 3073683963922053 + }, + { + "id": 3073683740296645 + }, + { + "id": 3073681143645637 + }, + { + "id": 3073670469993925 + }, + { + "id": 3073658606454213 + }, + { + "id": 3073653508244869 + }, + { + "id": 3073652725712517 + }, + { + "id": 3073646756890053 + }, + { + "id": 3073631143855557 + }, + { + "id": 3073581975242309 + }, + { + "id": 3073574922012037 + }, + { + "id": 3073574871778949 + }, + { + "id": 3073545152611781 + }, + { + "id": 3073520157623941 + }, + { + "id": 3073491229132421 + }, + { + "id": 3073430043952773 + }, + { + "id": 3073387403986373 + }, + { + "id": 3073307387102789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 1, + "missing_samples": [ + { + "id": 3072740947101125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17259, + "records_with_pk": 17259, + "missing": 121, + "missing_samples": [ + { + "id": 3073845685585477 + }, + { + "id": 3073841507566981 + }, + { + "id": 3073829133239685 + }, + { + "id": 3073824938575301 + }, + { + "id": 3073822112564613 + }, + { + "id": 3073820270773893 + }, + { + "id": 3073814908470725 + }, + { + "id": 3073802735388293 + }, + { + "id": 3073797914281541 + }, + { + "id": 3073794447935045 + }, + { + "id": 3073792231835013 + }, + { + "id": 3073779752093061 + }, + { + "id": 3073778630346181 + }, + { + "id": 3073758002448005 + }, + { + "id": 3073755283375493 + }, + { + "id": 3073749492483653 + }, + { + "id": 3073740424496581 + }, + { + "id": 3073733296129669 + }, + { + "id": 3073728923682373 + }, + { + "id": 3073728567314053 + }, + { + "id": 3073726889772421 + }, + { + "id": 3073726744168005 + }, + { + "id": 3073717513946693 + }, + { + "id": 3073702552864197 + }, + { + "id": 3073700711302725 + }, + { + "id": 3073684098107013 + }, + { + "id": 3073676096505285 + }, + { + "id": 3073645110707653 + }, + { + "id": 3073626155271557 + }, + { + "id": 3073624383391109 + }, + { + "id": 3073610862134725 + }, + { + "id": 3073598733944389 + }, + { + "id": 3073592919065989 + }, + { + "id": 3073590209070661 + }, + { + "id": 3073585935205765 + }, + { + "id": 3073585830086021 + }, + { + "id": 3073580981749381 + }, + { + "id": 3073557996340805 + }, + { + "id": 3073545710093893 + }, + { + "id": 3073526036825541 + }, + { + "id": 3073525904164421 + }, + { + "id": 3073485143344709 + }, + { + "id": 3073474164049349 + }, + { + "id": 3073454669661573 + }, + { + "id": 3073452216485445 + }, + { + "id": 3073435172488645 + }, + { + "id": 3073434994754949 + }, + { + "id": 3073400834246085 + }, + { + "id": 3073392316188037 + }, + { + "id": 3073370594461253 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "6cf1f700c54da6d9f7f749cd889c5030aee73f1b74f0325e0880aaf946ba8b73" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "decc49b3288553100a503cce049acb8a5873c55b931030f92ee78b2de5fef54c" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "929d8f631b7992d2a7ceb1573c5bc2a323cadf083ebcd52e6135e9ebc99d14c0" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "1798a4485ee2e42c18ceda5f81821dfd6dfc7373f9e24cecb4882dfe282a6680" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "0dddb75a7690ff8302288a38011585b2c07ac49ad829bda313de7da1832c2534" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2477, + "records_with_pk": 2477, + "missing": 32, + "missing_samples": [ + { + "id": 3073751211328901 + }, + { + "id": 3073750321677957 + }, + { + "id": 3072782513456517 + }, + { + "id": 3072782513243525 + }, + { + "id": 3072757527416517 + }, + { + "id": 3072754582865349 + }, + { + "id": 3072754359502277 + }, + { + "id": 3072743656476357 + }, + { + "id": 3072741154964933 + }, + { + "id": 3072740945233349 + }, + { + "id": 3072740723557829 + }, + { + "id": 3072705238435461 + }, + { + "id": 3072705238238853 + }, + { + "id": 3072672972064325 + }, + { + "id": 3072639798724037 + }, + { + "id": 3072523081485957 + }, + { + "id": 3072498775344517 + }, + { + "id": 3072498363795013 + }, + { + "id": 3072489926887045 + }, + { + "id": 3072432448685509 + }, + { + "id": 3072296785839493 + }, + { + "id": 3072106133079622 + }, + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2320, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 2, + "missing_samples": [ + { + "id": 3072498360337989 + }, + { + "id": 3071351863953413 + } + ], + "mismatch": 412, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8201, + "records_with_pk": 8201, + "missing": 117, + "missing_samples": [ + { + "id": 3073851454441029 + }, + { + "id": 3073849681675909 + }, + { + "id": 3073849388418501 + }, + { + "id": 3073849388418502 + }, + { + "id": 3073845067662789 + }, + { + "id": 3073844861453957 + }, + { + "id": 3073841867720325 + }, + { + "id": 3073841867703941 + }, + { + "id": 3073840475882949 + }, + { + "id": 3073829507597893 + }, + { + "id": 3073818600916613 + }, + { + "id": 3073817370838597 + }, + { + "id": 3073814679635333 + }, + { + "id": 3073809412621893 + }, + { + "id": 3073786719602245 + }, + { + "id": 3073771771250309 + }, + { + "id": 3073763304883781 + }, + { + "id": 3073743227422149 + }, + { + "id": 3073735538591109 + }, + { + "id": 3073705558836805 + }, + { + "id": 3073705558836806 + }, + { + "id": 3073704046560709 + }, + { + "id": 3073704046560710 + }, + { + "id": 3073683967018629 + }, + { + "id": 3073683743524293 + }, + { + "id": 3073681146512837 + }, + { + "id": 3073681146512838 + }, + { + "id": 3073681146512839 + }, + { + "id": 3073653511226757 + }, + { + "id": 3073652728628869 + }, + { + "id": 3073631146935749 + }, + { + "id": 3073581978453573 + }, + { + "id": 3073574925124997 + }, + { + "id": 3073574874613381 + }, + { + "id": 3073574874613382 + }, + { + "id": 3073545157428677 + }, + { + "id": 3073520160573061 + }, + { + "id": 3073520160573062 + }, + { + "id": 3073430046508677 + }, + { + "id": 3073387407082949 + }, + { + "id": 3072696455841413 + }, + { + "id": 3072673043564165 + }, + { + "id": 3072673043564166 + }, + { + "id": 3072672522389125 + }, + { + "id": 3072672522405509 + }, + { + "id": 3072609884046725 + }, + { + "id": 3072608048367238 + }, + { + "id": 3072585214576005 + }, + { + "id": 3072583142311301 + }, + { + "id": 3072533207221893 + } + ], + "mismatch": 6960, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "sitegoodsid": 3073782716778501 + } + ], + "mismatch": 116, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "a9913b113eaf64147f8ac13b00bfbc2f1274c6a0a3e5ad5446ad56c647c74931" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "4264c035192dcd99094aa115632d04cca3e851031cedf8771bd569fd338d0801" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "2890bf429dd18c412b5a3d619d4a15840c915e6bf9b2347b3531f9f6aaf3476a" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "f9bf5b63ee886bf11c672a9bcb0a3f9f81e5b0fd8c8909bb0ebc4259dceeaafc" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "4f2a0b6fb787afd25d2800712efd04212b851466c1e7488e4a4f98ab139d0396" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "ad05ab7963bbddc6a2e1eff4c0d68c4d85542ade126d062ffb9671e4f81eda2f" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "30f68ad5baec22309f38a0d146711a7d1733f1f3c408dee1221ef55115d00e18" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "ca117cf4a57c3a4a4666f5709a629cc85a06335f8c5ac7abc176b5552a8b404a" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2804514498563141, + "content_hash": "e1dbc327b8c014787f1cb144c721f60a5840cd5ff27d46b99df53f8c62bf5d70" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "f1966917a48f6300e33d064067023d88dce7f32a40d78793b87c5d5a95dd945f" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "aa6139ae2b4f8e95b20f86570921926b8ecbfc36cb12c0a5b427aca58e760cc8" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "975451ffa4f62a9f0f1d23dc418cc0ac804d0eb93b9c821d31c5ab0e6528c115" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "3e517fbb2c48ba27f802bda7e48457117a6fb952c29a574c45c99854c8370d5a" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "fefbe7e3f520049437bafaf69d4543bd633618d5b9b3408302473cb9ef01beb0" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "98ed4ad513c3bada92c1e73c8d555611df623a235daf5b2abb4f304cc2dca00e" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "9b20a2b6ff7aa28ee4397a97603ba55cb584abbba22f76ef56d3a1d840475394" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "654c73b7716f3f2e3f68c019b9a0410d3c33621f0736d983f02e9872b6860496" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "84a4ece9bb1f866caab801177674a93ec3f4847381e7a57c79c922c328687dec" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "4da3fca81315491bd59867e6c46fe5e5e5d617c409d1fe609d1d81c2df156ad5" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "05406c76cb29dcf4ed283ae26d87a9265a644ad47033e97518ad6125aaa2c312" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "40e48b1aab5015608c96ecdce9dcab55941e2ce214cdda589e04ea99557283f5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 208, + "missing_samples": [ + { + "sitegoodsstockid": 3071187890865989 + }, + { + "sitegoodsstockid": 3071182788102021 + }, + { + "sitegoodsstockid": 3071182787594117 + }, + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + }, + { + "sitegoodsstockid": 3072549650433605 + }, + { + "sitegoodsstockid": 3072549649335877 + }, + { + "sitegoodsstockid": 3072549650974277 + }, + { + "sitegoodsstockid": 3072549649876549 + }, + { + "sitegoodsstockid": 3072549651514949 + }, + { + "sitegoodsstockid": 3072546025702853 + }, + { + "sitegoodsstockid": 3072545888241093 + }, + { + "sitegoodsstockid": 3072544489932357 + }, + { + "sitegoodsstockid": 3072544190055813 + }, + { + "sitegoodsstockid": 3072543251072645 + }, + { + "sitegoodsstockid": 3072535484794501 + }, + { + "sitegoodsstockid": 3072533915993733 + }, + { + "sitegoodsstockid": 3072513744684613 + }, + { + "sitegoodsstockid": 3072508727346757 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "5b20d585a89b5d013ce03187541da6e52efc684108490bae55ec2e30a9815b24" + }, + { + "id": 2792521437958213, + "content_hash": "70c4e76ffb83520d0c26a95eed20b6590413e64089bec481e94015bc139f30cf" + }, + { + "id": 2793001695301765, + "content_hash": "5de90ea30f9cb89061c4729b0bf1fdfe2f35e62052f5c0399b35a55988e25ea6" + }, + { + "id": 2793001904918661, + "content_hash": "19f0c1b7d923be9d4713b637601769fb34c861a50b6631aab1506fa5e510313a" + }, + { + "id": 2793002509209733, + "content_hash": "8f317e6e29ea0819eec9ebb4e68b506ed6076d2edb6cf0045289bcd30ff8a6bf" + }, + { + "id": 2793002673295493, + "content_hash": "1901c6fe7ce62af1db9cb4196256472f31448281a8b7eb30cc0faf677e976b40" + }, + { + "id": 2793002808987781, + "content_hash": "6ca2c6edaf0ad0f6fd2307dbd069805f59368ca46ecff4f1b7b3f2935756c201" + }, + { + "id": 2793002896494725, + "content_hash": "1445a0a120e60a9879d8547f1309fb043caf35064c3e8ded8430ad82c941eeed" + }, + { + "id": 2793002980429893, + "content_hash": "50d428a141c2e54634fe486654c633cd81a7477c86073ab988639262e991913e" + }, + { + "id": 2793003066429509, + "content_hash": "fa13a31b264f19ea23f3041f3a98007f513afd8647c35cc3fb1370c8b189cc30" + }, + { + "id": 2793003159474245, + "content_hash": "cc08debd1c81e5b710970455a43802fb2be0dad1e3693bbba74cce700eae0466" + }, + { + "id": 2793003243294789, + "content_hash": "aec7e3afda2979996015be5c7d612b07233056e746efdcf421c454ebb694d7f0" + }, + { + "id": 2793003323740229, + "content_hash": "cfddd727ddc91e0739d39bf47d61438075398564ec412bc9e0edaaa1a3b1b827" + }, + { + "id": 2793003420504133, + "content_hash": "ac38b59da2751f9e769fefbd6d0a52beca2518a563690463991596336c3d7d4e" + }, + { + "id": 2793003506815045, + "content_hash": "353b42110c196285973845ecec83177eff3b683b64cb80d5b9bbed6ad4feb3bc" + }, + { + "id": 2793003618340933, + "content_hash": "13388f89af216142386c81365191ee3ef3e9b5bf0eb0fbcffc035e0d296a35f0" + }, + { + "id": 2793003705192517, + "content_hash": "91daf1a85dc18fbabca50afbf704386a392f3ade316cef3f704205839aef51ea" + }, + { + "id": 2793003806953541, + "content_hash": "245e08f11683746966e9af4cff9f5264ff2712342df78dff9c4624b5287f8243" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ada062bda1e6bad24ccd29a533f00d10c467a84e5a760c7ce69f9b93e2f09644" + }, + { + "id": 2793012902121605, + "content_hash": "4dcd6679a3b533cfdc75d2ffb1617c6573e2a8474817ca15bea31e73edf04258" + }, + { + "id": 2793012902154373, + "content_hash": "277938a622e6019c1c47699504f81dae3c38fbee4e12c8f846e6f56a18678dbe" + }, + { + "id": 2793012902203525, + "content_hash": "70a0efb5d0b12d8e52fec3b125669a5a72f036f437116927b13116c3244cf39a" + }, + { + "id": 2793012902236293, + "content_hash": "31bd7bc7c1e464becfd5c755e9309f70c3443ddf7d04a27b25d3c32d0f4e11d7" + }, + { + "id": 2793012902285445, + "content_hash": "ee43c24e9a5a3b14773baa71c734875cc9d415df5a9a67d1304104376ac93c82" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "faf83ef91c25c6362f1db0004f4b206ff4d3b92bc44a97620eab6c7391b50174" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "f5059f01b09a1bc0d4343409c08ebd93324ef4a2988ecc19a1edf39a500c10ee" + }, + { + "id": 2793017278451845, + "content_hash": "ac6908a86b834961924076134891d3e21b931d7318603ebd9c199dbf64e490fc" + }, + { + "id": 2793017278484613, + "content_hash": "868a7f5fd72b0c0574b23dbfaaf2cd6f9609dca9b807c5cf03fe3273e370db3b" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "44bc9f567f483040b1364ab85081b03bf6c70a81f7a9191eb9c4620165ceafbe" + }, + { + "id": 2793018776604805, + "content_hash": "e28469ae6e8ae489301a67c45de99bb1c96652656ff6ca3a882850ed9506d493" + }, + { + "id": 2793018776653957, + "content_hash": "b5ccc0da91d465f5e2cc1dc5e8fe87edca90117e2eafcf9a309ff09b21e87f9c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "ff3fad45e8528fced7591221b358dd17cb450889a2ae517276a7ac947e2e897a" + }, + { + "id": 2793020259897413, + "content_hash": "d63d30676d7f2c3d0e548783da9263f142f30ee199fcd36c161ef73a436e3629" + }, + { + "id": 2793020259946565, + "content_hash": "6e5b451656b2e3fd593c307996ade90e58391ff0b2987d39f6c435adf6d6e001" + }, + { + "id": 2793020259995717, + "content_hash": "f791646abcc187fa2e477d746fdf5e4a0ebcd9cbd97a8de4a969bd4e3034ee58" + }, + { + "id": 2793020260044869, + "content_hash": "1b29ae611c2e1b7e827ff235a1341461d89bccd72a94ea7aff3a410aff33889b" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "868f4264d5787daa1c2b1cf3694272a4c28d25fff92a4bd0803038c9ec1bf18a" + }, + { + "id": 2793023960551493, + "content_hash": "e942fde98eff603bbd4bfe849cdd5b177620fdd451995cf24c32333ed6f44d6f" + }, + { + "id": 2793023960600645, + "content_hash": "28c042b687e714bd012305115dffa2b257c96f522001d127d9b0356cae3c6100" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "id": 3073782716778501 + } + ], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "fb6a14e3704012d4d666a759506752a60da7a0e8a73cc2c8ee7a0b955cf361f9" + }, + { + "id": 2793025849102405, + "content_hash": "643851fb977fe111678637deb6b8a19a57aa0d6b4aa07d8564ec89d98184b9ac" + }, + { + "id": 2793025851560005, + "content_hash": "4902a5845dfdb09978812f4caf46af27d431c937df2837cd3b127d2bb03f5df6" + }, + { + "id": 2793025845825605, + "content_hash": "781e7b15e4410be5e2a4f836a12eabcb6abcd7c7ed4c2434b36699076407190d" + }, + { + "id": 2793025849593925, + "content_hash": "ec216cfac8b9550e0e54739a724b749dd8b0b0b208d0a0cdacdd783ef4da53d7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "78412f7f62cbb8ef5e7210d857656633ad73e39c390a7a858959a4055939e2b2" + }, + { + "id": 2794695800934533, + "content_hash": "e5c8c5042fa23167b7bd4da0a4d937cb4d5de6a52c7fe9f666a5d87feea8c8eb" + }, + { + "id": 2794695801409669, + "content_hash": "4563fcea1149b0151d5f758bebb7225df763f0943857871617241726cf050c86" + }, + { + "id": 2794695801589893, + "content_hash": "326070376fbed1314c8d6e988143a763e63795b14b61c483ba33cb7c5e978921" + }, + { + "id": 2794695801753733, + "content_hash": "5454ae9e95807596e640a1b319c4a0252f5ecfea481769b5ff9d9ea264661274" + }, + { + "id": 2794695801917573, + "content_hash": "710eeb95bc3ff85607f085500b0b12b36dd014eac0779a72484b3c57d820a6ff" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "e1961444a2eb82970d92f4569206d3d92c693b835a0a16f13e68ebcae61d37a6" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "24c4d4a63ec90981980fbd593a7117ac088ea858d9b8d558a06fb13ae06d677e" + }, + { + "id": 2878393200266693, + "content_hash": "97387f73dc72810d071f0e197ed210f41fac05526b12da46f082c2f7a737ee2b" + }, + { + "id": 2906983124748485, + "content_hash": "4b6cacf0ed0acf07be37301d91ca189c6fd7f04488f5ad9df14ef3df4c1f9c5f" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "eb091e5f20cb90d597e65185bb320e8b0af5232bcb042b5298421b6f170d3d8b" + }, + { + "id": 2793025860145221, + "content_hash": "29b411595b75b729405925b99a5a617ee16d48afe10deb0f97a3e56e3ac018e0" + }, + { + "id": 2793025860636741, + "content_hash": "3056c631707f0bd0cfedb0a9c1ef51b2df43e924063b177df1ff6248d7c688a7" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "ffa97a56bb1c8168558d2669df2cf335a6e862d6f870728c95097488aefcd729" + }, + { + "id": 2793025861505093, + "content_hash": "314673b3d453f3cab58bd2bdd0a38f80cf25b924e95c9778064cf9dec685193d" + }, + { + "id": 2793025861685317, + "content_hash": "50feb875844c3befa2f145b3c0d2977efb25d8b7224ef2dea9dca2d9076afdd3" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "3405caae57ff0edf233856a751753ebdd3134613b2e63baadcc97067fed34537" + }, + { + "id": 2793025862438981, + "content_hash": "cb3b5baccea0a0e2d36199b7a2dc3645a2a0b8231db22b73286b4eb1f4b69878" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "bb89b4dd3e1557d5ccd5c8dad42201f4399369ccb1277476ac1933ea34765e07" + }, + { + "id": 2793025863127109, + "content_hash": "0754d6ec59da19288e2666f1c4f820af8a8a79a6c930eb3430b50ba9d7339900" + }, + { + "id": 2793025863290949, + "content_hash": "a88508f2f5ab8e27e9ad8c27ab0b5989793f03065411b6fd672f95bfc5097417" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "1407bbea6e906ea0a59e28f6256d539550c76b20f388dd2bb5121824ad74ab66" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "7cf1f9ec07b70ebd232b9ae03c1d120ba513e4875a23bb5d54dcfae1cdfdf7e5" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "a5d8c911a343ff06a4aec09177e70d0c8e95bca99a3dbb60c3698ce8c642ba70" + }, + { + "id": 2793025846464581, + "content_hash": "f6af93a7072201dd2ffce05971fcd2dc0677732cb86370aa1e22ce904091a36c" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "4744c615cdde3e37c96cf9c0fe7b7db04654f5c50e42f86e26dc201e5641f4b1" + }, + { + "id": 2793025848102981, + "content_hash": "da1edce4539bd68da501ec659d2a25d57ea7fa104a76e86b11614d8acb6b76c4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1755, + "records_with_pk": 1755, + "missing": 27, + "missing_samples": [ + { + "id": 3073751214392709 + }, + { + "id": 3073750324758149 + }, + { + "id": 3073734143411781 + }, + { + "id": 3072792115840581 + }, + { + "id": 3072786617042565 + }, + { + "id": 3072782525613445 + }, + { + "id": 3072782525564293 + }, + { + "id": 3072782525515141 + }, + { + "id": 3072748096325189 + }, + { + "id": 3072705244628613 + }, + { + "id": 3072705244595845 + }, + { + "id": 3072672977225285 + }, + { + "id": 3072639801509317 + }, + { + "id": 3072526135870853 + }, + { + "id": 3072489930671749 + }, + { + "id": 3072398679262661 + }, + { + "id": 3072332757337477 + }, + { + "id": 3072296789329285 + }, + { + "id": 3072272556541317 + }, + { + "id": 3072162523006597 + }, + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 1, + "missing_samples": [ + { + "id": 3073781669250565 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 977, + "total_mismatch": 46241, + "total_errors": 0, + "generated_at": "2026-01-30T21:14:20.168913+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-30T21:14:44.819155+08:00" + } + ], + "api_to_ods": { + "total_missing": 977, + "total_mismatch": 46241, + "total_errors": 0 + }, + "total_missing": 977, + "total_mismatch": 46241, + "total_errors": 0, + "generated_at": "2026-01-30T21:14:44.819180+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260130_215332.json b/etl_billiards/reports/data_integrity_window_20260130_215332.json new file mode 100644 index 0000000..c19ebf3 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260130_215332.json @@ -0,0 +1,9450 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "21f245fb767e5c85926bfd1cb720be1853ced5e0267d6b94591367e65bf1a21f" + }, + { + "id": 2964640248745157, + "content_hash": "699e4149386459a0eb4d60d983773450a693a07b3d18aee6740096ba920853f5" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "4f39fe83f4937179da97a12ca6584e13a3ddcb5074d87894125cc3f9010f7ac1" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "6f374a05289b9d8c215daaee1369f93ccec5badcd506df23cede0b76676fa279" + }, + { + "id": 2793530479530053, + "content_hash": "6460459be11d7c8da5277a8ff508b19fd5e6bc8268ba9957213804136d906c6b" + }, + { + "id": 2793486361710725, + "content_hash": "245ec90366abf6c7afaad9b5b302aa206a98e7b3c4b428db6b2bda3cb73a754a" + }, + { + "id": 2793493699088517, + "content_hash": "174f9986afb4cc51fa2c988ba70b30024f015df39bbe1f41a2193f2ca275b9d2" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "21f245fb767e5c85926bfd1cb720be1853ced5e0267d6b94591367e65bf1a21f" + }, + { + "id": 2964640248745157, + "content_hash": "699e4149386459a0eb4d60d983773450a693a07b3d18aee6740096ba920853f5" + }, + { + "id": 2920786464294661, + "content_hash": "e02be5e079e4c1a3a839e5cf04f7f36f60cf99cfa6994bb1ebd4d325ff9adce2" + }, + { + "id": 2861304461364293, + "content_hash": "5b0ba1730cf1fe1d407740705698aeaea887f8f7e46d1d9bed583c34c9a1723f" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "4f39fe83f4937179da97a12ca6584e13a3ddcb5074d87894125cc3f9010f7ac1" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 103, + "missing_samples": [ + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + }, + { + "id": 3072533861139909 + }, + { + "id": 3072533176878469 + }, + { + "id": 3072525887735237 + }, + { + "id": 3072517966825093 + }, + { + "id": 3072517187388869 + }, + { + "id": 3072509575873925 + }, + { + "id": 3072498721129861 + }, + { + "id": 3072489848555077 + }, + { + "id": 3072485641700805 + }, + { + "id": 3072483044230790 + }, + { + "id": 3072471418046021 + }, + { + "id": 3072465060513157 + }, + { + "id": 3072450650965381 + }, + { + "id": 3072450265892293 + }, + { + "id": 3072449766835781 + }, + { + "id": 3072432396338821 + }, + { + "id": 3072428241077701 + }, + { + "id": 3072425811560005 + }, + { + "id": 3072419508127365 + }, + { + "id": 3072398647444933 + }, + { + "id": 3072356633511557 + }, + { + "id": 3072347174323845 + }, + { + "id": 3072347127055813 + }, + { + "id": 3072347075724933 + }, + { + "id": 3072344928159109 + }, + { + "id": 3072332612814213 + }, + { + "id": 3072331990795653 + }, + { + "id": 3072318637344133 + }, + { + "id": 3072298068411845 + }, + { + "id": 3072296746108549 + }, + { + "id": 3072294319703685 + }, + { + "id": 3072287723308613 + }, + { + "id": 3072287573165445 + }, + { + "id": 3072281234359941 + }, + { + "id": 3072275533727109 + } + ], + "mismatch": 21414, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10029, + "records_with_pk": 10029, + "missing": 164, + "missing_samples": [ + { + "id": 3073869495551621 + }, + { + "id": 3073861762188869 + }, + { + "id": 3073851453802053 + }, + { + "id": 3073849681069701 + }, + { + "id": 3073849387681221 + }, + { + "id": 3073845066941893 + }, + { + "id": 3073844860880517 + }, + { + "id": 3073841866704517 + }, + { + "id": 3073840475096517 + }, + { + "id": 3073835265984069 + }, + { + "id": 3073829506926149 + }, + { + "id": 3073818600392325 + }, + { + "id": 3073817370248773 + }, + { + "id": 3073814678947205 + }, + { + "id": 3073809412032069 + }, + { + "id": 3073797232330373 + }, + { + "id": 3073797232313989 + }, + { + "id": 3073786718996037 + }, + { + "id": 3073771770414725 + }, + { + "id": 3073763304326725 + }, + { + "id": 3073751213786501 + }, + { + "id": 3073750324053637 + }, + { + "id": 3073743226815941 + }, + { + "id": 3073741228852869 + }, + { + "id": 3073735537984901 + }, + { + "id": 3073734857180741 + }, + { + "id": 3073734857147973 + }, + { + "id": 3073734142625349 + }, + { + "id": 3073705558132293 + }, + { + "id": 3073704045954501 + }, + { + "id": 3073702633473669 + }, + { + "id": 3073697293796933 + }, + { + "id": 3073690257065349 + }, + { + "id": 3073683966281349 + }, + { + "id": 3073683742803397 + }, + { + "id": 3073681145923013 + }, + { + "id": 3073658609059269 + }, + { + "id": 3073653510473093 + }, + { + "id": 3073652727973509 + }, + { + "id": 3073631146264005 + }, + { + "id": 3073581977830981 + }, + { + "id": 3073574924469637 + }, + { + "id": 3073574873941637 + }, + { + "id": 3073545156888005 + }, + { + "id": 3073520159950469 + }, + { + "id": 3073430045984389 + }, + { + "id": 3073387406525893 + }, + { + "id": 3072792115250757 + }, + { + "id": 3072786616141445 + }, + { + "id": 3072782519453061 + } + ], + "mismatch": 8968, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 15, + "missing_samples": [ + { + "id": 3071188925302597 + }, + { + "id": 3072498777589125 + }, + { + "id": 3072489929852549 + }, + { + "id": 3072432452519365 + }, + { + "id": 3072432452044229 + }, + { + "id": 3072332756567429 + }, + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + } + ], + "mismatch": 4278, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11843, + "records_with_pk": 11843, + "missing": 190, + "missing_samples": [ + { + "id": 3073870392952389 + }, + { + "id": 3073870288963013 + }, + { + "id": 3073869493274245 + }, + { + "id": 3073861759682117 + }, + { + "id": 3073858589230469 + }, + { + "id": 3073851448575557 + }, + { + "id": 3073849678825093 + }, + { + "id": 3073849385174469 + }, + { + "id": 3073846749038213 + }, + { + "id": 3073845064500677 + }, + { + "id": 3073844858488453 + }, + { + "id": 3073841864181381 + }, + { + "id": 3073840472376773 + }, + { + "id": 3073835260626501 + }, + { + "id": 3073829504550469 + }, + { + "id": 3073828344890821 + }, + { + "id": 3073818598278789 + }, + { + "id": 3073817368315461 + }, + { + "id": 3073814676129157 + }, + { + "id": 3073809409787461 + }, + { + "id": 3073797226661510 + }, + { + "id": 3073786716685893 + }, + { + "id": 3073771767416453 + }, + { + "id": 3073763302196805 + }, + { + "id": 3073751210755461 + }, + { + "id": 3073750321104517 + }, + { + "id": 3073748715652677 + }, + { + "id": 3073743224473029 + }, + { + "id": 3073741226559109 + }, + { + "id": 3073735535756677 + }, + { + "id": 3073734853183045 + }, + { + "id": 3073734140249669 + }, + { + "id": 3073705555478085 + }, + { + "id": 3073704043644357 + }, + { + "id": 3073702630262405 + }, + { + "id": 3073697291503173 + }, + { + "id": 3073690254771589 + }, + { + "id": 3073683963922053 + }, + { + "id": 3073683740296645 + }, + { + "id": 3073681143645637 + }, + { + "id": 3073670469993925 + }, + { + "id": 3073658606454213 + }, + { + "id": 3073653508244869 + }, + { + "id": 3073652725712517 + }, + { + "id": 3073646756890053 + }, + { + "id": 3073631143855557 + }, + { + "id": 3073581975242309 + }, + { + "id": 3073574922012037 + }, + { + "id": 3073574871778949 + }, + { + "id": 3073545152611781 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 1, + "missing_samples": [ + { + "id": 3072740947101125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17266, + "records_with_pk": 17266, + "missing": 127, + "missing_samples": [ + { + "id": 3073868834555269 + }, + { + "id": 3073866207184261 + }, + { + "id": 3073866088908165 + }, + { + "id": 3073865270986373 + }, + { + "id": 3073864722154949 + }, + { + "id": 3073860061791877 + }, + { + "id": 3073845685585477 + }, + { + "id": 3073841507566981 + }, + { + "id": 3073829133239685 + }, + { + "id": 3073824938575301 + }, + { + "id": 3073822112564613 + }, + { + "id": 3073820270773893 + }, + { + "id": 3073814908470725 + }, + { + "id": 3073802735388293 + }, + { + "id": 3073797914281541 + }, + { + "id": 3073794447935045 + }, + { + "id": 3073792231835013 + }, + { + "id": 3073779752093061 + }, + { + "id": 3073778630346181 + }, + { + "id": 3073758002448005 + }, + { + "id": 3073755283375493 + }, + { + "id": 3073749492483653 + }, + { + "id": 3073740424496581 + }, + { + "id": 3073733296129669 + }, + { + "id": 3073728923682373 + }, + { + "id": 3073728567314053 + }, + { + "id": 3073726889772421 + }, + { + "id": 3073726744168005 + }, + { + "id": 3073717513946693 + }, + { + "id": 3073702552864197 + }, + { + "id": 3073700711302725 + }, + { + "id": 3073684098107013 + }, + { + "id": 3073676096505285 + }, + { + "id": 3073645110707653 + }, + { + "id": 3073626155271557 + }, + { + "id": 3073624383391109 + }, + { + "id": 3073610862134725 + }, + { + "id": 3073598733944389 + }, + { + "id": 3073592919065989 + }, + { + "id": 3073590209070661 + }, + { + "id": 3073585935205765 + }, + { + "id": 3073585830086021 + }, + { + "id": 3073580981749381 + }, + { + "id": 3073557996340805 + }, + { + "id": 3073545710093893 + }, + { + "id": 3073526036825541 + }, + { + "id": 3073525904164421 + }, + { + "id": 3073485143344709 + }, + { + "id": 3073474164049349 + }, + { + "id": 3073454669661573 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "00ad6da5e4de6415b73689cf0f5b2c4b1089dd33f8fa2e24b5f3b5310570c388" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "decc49b3288553100a503cce049acb8a5873c55b931030f92ee78b2de5fef54c" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "81701b7fd9aa9ff58e7724fac2de2ff6a190ef5e7ec836642717c418c8326d4b" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "1798a4485ee2e42c18ceda5f81821dfd6dfc7373f9e24cecb4882dfe282a6680" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "0dddb75a7690ff8302288a38011585b2c07ac49ad829bda313de7da1832c2534" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2478, + "records_with_pk": 2478, + "missing": 33, + "missing_samples": [ + { + "id": 3073870289585605 + }, + { + "id": 3073751211328901 + }, + { + "id": 3073750321677957 + }, + { + "id": 3072782513456517 + }, + { + "id": 3072782513243525 + }, + { + "id": 3072757527416517 + }, + { + "id": 3072754582865349 + }, + { + "id": 3072754359502277 + }, + { + "id": 3072743656476357 + }, + { + "id": 3072741154964933 + }, + { + "id": 3072740945233349 + }, + { + "id": 3072740723557829 + }, + { + "id": 3072705238435461 + }, + { + "id": 3072705238238853 + }, + { + "id": 3072672972064325 + }, + { + "id": 3072639798724037 + }, + { + "id": 3072523081485957 + }, + { + "id": 3072498775344517 + }, + { + "id": 3072498363795013 + }, + { + "id": 3072489926887045 + }, + { + "id": 3072432448685509 + }, + { + "id": 3072296785839493 + }, + { + "id": 3072106133079622 + }, + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2320, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 2, + "missing_samples": [ + { + "id": 3072498360337989 + }, + { + "id": 3071351863953413 + } + ], + "mismatch": 412, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8203, + "records_with_pk": 8203, + "missing": 119, + "missing_samples": [ + { + "id": 3073870396147269 + }, + { + "id": 3073861762745926 + }, + { + "id": 3073851454441029 + }, + { + "id": 3073849681675909 + }, + { + "id": 3073849388418501 + }, + { + "id": 3073849388418502 + }, + { + "id": 3073845067662789 + }, + { + "id": 3073844861453957 + }, + { + "id": 3073841867720325 + }, + { + "id": 3073841867703941 + }, + { + "id": 3073840475882949 + }, + { + "id": 3073829507597893 + }, + { + "id": 3073818600916613 + }, + { + "id": 3073817370838597 + }, + { + "id": 3073814679635333 + }, + { + "id": 3073809412621893 + }, + { + "id": 3073786719602245 + }, + { + "id": 3073771771250309 + }, + { + "id": 3073763304883781 + }, + { + "id": 3073743227422149 + }, + { + "id": 3073735538591109 + }, + { + "id": 3073705558836805 + }, + { + "id": 3073705558836806 + }, + { + "id": 3073704046560709 + }, + { + "id": 3073704046560710 + }, + { + "id": 3073683967018629 + }, + { + "id": 3073683743524293 + }, + { + "id": 3073681146512837 + }, + { + "id": 3073681146512838 + }, + { + "id": 3073681146512839 + }, + { + "id": 3073653511226757 + }, + { + "id": 3073652728628869 + }, + { + "id": 3073631146935749 + }, + { + "id": 3073581978453573 + }, + { + "id": 3073574925124997 + }, + { + "id": 3073574874613381 + }, + { + "id": 3073574874613382 + }, + { + "id": 3073545157428677 + }, + { + "id": 3073520160573061 + }, + { + "id": 3073520160573062 + }, + { + "id": 3073430046508677 + }, + { + "id": 3073387407082949 + }, + { + "id": 3072696455841413 + }, + { + "id": 3072673043564165 + }, + { + "id": 3072673043564166 + }, + { + "id": 3072672522389125 + }, + { + "id": 3072672522405509 + }, + { + "id": 3072609884046725 + }, + { + "id": 3072608048367238 + }, + { + "id": 3072585214576005 + } + ], + "mismatch": 6960, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "sitegoodsid": 3073782716778501 + } + ], + "mismatch": 116, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "a9913b113eaf64147f8ac13b00bfbc2f1274c6a0a3e5ad5446ad56c647c74931" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "4264c035192dcd99094aa115632d04cca3e851031cedf8771bd569fd338d0801" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "2890bf429dd18c412b5a3d619d4a15840c915e6bf9b2347b3531f9f6aaf3476a" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "f9bf5b63ee886bf11c672a9bcb0a3f9f81e5b0fd8c8909bb0ebc4259dceeaafc" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "4f2a0b6fb787afd25d2800712efd04212b851466c1e7488e4a4f98ab139d0396" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "ad05ab7963bbddc6a2e1eff4c0d68c4d85542ade126d062ffb9671e4f81eda2f" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "30f68ad5baec22309f38a0d146711a7d1733f1f3c408dee1221ef55115d00e18" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "ca117cf4a57c3a4a4666f5709a629cc85a06335f8c5ac7abc176b5552a8b404a" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2804514498563141, + "content_hash": "e1dbc327b8c014787f1cb144c721f60a5840cd5ff27d46b99df53f8c62bf5d70" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "f1966917a48f6300e33d064067023d88dce7f32a40d78793b87c5d5a95dd945f" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "aa6139ae2b4f8e95b20f86570921926b8ecbfc36cb12c0a5b427aca58e760cc8" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "c1ca8adbe8d77aa0f0c1cf7178f14aab39b7de868833d8eada4ebdd9bb787403" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "3e517fbb2c48ba27f802bda7e48457117a6fb952c29a574c45c99854c8370d5a" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "ccd44c7f8ad33b4f10ddb85fe1c59afd4c7fbd27f1503348c9609c323954a115" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "98ed4ad513c3bada92c1e73c8d555611df623a235daf5b2abb4f304cc2dca00e" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "9b20a2b6ff7aa28ee4397a97603ba55cb584abbba22f76ef56d3a1d840475394" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "654c73b7716f3f2e3f68c019b9a0410d3c33621f0736d983f02e9872b6860496" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "84a4ece9bb1f866caab801177674a93ec3f4847381e7a57c79c922c328687dec" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "4da3fca81315491bd59867e6c46fe5e5e5d617c409d1fe609d1d81c2df156ad5" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "05406c76cb29dcf4ed283ae26d87a9265a644ad47033e97518ad6125aaa2c312" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "40e48b1aab5015608c96ecdce9dcab55941e2ce214cdda589e04ea99557283f5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 208, + "missing_samples": [ + { + "sitegoodsstockid": 3071187890865989 + }, + { + "sitegoodsstockid": 3071182788102021 + }, + { + "sitegoodsstockid": 3071182787594117 + }, + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + }, + { + "sitegoodsstockid": 3072549650433605 + }, + { + "sitegoodsstockid": 3072549649335877 + }, + { + "sitegoodsstockid": 3072549650974277 + }, + { + "sitegoodsstockid": 3072549649876549 + }, + { + "sitegoodsstockid": 3072549651514949 + }, + { + "sitegoodsstockid": 3072546025702853 + }, + { + "sitegoodsstockid": 3072545888241093 + }, + { + "sitegoodsstockid": 3072544489932357 + }, + { + "sitegoodsstockid": 3072544190055813 + }, + { + "sitegoodsstockid": 3072543251072645 + }, + { + "sitegoodsstockid": 3072535484794501 + }, + { + "sitegoodsstockid": 3072533915993733 + }, + { + "sitegoodsstockid": 3072513744684613 + }, + { + "sitegoodsstockid": 3072508727346757 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "790c29106a42775f6c020a7940e6778ec08bfd280654c2f70019535bf3ff1d5d" + }, + { + "id": 2792521437958213, + "content_hash": "70c4e76ffb83520d0c26a95eed20b6590413e64089bec481e94015bc139f30cf" + }, + { + "id": 2793001695301765, + "content_hash": "5de90ea30f9cb89061c4729b0bf1fdfe2f35e62052f5c0399b35a55988e25ea6" + }, + { + "id": 2793001904918661, + "content_hash": "19f0c1b7d923be9d4713b637601769fb34c861a50b6631aab1506fa5e510313a" + }, + { + "id": 2793002509209733, + "content_hash": "04e2d669858d065dfb3ae206bc6b9a04fa1cdc5acedb33f76792cabc7b3aaff7" + }, + { + "id": 2793002673295493, + "content_hash": "1901c6fe7ce62af1db9cb4196256472f31448281a8b7eb30cc0faf677e976b40" + }, + { + "id": 2793002808987781, + "content_hash": "6c50ebca36508492f3b4019ed1f42b50997c8a2baaab002a95890dd54b26398d" + }, + { + "id": 2793002896494725, + "content_hash": "1445a0a120e60a9879d8547f1309fb043caf35064c3e8ded8430ad82c941eeed" + }, + { + "id": 2793002980429893, + "content_hash": "50d428a141c2e54634fe486654c633cd81a7477c86073ab988639262e991913e" + }, + { + "id": 2793003066429509, + "content_hash": "fa13a31b264f19ea23f3041f3a98007f513afd8647c35cc3fb1370c8b189cc30" + }, + { + "id": 2793003159474245, + "content_hash": "4aa654be2a9792dc05fa98cea56c9febde2ce54eb8af5aaf0d7de0e7ccf048b9" + }, + { + "id": 2793003243294789, + "content_hash": "aec7e3afda2979996015be5c7d612b07233056e746efdcf421c454ebb694d7f0" + }, + { + "id": 2793003323740229, + "content_hash": "12977b5725ef678ebc6e2610f3a2fb5c75675c1bec0c7d1cb2113357a7432457" + }, + { + "id": 2793003420504133, + "content_hash": "ac38b59da2751f9e769fefbd6d0a52beca2518a563690463991596336c3d7d4e" + }, + { + "id": 2793003506815045, + "content_hash": "f6816bdf7f2a2395995b6760e31eefcd1659837c0ce02567481a29b7f55c97d3" + }, + { + "id": 2793003618340933, + "content_hash": "13388f89af216142386c81365191ee3ef3e9b5bf0eb0fbcffc035e0d296a35f0" + }, + { + "id": 2793003705192517, + "content_hash": "18603d4b9640e52ffbe6741f6323d9d1c66a0f74266f6f4465d6f9861547d491" + }, + { + "id": 2793003806953541, + "content_hash": "245e08f11683746966e9af4cff9f5264ff2712342df78dff9c4624b5287f8243" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ada062bda1e6bad24ccd29a533f00d10c467a84e5a760c7ce69f9b93e2f09644" + }, + { + "id": 2793012902121605, + "content_hash": "4dcd6679a3b533cfdc75d2ffb1617c6573e2a8474817ca15bea31e73edf04258" + }, + { + "id": 2793012902154373, + "content_hash": "277938a622e6019c1c47699504f81dae3c38fbee4e12c8f846e6f56a18678dbe" + }, + { + "id": 2793012902203525, + "content_hash": "70a0efb5d0b12d8e52fec3b125669a5a72f036f437116927b13116c3244cf39a" + }, + { + "id": 2793012902236293, + "content_hash": "31bd7bc7c1e464becfd5c755e9309f70c3443ddf7d04a27b25d3c32d0f4e11d7" + }, + { + "id": 2793012902285445, + "content_hash": "ee43c24e9a5a3b14773baa71c734875cc9d415df5a9a67d1304104376ac93c82" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "8cb23fb5dff196a92eef1b05b38b84578d3e747c333cc4dba241890ca75b9e11" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "f5059f01b09a1bc0d4343409c08ebd93324ef4a2988ecc19a1edf39a500c10ee" + }, + { + "id": 2793017278451845, + "content_hash": "ac6908a86b834961924076134891d3e21b931d7318603ebd9c199dbf64e490fc" + }, + { + "id": 2793017278484613, + "content_hash": "868a7f5fd72b0c0574b23dbfaaf2cd6f9609dca9b807c5cf03fe3273e370db3b" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "44bc9f567f483040b1364ab85081b03bf6c70a81f7a9191eb9c4620165ceafbe" + }, + { + "id": 2793018776604805, + "content_hash": "e28469ae6e8ae489301a67c45de99bb1c96652656ff6ca3a882850ed9506d493" + }, + { + "id": 2793018776653957, + "content_hash": "b5ccc0da91d465f5e2cc1dc5e8fe87edca90117e2eafcf9a309ff09b21e87f9c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "ff3fad45e8528fced7591221b358dd17cb450889a2ae517276a7ac947e2e897a" + }, + { + "id": 2793020259897413, + "content_hash": "d63d30676d7f2c3d0e548783da9263f142f30ee199fcd36c161ef73a436e3629" + }, + { + "id": 2793020259946565, + "content_hash": "6e5b451656b2e3fd593c307996ade90e58391ff0b2987d39f6c435adf6d6e001" + }, + { + "id": 2793020259995717, + "content_hash": "f791646abcc187fa2e477d746fdf5e4a0ebcd9cbd97a8de4a969bd4e3034ee58" + }, + { + "id": 2793020260044869, + "content_hash": "35e6ba752493354b49db3ae20e1f9899be86d356a12156c9269d3ecb905366f9" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "868f4264d5787daa1c2b1cf3694272a4c28d25fff92a4bd0803038c9ec1bf18a" + }, + { + "id": 2793023960551493, + "content_hash": "e942fde98eff603bbd4bfe849cdd5b177620fdd451995cf24c32333ed6f44d6f" + }, + { + "id": 2793023960600645, + "content_hash": "28c042b687e714bd012305115dffa2b257c96f522001d127d9b0356cae3c6100" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "id": 3073782716778501 + } + ], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "fb6a14e3704012d4d666a759506752a60da7a0e8a73cc2c8ee7a0b955cf361f9" + }, + { + "id": 2793025849102405, + "content_hash": "643851fb977fe111678637deb6b8a19a57aa0d6b4aa07d8564ec89d98184b9ac" + }, + { + "id": 2793025851560005, + "content_hash": "4902a5845dfdb09978812f4caf46af27d431c937df2837cd3b127d2bb03f5df6" + }, + { + "id": 2793025845825605, + "content_hash": "781e7b15e4410be5e2a4f836a12eabcb6abcd7c7ed4c2434b36699076407190d" + }, + { + "id": 2793025849593925, + "content_hash": "ec216cfac8b9550e0e54739a724b749dd8b0b0b208d0a0cdacdd783ef4da53d7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "78412f7f62cbb8ef5e7210d857656633ad73e39c390a7a858959a4055939e2b2" + }, + { + "id": 2794695800934533, + "content_hash": "6c1c011031403253eed1eba92efc5dd52ea1720d01b89d7360f04d231015340f" + }, + { + "id": 2794695801409669, + "content_hash": "4563fcea1149b0151d5f758bebb7225df763f0943857871617241726cf050c86" + }, + { + "id": 2794695801589893, + "content_hash": "326070376fbed1314c8d6e988143a763e63795b14b61c483ba33cb7c5e978921" + }, + { + "id": 2794695801753733, + "content_hash": "c5d8bc85cde1f0d4b4e5589d5ff4c1b8ff02a6a20ac4e72e9ee8c60eba473dba" + }, + { + "id": 2794695801917573, + "content_hash": "710eeb95bc3ff85607f085500b0b12b36dd014eac0779a72484b3c57d820a6ff" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "e1961444a2eb82970d92f4569206d3d92c693b835a0a16f13e68ebcae61d37a6" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "24c4d4a63ec90981980fbd593a7117ac088ea858d9b8d558a06fb13ae06d677e" + }, + { + "id": 2878393200266693, + "content_hash": "97387f73dc72810d071f0e197ed210f41fac05526b12da46f082c2f7a737ee2b" + }, + { + "id": 2906983124748485, + "content_hash": "4b6cacf0ed0acf07be37301d91ca189c6fd7f04488f5ad9df14ef3df4c1f9c5f" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "eb091e5f20cb90d597e65185bb320e8b0af5232bcb042b5298421b6f170d3d8b" + }, + { + "id": 2793025860145221, + "content_hash": "29b411595b75b729405925b99a5a617ee16d48afe10deb0f97a3e56e3ac018e0" + }, + { + "id": 2793025860636741, + "content_hash": "3056c631707f0bd0cfedb0a9c1ef51b2df43e924063b177df1ff6248d7c688a7" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "ffa97a56bb1c8168558d2669df2cf335a6e862d6f870728c95097488aefcd729" + }, + { + "id": 2793025861505093, + "content_hash": "314673b3d453f3cab58bd2bdd0a38f80cf25b924e95c9778064cf9dec685193d" + }, + { + "id": 2793025861685317, + "content_hash": "50feb875844c3befa2f145b3c0d2977efb25d8b7224ef2dea9dca2d9076afdd3" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "3405caae57ff0edf233856a751753ebdd3134613b2e63baadcc97067fed34537" + }, + { + "id": 2793025862438981, + "content_hash": "cb3b5baccea0a0e2d36199b7a2dc3645a2a0b8231db22b73286b4eb1f4b69878" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "bb89b4dd3e1557d5ccd5c8dad42201f4399369ccb1277476ac1933ea34765e07" + }, + { + "id": 2793025863127109, + "content_hash": "0754d6ec59da19288e2666f1c4f820af8a8a79a6c930eb3430b50ba9d7339900" + }, + { + "id": 2793025863290949, + "content_hash": "a88508f2f5ab8e27e9ad8c27ab0b5989793f03065411b6fd672f95bfc5097417" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "1407bbea6e906ea0a59e28f6256d539550c76b20f388dd2bb5121824ad74ab66" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "7cf1f9ec07b70ebd232b9ae03c1d120ba513e4875a23bb5d54dcfae1cdfdf7e5" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "a5d8c911a343ff06a4aec09177e70d0c8e95bca99a3dbb60c3698ce8c642ba70" + }, + { + "id": 2793025846464581, + "content_hash": "f6af93a7072201dd2ffce05971fcd2dc0677732cb86370aa1e22ce904091a36c" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "4744c615cdde3e37c96cf9c0fe7b7db04654f5c50e42f86e26dc201e5641f4b1" + }, + { + "id": 2793025848102981, + "content_hash": "da1edce4539bd68da501ec659d2a25d57ea7fa104a76e86b11614d8acb6b76c4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1757, + "records_with_pk": 1757, + "missing": 29, + "missing_samples": [ + { + "id": 3073871312815685 + }, + { + "id": 3073869498222213 + }, + { + "id": 3073751214392709 + }, + { + "id": 3073750324758149 + }, + { + "id": 3073734143411781 + }, + { + "id": 3072792115840581 + }, + { + "id": 3072786617042565 + }, + { + "id": 3072782525613445 + }, + { + "id": 3072782525564293 + }, + { + "id": 3072782525515141 + }, + { + "id": 3072748096325189 + }, + { + "id": 3072705244628613 + }, + { + "id": 3072705244595845 + }, + { + "id": 3072672977225285 + }, + { + "id": 3072639801509317 + }, + { + "id": 3072526135870853 + }, + { + "id": 3072489930671749 + }, + { + "id": 3072398679262661 + }, + { + "id": 3072332757337477 + }, + { + "id": 3072296789329285 + }, + { + "id": 3072272556541317 + }, + { + "id": 3072162523006597 + }, + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 1, + "missing_samples": [ + { + "id": 3073781669250565 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 995, + "total_mismatch": 46243, + "total_errors": 0, + "generated_at": "2026-01-30T21:29:17.702031+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-30T21:29:38.597539+08:00" + } + ], + "api_to_ods": { + "total_missing": 995, + "total_mismatch": 46243, + "total_errors": 0 + }, + "total_missing": 995, + "total_mismatch": 46243, + "total_errors": 0, + "generated_at": "2026-01-30T21:29:38.597567+08:00", + "backfill_result": { + "total_missing": 1196, + "total_mismatch": 46409, + "backfilled": 0, + "errors": 20, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 224, + "backfilled": 0, + "error": "server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n" + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 113, + "mismatch": 21414, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 168, + "mismatch": 8966, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 16, + "mismatch": 4278, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_PAYMENT", + "missing": 193, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_REFUND", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 130, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_MEMBER", + "missing": 0, + "mismatch": 554, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_MEMBER_CARD", + "missing": 0, + "mismatch": 945, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "missing": 33, + "mismatch": 2320, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "missing": 2, + "mismatch": 412, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "missing": 0, + "mismatch": 18, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 120, + "mismatch": 6960, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 1, + "mismatch": 116, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 387, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 66, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 1, + "mismatch": 133, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "missing": 29, + "mismatch": 0, + "backfilled": 0, + "error": "connection already closed" + }, + { + "task_code": "ODS_TENANT_GOODS", + "missing": 1, + "mismatch": 3, + "backfilled": 0, + "error": "connection already closed" + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 56, + "mismatch_samples": [ + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "21f245fb767e5c85926bfd1cb720be1853ced5e0267d6b94591367e65bf1a21f" + }, + { + "id": 2964640248745157, + "content_hash": "699e4149386459a0eb4d60d983773450a693a07b3d18aee6740096ba920853f5" + }, + { + "id": 2920786464294661, + "content_hash": "0c886bc3a0209a7ebc1a4e6ebc9a895373a16c88520d172a00b8f0d0e2c595e6" + }, + { + "id": 2861304461364293, + "content_hash": "e0bc2e79998ddd128de3e700fe335e22f5a87a900fb847dbe9aea142a4901533" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "4f39fe83f4937179da97a12ca6584e13a3ddcb5074d87894125cc3f9010f7ac1" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + }, + { + "id": 2793526116896837, + "content_hash": "cb065d1a3f81254e3a0193eefbc23fd201ff1c0278129fcceba29ea89053d804" + }, + { + "id": 2793532503855173, + "content_hash": "6f374a05289b9d8c215daaee1369f93ccec5badcd506df23cede0b76676fa279" + }, + { + "id": 2793530479530053, + "content_hash": "6460459be11d7c8da5277a8ff508b19fd5e6bc8268ba9957213804136d906c6b" + }, + { + "id": 2793486361710725, + "content_hash": "245ec90366abf6c7afaad9b5b302aa206a98e7b3c4b428db6b2bda3cb73a754a" + }, + { + "id": 2793493699088517, + "content_hash": "174f9986afb4cc51fa2c988ba70b30024f015df39bbe1f41a2193f2ca275b9d2" + }, + { + "id": 2793489356673157, + "content_hash": "55c146fa67b370d15dfa6b0bbbe7a9d53ab6420ea1aa3f736d51f942397fa943" + }, + { + "id": 3067857612671685, + "content_hash": "75222b38f3c8ad426c25f82c9f68745398cb054ecf569f89ffa4d39581c29a61" + }, + { + "id": 3058170108874053, + "content_hash": "b8fd0f9b7d18552dc53652a8f6e17e99e15b68bbed959ac1ea3856802de58046" + }, + { + "id": 3056644876634181, + "content_hash": "5f3a88d27372316fd7aabcd24b7dbd1e2e036f221e9288dcbd831a1d3e6269c0" + }, + { + "id": 3053833422211141, + "content_hash": "609e2429bdc1c781f774f51239bda288045be864a88ee65722212969cb746ec3" + }, + { + "id": 3053834039789701, + "content_hash": "3a006b50c60b4464612e3c67dcd911b46e4ff0800c7a160523f2b0a2d5dc0a0c" + }, + { + "id": 3045477940824517, + "content_hash": "394d50dee7307e68d2d93e5d175cf09d2037f2eba50e7a51d77b5b143108fa18" + }, + { + "id": 3022685829761989, + "content_hash": "de6b588a739cbf71e74c6375fce1a02ba55faff2a78e6ebe1629b299ab8a63f1" + }, + { + "id": 3021267412585413, + "content_hash": "799f04bdf7241098cf7b66af8a9f2cbee8382bd139f2c6d80d6179947b0161f5" + }, + { + "id": 3021271397288901, + "content_hash": "44de457a67ffa6d786fa04cd4803c51d47eb515917ffdbed0ed3492ae91a61fd" + }, + { + "id": 2967523548220229, + "content_hash": "746a1a251bbf387df49d88da7bae3ffbec4142a3a214e482e8bebe480f013e2b" + }, + { + "id": 2964673443302213, + "content_hash": "dc20ac3abfeb7d1ac6c96cff1bc6cb79197c49eaaf2be617d94cf8d870e0a018" + }, + { + "id": 2964641017858885, + "content_hash": "21f245fb767e5c85926bfd1cb720be1853ced5e0267d6b94591367e65bf1a21f" + }, + { + "id": 2964640248745157, + "content_hash": "699e4149386459a0eb4d60d983773450a693a07b3d18aee6740096ba920853f5" + }, + { + "id": 2920786464294661, + "content_hash": "0c886bc3a0209a7ebc1a4e6ebc9a895373a16c88520d172a00b8f0d0e2c595e6" + }, + { + "id": 2861304461364293, + "content_hash": "e0bc2e79998ddd128de3e700fe335e22f5a87a900fb847dbe9aea142a4901533" + }, + { + "id": 2841614135707141, + "content_hash": "b5372ac113f8da1fedef3c79714d9c93687b7b646770ef6d6d96f8b8fb65b026" + }, + { + "id": 2840060593686213, + "content_hash": "4f39fe83f4937179da97a12ca6584e13a3ddcb5074d87894125cc3f9010f7ac1" + }, + { + "id": 2834411250190470, + "content_hash": "9d9ec12acd12f0579a3e365ac85131f031ae0a4ec6baaa6d3052c9b17aef015b" + }, + { + "id": 2808873057863749, + "content_hash": "77921264f40f5d38c67dc0d86b2d78433eb5ac6cd025fc6cbedcfd92151602f1" + }, + { + "id": 2800501459422085, + "content_hash": "c2f2fbe8ad1aaa805faf338b285e287090646c03352e48f30f804f7a5bd6b1ba" + }, + { + "id": 2799135415192645, + "content_hash": "9949227220786ca39d4345cc9e7db3b603bee295971b4fafe554d9a76a7a2291" + }, + { + "id": 2793363001774149, + "content_hash": "9c7443b17c5b8d71950ac57d3b027ec9a1389cfc4ad73c4d1e4883d94d243f39" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 103, + "missing_samples": [ + { + "id": 3071190073952261 + }, + { + "id": 3071188854147077 + }, + { + "id": 3071182315571013 + }, + { + "id": 3071156537067525 + }, + { + "id": 3071130720438085 + }, + { + "id": 3071125534803909 + }, + { + "id": 3071119193737221 + }, + { + "id": 3071115826186053 + }, + { + "id": 3071112269268997 + }, + { + "id": 3071109658953541 + }, + { + "id": 3071106966783877 + }, + { + "id": 3071106233468805 + }, + { + "id": 3071101071574981 + }, + { + "id": 3071097305204677 + }, + { + "id": 3071092108199813 + }, + { + "id": 3072533861139909 + }, + { + "id": 3072533176878469 + }, + { + "id": 3072525887735237 + }, + { + "id": 3072517966825093 + }, + { + "id": 3072517187388869 + }, + { + "id": 3072509575873925 + }, + { + "id": 3072498721129861 + }, + { + "id": 3072489848555077 + }, + { + "id": 3072485641700805 + }, + { + "id": 3072483044230790 + }, + { + "id": 3072471418046021 + }, + { + "id": 3072465060513157 + }, + { + "id": 3072450650965381 + }, + { + "id": 3072450265892293 + }, + { + "id": 3072449766835781 + }, + { + "id": 3072432396338821 + }, + { + "id": 3072428241077701 + }, + { + "id": 3072425811560005 + }, + { + "id": 3072419508127365 + }, + { + "id": 3072398647444933 + }, + { + "id": 3072356633511557 + }, + { + "id": 3072347174323845 + }, + { + "id": 3072347127055813 + }, + { + "id": 3072347075724933 + }, + { + "id": 3072344928159109 + }, + { + "id": 3072332612814213 + }, + { + "id": 3072331990795653 + }, + { + "id": 3072318637344133 + }, + { + "id": 3072298068411845 + }, + { + "id": 3072296746108549 + }, + { + "id": 3072294319703685 + }, + { + "id": 3072287723308613 + }, + { + "id": 3072287573165445 + }, + { + "id": 3072281234359941 + }, + { + "id": 3072275533727109 + } + ], + "mismatch": 21414, + "mismatch_samples": [ + { + "id": 2901323102850437, + "content_hash": "a8e0d89c5e7d947c261011d569e911a30d728f0beeef64fc7c48eadb48e0ef22" + }, + { + "id": 2901322069314949, + "content_hash": "bc86f8a60920288c709536d60c363bfb51f234d840b4324a176050147f215d52" + }, + { + "id": 2901321885076869, + "content_hash": "ec1552e2a39411f2d598a0a8fb8b095f709d3fdc98547cb8ff54d9cd2b2dab14" + }, + { + "id": 2901315593063429, + "content_hash": "254a7205d682f7f841712ebe4ec5156e42f56dc688ff70afb008227695766ac7" + }, + { + "id": 2901308226161605, + "content_hash": "8a588c1dacaa2cfdc0ca5f45fa98b06212e960d039363a631c59e7e5fbd4d72c" + }, + { + "id": 2901305937005573, + "content_hash": "ae0bca30f56cc9528e70cd95d8d016cfb7c40210d88b883f43e659b175078f02" + }, + { + "id": 2901303383575493, + "content_hash": "690af36a96f060474c1b5b2e2284cc148fa889c26ef4776fab93f874939977a8" + }, + { + "id": 2901303061728453, + "content_hash": "952128e69a3a302055f2494e28e83512c209381daf2592d0c4755ac677c574e5" + }, + { + "id": 2901300933856645, + "content_hash": "c825184c047694df0d6fed92070c7a1d504bb5c21b367e252c3d46d7196ddf3e" + }, + { + "id": 2901291385539526, + "content_hash": "ff3349a5b34ba9444933a7c3f8c86f29d37f8dbc87f4d6680e51e6633aa01eef" + }, + { + "id": 2901291336945029, + "content_hash": "6df3eae507841464beaf434606e2dcd7c459173bbd7747219807485bf294b60a" + }, + { + "id": 2901291283991493, + "content_hash": "a349a1b853bb24739dd21ba2b4b75bf2fa85f525331ae6a601701ff935ea51f5" + }, + { + "id": 2901291235609605, + "content_hash": "db293e5eea339c3541a23847db41761981619cbf127f20f2f47e49a79380091b" + }, + { + "id": 2901278531308741, + "content_hash": "d6ee12a10d79fef012c8c54488a74a962aa28467176a3c7b9c913d99d4eaba15" + }, + { + "id": 2901271634185221, + "content_hash": "17678695cb48589167a58ce2ba51ef5ab22faa5426a168b128b4dfe3b3904061" + }, + { + "id": 2901268735822789, + "content_hash": "9a4b92dcbccdb67b4433d511ed9cb5d13f938f82602620ecd2f52fdd7c156264" + }, + { + "id": 2901266824711109, + "content_hash": "f7e06f25ab68d0fa85dfc13350e500160f9046b45b044891b4292968367efe9d" + }, + { + "id": 2901254946327493, + "content_hash": "b6535de2a53e12f9d17fde352557ce81968432ac9a60e14d63edc8aa11b39140" + }, + { + "id": 2901244999535621, + "content_hash": "665567298d52e3a3373e11efefde12f127c81c75e41a50b402ec0b06260f0306" + }, + { + "id": 2901241381325829, + "content_hash": "3ab0e7ca184232d6e80112e93f862efbfd9466716951eba2d1d437b9fe57f4fd" + }, + { + "id": 2901240620912005, + "content_hash": "fb056934af187bc8d754223df86d4554d72c264549e86c760ed3232528ae3c5f" + }, + { + "id": 2901239575006149, + "content_hash": "f18089488a3a268de0d03688b1aa8b9c91c57837a630f18787ecda7cf506fdc3" + }, + { + "id": 2901230586137989, + "content_hash": "b60260b3c385dc45a22ef1c1e7fa4572c32948aefe5a0fa38a6a739854c85a84" + }, + { + "id": 2901230307708293, + "content_hash": "bf8ea32ef689d5077ca555026a1eb8b44e4ee4fd51451d2aff63c0ff927af14a" + }, + { + "id": 2901219649293701, + "content_hash": "92895b82b4f2ee57e8266a8b71fa3823afa2deeb4db8d0ffb73a89bd2f3933b1" + }, + { + "id": 2901218357431301, + "content_hash": "64ab4daea06addaead4c87fccd4235efcd7405610175c6252e22d9866feb5e0b" + }, + { + "id": 2901209327438853, + "content_hash": "e8720f0b173557ab2add8789fd2900a94626c1683c69f2a57927493bdcf62c1d" + }, + { + "id": 2901205851425797, + "content_hash": "4e364234f2c1e6455c49b1a12fde93ef7cb92fc5c5e7868cb87ae4a2079ec3f2" + }, + { + "id": 2901202535959749, + "content_hash": "87ef274692a01e9ad2ea25f5209c757a4f2bfb6ada8377f032da8230bc673d30" + }, + { + "id": 2901198160006149, + "content_hash": "cd0699383043eaa33bd50664b9ddb11989af27f02d746f02fa48ec6cfb82d6d4" + }, + { + "id": 2901198057278661, + "content_hash": "5cc4af602b4bf03f75ab549a03c4dc50daa4174ccb7c27a0daa054c07bf216e6" + }, + { + "id": 2901192737721733, + "content_hash": "665e1a1484b69749290c15c7bc12a79b45dfc597d6f7d5bc3f6ce9b5c9c34ee1" + }, + { + "id": 2901192445070533, + "content_hash": "4c5d1ad1caceb2619079ab15a9d627a238603dac9392774f301331d026563cd9" + }, + { + "id": 2901191761808581, + "content_hash": "55827c5783c24d3136b1e48fca63a6d9a512d6193adc5d35320a72fc68f36238" + }, + { + "id": 2901188660169669, + "content_hash": "91be15c265e56ea18c96d76d85e4a2b7817f4024adea4de84d13e073b5512457" + }, + { + "id": 2901187565866181, + "content_hash": "711c8aa5874b425ddb2ae60db410bd3b25323b7cf8b7f65ff780992109e6526e" + }, + { + "id": 2901184327060485, + "content_hash": "cf916343db9e62ad7790e13b5f03ca4267470de2628c27fa36b16f9dd3505389" + }, + { + "id": 2901184282692997, + "content_hash": "cfcfe926fd530490bd799e69e897cd69fb4f2de608529809445e139517852cde" + }, + { + "id": 2901184238570437, + "content_hash": "b5a8d4974a6b4714377314ba0fa91e0e9a73bbb4881528536ed2b49302c66437" + }, + { + "id": 2901180919204805, + "content_hash": "bfe0c6ab395e8db1f360a5ad35f61a2d992eeac9317daa3373ba149f74d29036" + }, + { + "id": 2901174872116165, + "content_hash": "01cd652d812cf362fc54a25ea141bbcf8815c11fee4ad7f9a30adab25e1ff93b" + }, + { + "id": 2901173369949125, + "content_hash": "afdf2ccc3ef6d3ccb9cbab6512b5227964f325c58143e8331dac36e9c1ae7059" + }, + { + "id": 2901172299599237, + "content_hash": "b64f9d1f65692126b761f6f3852e5eb9fd893b7109864a06855a4f1fdae01186" + }, + { + "id": 2901157305830341, + "content_hash": "903007059e3481e0ac10bb019b6c1db2062ba5bc9ed2f1057233fae9c6ba2ae0" + }, + { + "id": 2901147263093957, + "content_hash": "9314d696c8519360f69f29fcdc87cb69905cbb37fd24d9e42c455dd474be502d" + }, + { + "id": 2901145314249733, + "content_hash": "8ae3bb91c2d49c1a99302ec7a2ab9c8dfaf09afb45e29c783555f4861cf62746" + }, + { + "id": 2901144316300229, + "content_hash": "89c1828de4399751760462a3468bcc0adf2c0ac6e952e9f3a2a2e76811834009" + }, + { + "id": 2901141969194373, + "content_hash": "b0137def2a2769b91bde0b9a38dbcbbe7cbbca48da9c24c56167b15534cfda51" + }, + { + "id": 2901133880773829, + "content_hash": "71f792ea65929d9bbbf0bb9452a099ba9bdea1a5788e040f91dc76f7614e4629" + }, + { + "id": 2901131687677125, + "content_hash": "a1ef9c7bb513067e388506a52c8cfac9844753d33eb409dfdd7025661daa1bf8" + } + ], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10032, + "records_with_pk": 10032, + "missing": 169, + "missing_samples": [ + { + "id": 3073889303545413 + }, + { + "id": 3073875223725637 + }, + { + "id": 3073871312176709 + }, + { + "id": 3073870395524677 + }, + { + "id": 3073870293059013 + }, + { + "id": 3073869495551621 + }, + { + "id": 3073861762188869 + }, + { + "id": 3073851453802053 + }, + { + "id": 3073849681069701 + }, + { + "id": 3073849387681221 + }, + { + "id": 3073845066941893 + }, + { + "id": 3073844860880517 + }, + { + "id": 3073841866704517 + }, + { + "id": 3073840475096517 + }, + { + "id": 3073835265984069 + }, + { + "id": 3073829506926149 + }, + { + "id": 3073818600392325 + }, + { + "id": 3073817370248773 + }, + { + "id": 3073814678947205 + }, + { + "id": 3073809412032069 + }, + { + "id": 3073797232330373 + }, + { + "id": 3073797232313989 + }, + { + "id": 3073786718996037 + }, + { + "id": 3073771770414725 + }, + { + "id": 3073763304326725 + }, + { + "id": 3073751213786501 + }, + { + "id": 3073750324053637 + }, + { + "id": 3073743226815941 + }, + { + "id": 3073741228852869 + }, + { + "id": 3073735537984901 + }, + { + "id": 3073734857180741 + }, + { + "id": 3073734857147973 + }, + { + "id": 3073734142625349 + }, + { + "id": 3073705558132293 + }, + { + "id": 3073704045954501 + }, + { + "id": 3073702633473669 + }, + { + "id": 3073697293796933 + }, + { + "id": 3073690257065349 + }, + { + "id": 3073683966281349 + }, + { + "id": 3073683742803397 + }, + { + "id": 3073681145923013 + }, + { + "id": 3073658609059269 + }, + { + "id": 3073653510473093 + }, + { + "id": 3073652727973509 + }, + { + "id": 3073631146264005 + }, + { + "id": 3073581977830981 + }, + { + "id": 3073574924469637 + }, + { + "id": 3073574873941637 + }, + { + "id": 3073545156888005 + }, + { + "id": 3073520159950469 + } + ], + "mismatch": 8966, + "mismatch_samples": [ + { + "id": 3059411450054533, + "content_hash": "f3ff4aafd8f3b53e109d49dce4a07531696e8fa059cceaca2dd8894f25e9477a" + }, + { + "id": 3059348420888261, + "content_hash": "7c6cffe9a8d5cd573c6c2510b1113e42b83b796e16c5945755e5a121971d6310" + }, + { + "id": 3059348360890117, + "content_hash": "ad823ea859bf3e191ab40d7a0f913a8a511c8c83aa67912bb022968abba58578" + }, + { + "id": 3059281037543237, + "content_hash": "caa2e84329d389c914365d7e8ecd6f159601665a1424a68f6620e5825c83b173" + }, + { + "id": 3059280985949893, + "content_hash": "cf0be5214d6173d4dc7baa06ff31755afaa22bee15b60f8b777600bb25ae0b8e" + }, + { + "id": 3059280929687301, + "content_hash": "2cf33d558c9fc44662b0502b47782b618f3a91a480ae481c3c8143c4c6d4f78c" + }, + { + "id": 3059280830727941, + "content_hash": "b445e6ed0795d138cbe7a5785f225b6f99909fff82cdce6e9d563b6cb65bbb72" + }, + { + "id": 3059280830744325, + "content_hash": "00c330d1cd49971a7f3c5acb5433457eb6e6718312f2f5e98b6e89ec1dd49643" + }, + { + "id": 3059198046193413, + "content_hash": "3563fbf4673b7f60bc3bda8d5fdbbc95220a56bd1dbb5b13260e34df978204c5" + }, + { + "id": 3058885519034181, + "content_hash": "759982b508bc825f49f17cf6f19a89edf1469d6bfbb8222995ddc23f61bb542c" + }, + { + "id": 3058553633277829, + "content_hash": "bdeba5686fbb5dcf43cfabf7970a6517263773238faddd907fde5d6599a6e418" + }, + { + "id": 3058553633261445, + "content_hash": "3eff2934f349df686464ad14004ea4b89632c7c929dfb05634e2f675e5819206" + }, + { + "id": 3058545291380485, + "content_hash": "ad92226984f8ba3f3591aabfd79a3335f48c7557ce0fd1d0a44ed22ab01d3946" + }, + { + "id": 3058536029865669, + "content_hash": "1bb87593196edefc02d8a266650253d2097c50f486f26ef1f8bfe40fd30f36f3" + }, + { + "id": 3058529162774213, + "content_hash": "3c12bc6dd437fbac9b2786ed4993061bf7b16ddbfcb7de1b697e74a47893c254" + }, + { + "id": 3058523007174405, + "content_hash": "1c683ed2a76671540603cbfe27ef57cff899fc52ca9cbf9aeafa1ce83b062a37" + }, + { + "id": 3058513987651269, + "content_hash": "e1ab84a4588fc52b68a9718f48434f9b3e31c44d1421165b26ebf22fd0e16e63" + }, + { + "id": 3058513156097861, + "content_hash": "877a9e7f33bdcba93b7f1c7de7f7ce91561b5e7a1d84c38f35fe0c585f369fc2" + }, + { + "id": 3058510524122821, + "content_hash": "12fb4c012fa63a7b6abc08860d566d28ca08f9b1fc27db8aa3fc381faba69820" + }, + { + "id": 3058510229571333, + "content_hash": "b562d3c5af59c74559aafddd78cb2c48a61d7063f7214bbdf63c093cf33bf495" + }, + { + "id": 3058509257525061, + "content_hash": "47364345580b888b0d2062cdd9b1c256f567d1ea14ad2a815901189b39fc56bc" + }, + { + "id": 3058509257541445, + "content_hash": "9a7afd81781c817f0d26e655d582f5f42aa08871cacff784f5707b1c30eaee76" + }, + { + "id": 3058504496973573, + "content_hash": "4171a7af7e08b6251488637862b600ab66ebb2428ef26dfe6852a86c868fcc45" + }, + { + "id": 3058501311760197, + "content_hash": "b8dc5b55148d78ff6156e03fa0540a88d3228aec1dadeca1f8402a177f1ec3c9" + }, + { + "id": 3058496800360325, + "content_hash": "faa199c6288489c39d493c78959d8d1b6a4ad588cfe267adb3d6d8b6c9e4a276" + }, + { + "id": 3058496800343941, + "content_hash": "f4fe1202615a4acda5c65aa41c0bf7fce2fd815ba447f88eb5926b2c8c1f9097" + }, + { + "id": 3058488662378373, + "content_hash": "5c068727f37d1f9d4030aa09202fd52d752992d2e07f9dfb0abd7526204338ba" + }, + { + "id": 3058488662345605, + "content_hash": "6d42c96c729ea04bdae1dd930f61b152daaae6812affc75969a00a8c2d03b90e" + }, + { + "id": 3058483098863365, + "content_hash": "a7871a66e7ee3d1462370d9ca2a424f9808690f5363b13f8093380b3068be8d2" + }, + { + "id": 3058482682840837, + "content_hash": "8bcf9b607001ddccbb3befe9bac0404364b17f8aba4ff6fe9218b5e97451c236" + }, + { + "id": 3058482682824453, + "content_hash": "b906b09fcfe91b7597d4227b9866aa6b177ffce9928ed6b278da47e01e6edd76" + }, + { + "id": 3058482682857221, + "content_hash": "889a4636290243dfb3fee6143a12a15dcd677fa395d56c39b9cc290084daefc9" + }, + { + "id": 3058475844765381, + "content_hash": "2ddb431296df555c7584fc7e32ae5f1d6e2a22d336e8952fd39bb51e5b84ba3c" + }, + { + "id": 3058466193688261, + "content_hash": "a548d3e2cbf6224af0d9efbbac82c52dd697e8449d6308729f6d567694e07477" + }, + { + "id": 3058455036528389, + "content_hash": "f2e2ee7abbc85d5e813f4bcfcb2bb46089fa1eacc03fd5c32d3681813698dd7f" + }, + { + "id": 3058452769982213, + "content_hash": "2c30eef1d6a9ebf98fe2a3f560af2927dee319a52280269754c3bdcbdbe08f97" + }, + { + "id": 3058437828560645, + "content_hash": "ecf04bb046637fb645a3becb2999e84d3d2f7a125908579fefacdf477a8df4af" + }, + { + "id": 3058422571566917, + "content_hash": "65df3ec2ef49072777ea5bc541ba07624113416854940c9ef59553ea883f6037" + }, + { + "id": 3058418603034501, + "content_hash": "b041e27e11a8048f23e291f3cf1676ee473ff7c24a7325eed2ae30a42d60bdf3" + }, + { + "id": 3058416405563141, + "content_hash": "f4e5a00ba40b5eb71e4ffe80c46c95d1e93afa471f32c26207205ece102001ea" + }, + { + "id": 3058405158815557, + "content_hash": "5cb9a8969d7336156e15f8b5dd78452e76377905f59e980a553a9801193371ec" + }, + { + "id": 3058399522998085, + "content_hash": "78e4e944f92c2cda04a4f4eb90231c6f352caf6a644bd632a064279b7550fb2f" + }, + { + "id": 3058397530425093, + "content_hash": "93b3fa3502cd166902db81d23860e6fa2bdfba87e81ff32bde9f1d66f0f3ec4e" + }, + { + "id": 3058374049122181, + "content_hash": "927d6cf1730fdcf4250fe1d8c3b7e4bdd5ad827e2c4463c073d6c9d67742454f" + }, + { + "id": 3058369718830981, + "content_hash": "3e04eeb66312e58cd3349b9efbaa22f6923f9036085b10d1fe6c6c96ca840134" + }, + { + "id": 3058369604339525, + "content_hash": "1233c22aee68909e7054c99a6e5f4352af943da052d86332f66899ffd342ece2" + }, + { + "id": 3058366791141061, + "content_hash": "357d8f006da0e311ee651c638a87b3be7513706b73fbc67db6046fa74c2dacaa" + }, + { + "id": 3058364255733637, + "content_hash": "529024a09c16429e2618d353bd02138cf1fb38d964e01223a606416284fd1ee3" + }, + { + "id": 3058359945037573, + "content_hash": "f075fc311fa29395947491aa69defe3551603d434a7f121411746b466e17830e" + }, + { + "id": 3058353772037829, + "content_hash": "7bdc2214980139670fc4ac893990becfe66fbc49de0095630200dc4b1aaef526" + } + ], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 15, + "missing_samples": [ + { + "id": 3071188925302597 + }, + { + "id": 3072498777589125 + }, + { + "id": 3072489929852549 + }, + { + "id": 3072432452519365 + }, + { + "id": 3072432452044229 + }, + { + "id": 3072332756567429 + }, + { + "id": 3071367860668421 + }, + { + "id": 3071358041343941 + }, + { + "id": 3071351518152645 + }, + { + "id": 3071287355164549 + }, + { + "id": 3071287354689413 + }, + { + "id": 3071254450259781 + }, + { + "id": 3071254449801029 + }, + { + "id": 3071238591776773 + }, + { + "id": 3071222366504965 + } + ], + "mismatch": 4278, + "mismatch_samples": [ + { + "id": 2901323519740869, + "content_hash": "9a9f12878714553231bbbbddbd765d9320d72d074c386b4c84859b3842fccf12" + }, + { + "id": 2901315619032261, + "content_hash": "fdaa23157da3d73028af52b6d097314d33b74d14c70d39c6a50711baf60d78d0" + }, + { + "id": 2901230332300229, + "content_hash": "5694fc1c2af6de010cfaa3241e3f53354f7ef727eb3503a8d8248a775ea7ef9b" + }, + { + "id": 2901173849508869, + "content_hash": "8698d637ed1b6b7a4b87d503c42d7bb08e692d71b9cd64eaa0fd78d2fc89dd95" + }, + { + "id": 2901173849213957, + "content_hash": "252eab7e47f39e7d31a3e7976f752bdf0c00fa8251656470e1e8806abf12a33b" + }, + { + "id": 2901131003825541, + "content_hash": "5c06e5e34377bab5f278943f6a6b6561ac12b4c8311eebe8f8afccdead024fb0" + }, + { + "id": 2900897987054789, + "content_hash": "ef1c55fbb56dbfb5ffc71b0f40509f303b6de6c0d19ff9c97fb5f5081ce55c50" + }, + { + "id": 2900023057665221, + "content_hash": "d3e68be935e6cf729e2420b542683146ebd8dd9a6de7a965466df2e4851de95c" + }, + { + "id": 2900023057353925, + "content_hash": "7ace9332eb223ae278ddb752dd71b59efad3f10fdb1c9ecf9235ef2ab77a6dd3" + }, + { + "id": 2900023057026245, + "content_hash": "f9a66acd4039cbed253782316c01b7cd2279f95b4cee75941b0fc83c2b27f67e" + }, + { + "id": 2900012076764357, + "content_hash": "4fc74bdf0d30e6bf10c584d0ff6eb781fe1058fa2a25941b8ab3587d2a106754" + }, + { + "id": 2900001347210629, + "content_hash": "9c90e646aac85ef395d49772366f2a93aa5d0154de09cb7aeae6e2e15199900f" + }, + { + "id": 2900001346948485, + "content_hash": "ebab59c2e59946f2c81728a14fc3e37f34b7bef58957bda329447d25106cb4ad" + }, + { + "id": 2899928458251269, + "content_hash": "ad25a3977f16c45a6480c021a6ef3ebc1c6b217b03524835b989c1722d7e6e88" + }, + { + "id": 2899928457890821, + "content_hash": "3e7b9503defc6ec0e1635f4a24e2ac2f845784a0aa9bba8ec94f5c63a82e3121" + }, + { + "id": 2899918740474821, + "content_hash": "05def6a462233b2d31310bcfea93a98c7a981b5ebf0aeae8c97f776dbc16179c" + }, + { + "id": 2899878080892293, + "content_hash": "025ee2119f7649dc69569c42e40a51509f68b83389f5607bab4c22fa5ee89fbf" + }, + { + "id": 2899853465210245, + "content_hash": "b47815c1f737189ac317ffa638e36225bd51883db6ceeaffa750f8bd7d3d05ca" + }, + { + "id": 2899618108231045, + "content_hash": "ec0db1c2b84f87aec0504f84e6c0f7cee89d4d6d91e4822c15389a3d9b0e607a" + }, + { + "id": 2899568022358789, + "content_hash": "56a72e687aaee27d997d4771ce10e8c30e723d3227e1d854f1066e62e8eeba9a" + }, + { + "id": 2899548248591301, + "content_hash": "5cf1f2369d03f5682637e8374ad3b58a8f8a5e27a414146baca12aaf8fe3013a" + }, + { + "id": 2899541451147973, + "content_hash": "626f269cf903d3f30d1f5812dba3f629dfcc0c6508eb44fe39454f49a73e5da5" + }, + { + "id": 2899424390974149, + "content_hash": "a6d8e55cca697986733a72df54a3c2ee58126acab1c361432de7f5979e842dcf" + }, + { + "id": 2898606863747397, + "content_hash": "b79f2b0a8a163ef2dd1bcdd6dc7ba8bda3b1e115b4539da8c0f8e58f8f48b076" + }, + { + "id": 2898606863452485, + "content_hash": "8bd0e4ae2a9be68f41617490bfe27a72e2a6e1e1ca059c09b03f50202a01b077" + }, + { + "id": 2898564248406469, + "content_hash": "741bedd766ad6bc2b74400bd38617fa5416b2d16fe42d80be7468bf04f2827b9" + }, + { + "id": 2898559636261381, + "content_hash": "dcbb15c3e7d32ea8762acae44b437b43a0496619f2750d142b4d63575a0f2cee" + }, + { + "id": 2898516666501573, + "content_hash": "d55a7b96f9f655788dd970af0c3fec4d2e67fbc6cb1b3a46202f53bb69afd031" + }, + { + "id": 2898497312491909, + "content_hash": "088cb7e75cf36a78a904640ed307338394c15ddb720efa55629f80fd597393b9" + }, + { + "id": 2898495953914309, + "content_hash": "a2436db500ef967cd75aec484b7e68687dca24bcd447b94c136ebcf10700207f" + }, + { + "id": 2898495953553861, + "content_hash": "79d2f040957bad3555fa45ef0205d70da491ac77fd404c46b3825848bcf31da4" + }, + { + "id": 2898396502214981, + "content_hash": "4741d399007e16db787bb10a501a4d1ac91379ff4c1bfea7bc1c590120d4a9f1" + }, + { + "id": 2898332908669381, + "content_hash": "ba24e2e9d489add517173fc454cf79c31e5b385267ac8f8d41fafae02a9a9ce5" + }, + { + "id": 2898332908374469, + "content_hash": "4f9fb7425fc0869638da6e07bbf9924f40b9bbddbba426a4e301e426b549291a" + }, + { + "id": 2898308072655173, + "content_hash": "a6390acddf97af86218e257149a342e0eb62f45ebbe5eca506adaa19992024ac" + }, + { + "id": 2898308072311109, + "content_hash": "20e65786eca2626257ed30132313393979d35c6dfefb06d1506e3354ee5dada7" + }, + { + "id": 2898296743020869, + "content_hash": "e9323beb77d35f82079c15d348dd8eb51478392872bc0778bf10fcd850064e14" + }, + { + "id": 2898200044636549, + "content_hash": "3910aeb9584e5e802fd9f7d785819e150decbfa1786a3e123c0ecd3c7a052afe" + }, + { + "id": 2898163749227014, + "content_hash": "c141b15ce2982419b54498a4f01dcad507baaa991f1071181e3abb02a0f2e99b" + }, + { + "id": 2898085205657925, + "content_hash": "e2e22fa28e9aaec477d2c25baf13a60751f8a4103ad531aad0bf4479b6a4aed3" + }, + { + "id": 2897934884243845, + "content_hash": "740d68fe93b1ec249dea7c9abcb3b794ebef3c84b32877c5298211d2cbca539a" + }, + { + "id": 2897258573433221, + "content_hash": "f4188e6683cbb5343c55a847485eea522765ff793c2e16e1c8ddc89911d2bac1" + }, + { + "id": 2897258573089157, + "content_hash": "23b7907833c0e569636467d76e550d9147a884d5ef3a2b69888c434868cb671a" + }, + { + "id": 2897248406243653, + "content_hash": "3b5fc60ceddb490d21cbb87c542d4c253b245b6c79e6bd629847600e30c29a52" + }, + { + "id": 2897215084972549, + "content_hash": "c51ec05e03fd6cd05ca4edd0d5364ac9fea32d1192a661c5f4cf149da3247fad" + }, + { + "id": 2897215084677637, + "content_hash": "b80c61b6c94e881fdf1e83b68c6c20621fb9162f8a2f2d9689007e1e8b5aae1a" + }, + { + "id": 2897205600160261, + "content_hash": "33a5a827b8d566d47dd2891c273346dc91b7becef8fe49438d4520bf31986697" + }, + { + "id": 2897204299434437, + "content_hash": "aa35947789eca7942b900a93d19fce7ae0b83bdc1d4c2e0300214606298f806b" + }, + { + "id": 2897191397755397, + "content_hash": "f674988fd30caddb5576d15dd82dbc24afdc48231f89d9c83de9f8b88378ce99" + }, + { + "id": 2897181196618245, + "content_hash": "26b40ac13afd3482bfbb08e2949f65c3499a5810194b296e311e5a11aa6bc244" + } + ], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 1, + "missing_samples": [ + { + "id": 3071358041819077 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11847, + "records_with_pk": 11847, + "missing": 195, + "missing_samples": [ + { + "id": 3073889301071429 + }, + { + "id": 3073881961203269 + }, + { + "id": 3073875221415493 + }, + { + "id": 3073872620373637 + }, + { + "id": 3073871309424197 + }, + { + "id": 3073870392952389 + }, + { + "id": 3073870288963013 + }, + { + "id": 3073869493274245 + }, + { + "id": 3073861759682117 + }, + { + "id": 3073858589230469 + }, + { + "id": 3073851448575557 + }, + { + "id": 3073849678825093 + }, + { + "id": 3073849385174469 + }, + { + "id": 3073846749038213 + }, + { + "id": 3073845064500677 + }, + { + "id": 3073844858488453 + }, + { + "id": 3073841864181381 + }, + { + "id": 3073840472376773 + }, + { + "id": 3073835260626501 + }, + { + "id": 3073829504550469 + }, + { + "id": 3073828344890821 + }, + { + "id": 3073818598278789 + }, + { + "id": 3073817368315461 + }, + { + "id": 3073814676129157 + }, + { + "id": 3073809409787461 + }, + { + "id": 3073797226661510 + }, + { + "id": 3073786716685893 + }, + { + "id": 3073771767416453 + }, + { + "id": 3073763302196805 + }, + { + "id": 3073751210755461 + }, + { + "id": 3073750321104517 + }, + { + "id": 3073748715652677 + }, + { + "id": 3073743224473029 + }, + { + "id": 3073741226559109 + }, + { + "id": 3073735535756677 + }, + { + "id": 3073734853183045 + }, + { + "id": 3073734140249669 + }, + { + "id": 3073705555478085 + }, + { + "id": 3073704043644357 + }, + { + "id": 3073702630262405 + }, + { + "id": 3073697291503173 + }, + { + "id": 3073690254771589 + }, + { + "id": 3073683963922053 + }, + { + "id": 3073683740296645 + }, + { + "id": 3073681143645637 + }, + { + "id": 3073670469993925 + }, + { + "id": 3073658606454213 + }, + { + "id": 3073653508244869 + }, + { + "id": 3073652725712517 + }, + { + "id": 3073646756890053 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 1, + "missing_samples": [ + { + "id": 3072740947101125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17269, + "records_with_pk": 17269, + "missing": 131, + "missing_samples": [ + { + "id": 3073887402624453 + }, + { + "id": 3073881579390341 + }, + { + "id": 3073877744780869 + }, + { + "id": 3073871761245573 + }, + { + "id": 3073868834555269 + }, + { + "id": 3073866207184261 + }, + { + "id": 3073866088908165 + }, + { + "id": 3073865270986373 + }, + { + "id": 3073864722154949 + }, + { + "id": 3073860061791877 + }, + { + "id": 3073845685585477 + }, + { + "id": 3073841507566981 + }, + { + "id": 3073829133239685 + }, + { + "id": 3073824938575301 + }, + { + "id": 3073822112564613 + }, + { + "id": 3073820270773893 + }, + { + "id": 3073814908470725 + }, + { + "id": 3073802735388293 + }, + { + "id": 3073797914281541 + }, + { + "id": 3073794447935045 + }, + { + "id": 3073792231835013 + }, + { + "id": 3073779752093061 + }, + { + "id": 3073778630346181 + }, + { + "id": 3073758002448005 + }, + { + "id": 3073755283375493 + }, + { + "id": 3073749492483653 + }, + { + "id": 3073740424496581 + }, + { + "id": 3073733296129669 + }, + { + "id": 3073728923682373 + }, + { + "id": 3073728567314053 + }, + { + "id": 3073726889772421 + }, + { + "id": 3073726744168005 + }, + { + "id": 3073717513946693 + }, + { + "id": 3073702552864197 + }, + { + "id": 3073700711302725 + }, + { + "id": 3073684098107013 + }, + { + "id": 3073676096505285 + }, + { + "id": 3073645110707653 + }, + { + "id": 3073626155271557 + }, + { + "id": 3073624383391109 + }, + { + "id": 3073610862134725 + }, + { + "id": 3073598733944389 + }, + { + "id": 3073592919065989 + }, + { + "id": 3073590209070661 + }, + { + "id": 3073585935205765 + }, + { + "id": 3073585830086021 + }, + { + "id": 3073580981749381 + }, + { + "id": 3073557996340805 + }, + { + "id": 3073545710093893 + }, + { + "id": 3073526036825541 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 554, + "mismatch_samples": [ + { + "id": 3066773303512389, + "content_hash": "93fd8b8559abe0186b4aa292d1f6cbab7287e455fcb17511986858672db5f395" + }, + { + "id": 3054195561631109, + "content_hash": "dbd75f1a0fa219ae3a1c0f798b1441137d9f773684bb585a63dc258fb65d62d5" + }, + { + "id": 3052749341853317, + "content_hash": "84567107d14c185d3a77c6f9f606d46f4a58e29836624e31ae0856e9eb5db584" + }, + { + "id": 3048238811858693, + "content_hash": "f26d232e69a4b8030b4cbc1a64b054d89b2ebee6a8e609a1cbe372a3af591582" + }, + { + "id": 3043883848157381, + "content_hash": "ea49140a85eb0b1c848e424bcd7b29120525ad3b72eab17fcd371e67538141bf" + }, + { + "id": 3037269565082949, + "content_hash": "d148a5906aec64cb87d76ccdae70a68556578d9aea6d013cb1f32c7499cdb800" + }, + { + "id": 3034509269552197, + "content_hash": "f9aa71cd07d4efff336c2f6b1260a1a8a0c0c8a2c1e9f5b6e812c6dbc2fff224" + }, + { + "id": 3032780662360965, + "content_hash": "6f661845c69f4acbf0f8dc55f94f407ca9172dff91ed07ebeb6a9be1b1e35edb" + }, + { + "id": 3025342944414469, + "content_hash": "e62ba19842106603666210ad0d10a862ab57220325a8eeedc26868ad909e17e5" + }, + { + "id": 3003552553390789, + "content_hash": "875887f4c94ab68348e8bb6351a0c4ea4531d4a60646559b12071cf02e55ba9c" + }, + { + "id": 3003185854190085, + "content_hash": "00ad6da5e4de6415b73689cf0f5b2c4b1089dd33f8fa2e24b5f3b5310570c388" + }, + { + "id": 2999125651818885, + "content_hash": "2b56e4e18209e93d3d940b4d0b62f0edc9b2ffad7e94e65274593a611c7ae53b" + }, + { + "id": 2995832745758917, + "content_hash": "523b55ca790983358ca04cd5a11f6fa537dc8a9ff673414df607d83d2fda057f" + }, + { + "id": 2988677062855685, + "content_hash": "bf18e14a0d56064b71c28755e4e17a85870404b49369ed7154ff9246eb466f43" + }, + { + "id": 2985941423934469, + "content_hash": "824aa07b0513b3de06eec5c435460249a1785f1a411467cb72227ca4c04114ef" + }, + { + "id": 2984798972709509, + "content_hash": "5d257b05d488ba9dff14bb3b8c81002e663871027d243dcc1b007db092a7f8c9" + }, + { + "id": 2984700277263365, + "content_hash": "ce755e496499c7ba6a3573a15ae3f3c1c51af868c08f678e142364db29c37b20" + }, + { + "id": 2983452013021509, + "content_hash": "c80ecd22028a92e2b4257288227976560885a562f07d027f0bbc441403fe3419" + }, + { + "id": 2980518051006341, + "content_hash": "41a2da6818fd59ae5ce54d157605649e450547db488546d52463ccba119c2541" + }, + { + "id": 2980065690831173, + "content_hash": "0853bb052a935b11824381e666bb0a2590862f3f7a0a0fc20d508457ce5819e7" + }, + { + "id": 2977807259142021, + "content_hash": "8a80496e33a008c958357216ceab39918ce7f911bc280918063ff6aaa08b19bb" + }, + { + "id": 2976465665476741, + "content_hash": "3a047432cb8c42d13a45e8a5a7d2d1a4e619a4b71910a498dff6de2312190a50" + }, + { + "id": 2976376546117574, + "content_hash": "4507126c47c6943dbe9ab0b8f6b2dec8cf14ed762dccaab70998fe4d7bc7787c" + }, + { + "id": 2976372411533189, + "content_hash": "05ac10318b79abf47d459ea782a3b2cb471e83756ad58efadcfe1285334ef6c9" + }, + { + "id": 2976369237493637, + "content_hash": "a564967c49b88302ccabe69d97b9fe31a5adfe2015a3b2245b259c434898fdeb" + }, + { + "id": 2976361970370373, + "content_hash": "1492cd67d4f11b23fef557f6700e9766aa610be415e2aa9fe10342f1086f72cd" + }, + { + "id": 2976354546927493, + "content_hash": "07c4121ff2539b3cbc6e83f597d40207ea837872cdf7e592efe17d231a635d6c" + }, + { + "id": 2975065345119045, + "content_hash": "decc49b3288553100a503cce049acb8a5873c55b931030f92ee78b2de5fef54c" + }, + { + "id": 2974785493485445, + "content_hash": "1258e65de432f925d6306578ecf457095e40d3e98d94d69b17da6b9e1b5903d0" + }, + { + "id": 2974770547348357, + "content_hash": "a4a5b25acd0a58d3055f87d5194675719b8257623668a2e5e2a54731e9acf652" + }, + { + "id": 2974756216031109, + "content_hash": "2342e2de0992de5420db9d901bc0e67a84dec9a2807f3daaa4aaef35e9f8437b" + }, + { + "id": 2974755670493061, + "content_hash": "bc03ca04ebdbb34828aab4a1e2c27e3c2596432cfbf7821b92cd1bd21fea74e8" + }, + { + "id": 2974754559625093, + "content_hash": "d76e76dd052db94b3bb2992473e45a836de3aa2e663179fe02c87823f7a609b0" + }, + { + "id": 2974754075445125, + "content_hash": "7f6682e076e3bf5615fdb64584f7559824b06891f783882c417cab3ef770adc9" + }, + { + "id": 2973479575832453, + "content_hash": "f0ad3d97ae15f2c62e68b3199c0d487e65d14dd06bb0d58e97c022bbd9750790" + }, + { + "id": 2973199975761797, + "content_hash": "d0dfa74f3c1ec916e5de16469ca68b6a7509f154800ba84b81441c34ce159706" + }, + { + "id": 2972037072081541, + "content_hash": "55d2cabf26358b4a3f403eedd6c19193ee2bdd841d8c44c350051de8f5541ee8" + }, + { + "id": 2971830157477573, + "content_hash": "1d4fd09d3f0efe4f31a86d5cb3d9cec0401f29b2a69a000aa691001c0e3873d5" + }, + { + "id": 2970668087594181, + "content_hash": "8015f0f603d45858285a3de2c2e696576fdd7047e648ba4a918316844d22211d" + }, + { + "id": 2970386005050949, + "content_hash": "612b0e65909da2f75cca5a916bf8122d3b299c7afb564bc44640351c3b412b4a" + }, + { + "id": 2969257129938053, + "content_hash": "7e3c791ec3b08266e8f99dbd2519c566a674fad3b02f59450f79c82d5ec36b19" + }, + { + "id": 2968940593907141, + "content_hash": "d7d889c3fdd4278bf10057e2f19569da9eaad90c36007395cead689a56fcb002" + }, + { + "id": 2967557411589573, + "content_hash": "40c03a616ebaab971584c3e85640f6811c9c1500c7ce0ed1a0d1ac7f92c6cc70" + }, + { + "id": 2966453465337285, + "content_hash": "390949cd42aac8d863526a8a2bb845261c6baf31c4ecdda65d2f84c9a1c59ebd" + }, + { + "id": 2966381620874693, + "content_hash": "e1d97dc5a00ebb2f0c9033b0a1a10635178b8c09ef30f5d2102afae0cb767d94" + }, + { + "id": 2966362986335685, + "content_hash": "c21cc586ecb0713b306722722fb4c79dece015870aac071a2c21c46874e74d00" + }, + { + "id": 2966172496072133, + "content_hash": "da7f220184096a546d42284c0cc8cae7ee8bd39b7a9d8d0c486beae15fbdc17b" + }, + { + "id": 2964541607316933, + "content_hash": "3d58dc1c04c40776756f7a1bebdefa4297636cd29375d7ae5fe415fd8bcc7e01" + }, + { + "id": 2963357031615941, + "content_hash": "ae8b0e9b5e7317b4db4aae4042bbabcf92e5a9c936dfcc255179029e249a5ad5" + }, + { + "id": 2963282691968453, + "content_hash": "759909fd4feb426946c5afb228ec2517969ce17fa4914b75a474ab9821909f00" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 945, + "mismatch_samples": [ + { + "id": 3066773307755845, + "content_hash": "3d6bcf7ad5851dd54b1364fc9507dbcaad2a313d25790a73570b0ba89678205f" + }, + { + "id": 3062388522452485, + "content_hash": "f7393aef8e350d2b1ac5664a387e525abc49d12dc62d1ebfa274685d6a3f6dbe" + }, + { + "id": 3055567606646661, + "content_hash": "f7f5149f5fd45298c9724a5557c5b4cf2fca1aca8d5ab64f844ae8cace59844c" + }, + { + "id": 3055177241628037, + "content_hash": "9a3fbf8bc80f336b3b6bbff6977a16d675ae878034122599ce55a9622a266b45" + }, + { + "id": 3055176919745925, + "content_hash": "efc99b2c74fc7316aff57e0dff81fd1fdaa316a6f4989f46f0f7ce343a75f205" + }, + { + "id": 3054195913755845, + "content_hash": "c8777687ffdf00f226664b4fda7d135939c1e7ef6efb2c912af102921d05d902" + }, + { + "id": 3054195562007941, + "content_hash": "28b5ef4348c56cedc9d4be34b6d0e0065a8823a5288fd7c17e34c42a5d806419" + }, + { + "id": 3052750402162821, + "content_hash": "ad8247601003466535ee18fdd8f32453fa91ea7752a52c99d4c49eeb062a094f" + }, + { + "id": 3052749343442565, + "content_hash": "cfc3c800cd215199b068241725b77007b2fb9d1a00186ec7aa2b355b5d817319" + }, + { + "id": 3048239462909701, + "content_hash": "b9b3f7b3ed525e9ee100fe5b7b8506497981b817f0cde44dd55f7cc9e32e8841" + }, + { + "id": 3048238812202757, + "content_hash": "4c564ce16b7b9a132b944af6027a11b4272033138d2d2ed2a25f3471dc90f65d" + }, + { + "id": 3043884200789893, + "content_hash": "a18111eccb2e8630868777b3ebf62509694ccd0f6494ca8e80a2224ecff78474" + }, + { + "id": 3043883848534213, + "content_hash": "fc7c90b6c1bc8ef7ac8c0dfa3117e91a294df491847f40f03977e5b4d0bdf908" + }, + { + "id": 3039974286231365, + "content_hash": "cd1a9c15177d5ee89a656e5bb096cef44288098be4c58dfe85d98206eb163d7e" + }, + { + "id": 3037269815201093, + "content_hash": "15bbebee8d24cfdcc49327e17fc72ca126ab2da24853eb2c79d3d7c7d68f2a91" + }, + { + "id": 3037269565459781, + "content_hash": "9e64d93a3fe90bddb449403d35efb87fdbcb235c364dcf207a4c6aa5ead97edb" + }, + { + "id": 3034509687458885, + "content_hash": "d7745bb903c8ac0ddc7ece313fbf93d5b66a9a7fa73b584a63d6137d18daa458" + }, + { + "id": 3034509269896261, + "content_hash": "7ff139640b824c37a4efdb59c1d08164f6a1a18777d51f5ca5146ddf3321f380" + }, + { + "id": 3032781195824005, + "content_hash": "75d8239b9d3ed14386c082335de13b5fe13251c48db3d57bcb93724cb64f670b" + }, + { + "id": 3032780662688646, + "content_hash": "d720644732b8138b328845675187a6e7bbaa7babb90d75b7d455a00dd96146a7" + }, + { + "id": 3025342945970949, + "content_hash": "ca00511bd5f4f6e89a638642e9180abb6d932eabb751c02d8828f3ed496e6519" + }, + { + "id": 3015999424284165, + "content_hash": "6651bb854c23a1b35dd62dff3fa7de38b892b29148406125a3b1c73257dee02a" + }, + { + "id": 3005510275991557, + "content_hash": "8324235d1c10a396269c9e8f2c2152a7dafa6ed67ecd81eb598ee587a238a357" + }, + { + "id": 3003852642833349, + "content_hash": "6b424784e866e599ea84a0f62d2cd6b3a845bf08ca13ae6dbb8d456944279348" + }, + { + "id": 3003552553702085, + "content_hash": "0ec4ef126f167be7beb0cac7ba0fecf1a2f3fc53122eafaa7d3fe7aa9fc386e9" + }, + { + "id": 3003186241311685, + "content_hash": "87d1238a8b6383f3838d3258474b0975b860af87436cd39080598c5632e75c3c" + }, + { + "id": 3003185854517765, + "content_hash": "81701b7fd9aa9ff58e7724fac2de2ff6a190ef5e7ec836642717c418c8326d4b" + }, + { + "id": 2999126038989317, + "content_hash": "d788e3eb9a7186e54ab5c75b8c8e4926c4b9ad43971d5523de1fc6559f2a6edf" + }, + { + "id": 2999125652146565, + "content_hash": "3a3f43211aab95671e776e34a3269ac5c013798cb583277e5d990d9e201ce12a" + }, + { + "id": 2995833659035909, + "content_hash": "35971348000a1c7b0b3c7fee1c07ec7fa7cd8666b01f21c396eaca8e0e34896e" + }, + { + "id": 2995832746102981, + "content_hash": "cfe7ce608887807ee4df058bbc700f0fb4a4b7f3419fedc6af3256ff8a7719da" + }, + { + "id": 2988677063166981, + "content_hash": "15313f195615e032787a89409893041068a95f80b6b8ace6f8999f13056c399c" + }, + { + "id": 2985941424229381, + "content_hash": "1e8bf47c16c56157986546a38c8d8aa248266f407ed88ce8c93c52c4a927c71d" + }, + { + "id": 2984856411132485, + "content_hash": "1798a4485ee2e42c18ceda5f81821dfd6dfc7373f9e24cecb4882dfe282a6680" + }, + { + "id": 2984856364174021, + "content_hash": "764fc77d110681346a4900c9aa989cfb6171f6b682be60058616a065f1a337a5" + }, + { + "id": 2984799523015365, + "content_hash": "b435c1f138247a0a3e2dd06b14cf227abbbc078418c6157033a128fb13683e42" + }, + { + "id": 2984799475798725, + "content_hash": "9fa47f08dcfed7c794263eb3a6552b7e3d9413f1b89f204611ae3f485c70676e" + }, + { + "id": 2984798973020805, + "content_hash": "213dbc61f08dd9480a3d53863ca38b2a0d559a98316e387d19bb429d754d8cdb" + }, + { + "id": 2984700277558277, + "content_hash": "2613903e542c189af81f348acf1a5a3cdc1b7ed994fd1613ffe7315ae2872347" + }, + { + "id": 2983452974256837, + "content_hash": "5b959d8708e17d07ea525f27cd0f908a85d143eacbb941cfbb1067e8f7d60eb2" + }, + { + "id": 2983452911798917, + "content_hash": "7a784325ef2d72738a6e292b5463f091f7cd7b04f6a5ecc4d55487c14543654f" + }, + { + "id": 2983452013316421, + "content_hash": "9a9b8a0da5c5aefd73bbfa725fed21e77347dae64ff61b664e901a8d2f1173d8" + }, + { + "id": 2983144658832005, + "content_hash": "0dddb75a7690ff8302288a38011585b2c07ac49ad829bda313de7da1832c2534" + }, + { + "id": 2982031769326149, + "content_hash": "fd49f6c4040e908e01607566c0ca3e47ea0c182c4c797caa7e9becd6fc7703b8" + }, + { + "id": 2982019644361413, + "content_hash": "0dbddc07cc93ebc68be685d95619bcf2c8b3f4e6b2b972d6dbf80cfa53269f65" + }, + { + "id": 2980723881215429, + "content_hash": "73220fad3375c22d4763af1f531b1e52b0cbcf0c24b73d400a29d35a031c7908" + }, + { + "id": 2980518051317637, + "content_hash": "a95bfcf12a315de3f1026ce2afbb351b72c9b7b83b1c8726d8901c4f24a75631" + }, + { + "id": 2980067022260549, + "content_hash": "059b7126b138a5fa70d19032bf7e474bb5793553e443f550b520547753033f68" + }, + { + "id": 2980066559166853, + "content_hash": "958cb990b3c7c3a6996870681a13f088f0dac90990ad7e5ca5769540355c811a" + }, + { + "id": 2980065691617605, + "content_hash": "7b15fd8e66e685d9784ba6f2cf4826551058417a4644dc055969fb3211ed70bb" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2478, + "records_with_pk": 2478, + "missing": 33, + "missing_samples": [ + { + "id": 3073870289585605 + }, + { + "id": 3073751211328901 + }, + { + "id": 3073750321677957 + }, + { + "id": 3072782513456517 + }, + { + "id": 3072782513243525 + }, + { + "id": 3072757527416517 + }, + { + "id": 3072754582865349 + }, + { + "id": 3072754359502277 + }, + { + "id": 3072743656476357 + }, + { + "id": 3072741154964933 + }, + { + "id": 3072740945233349 + }, + { + "id": 3072740723557829 + }, + { + "id": 3072705238435461 + }, + { + "id": 3072705238238853 + }, + { + "id": 3072672972064325 + }, + { + "id": 3072639798724037 + }, + { + "id": 3072523081485957 + }, + { + "id": 3072498775344517 + }, + { + "id": 3072498363795013 + }, + { + "id": 3072489926887045 + }, + { + "id": 3072432448685509 + }, + { + "id": 3072296785839493 + }, + { + "id": 3072106133079622 + }, + { + "id": 3071367857113093 + }, + { + "id": 3071359519868677 + }, + { + "id": 3071351867836421 + }, + { + "id": 3071351515006917 + }, + { + "id": 3071287350478725 + }, + { + "id": 3071287350232965 + }, + { + "id": 3071222364014597 + }, + { + "id": 3071188922058565 + }, + { + "id": 3071188921845573 + }, + { + "id": 3071139583805125 + } + ], + "mismatch": 2320, + "mismatch_samples": [ + { + "id": 3062679696018885, + "content_hash": "dc4217dabc9f62c8a4061c83f25b29631d526f092451443794aeaef5d2889624" + }, + { + "id": 3062679695805893, + "content_hash": "6e45f0788e2b575b5b7ee22239c49392bd7e6ea9753bf8b3ab2a7f5098d2c2b7" + }, + { + "id": 3062672102591941, + "content_hash": "d4d3c54099960dcd5140b9ea1e46a1b0ea9bc16955f8172c4fc4d39d3ffa1f80" + }, + { + "id": 3062642242178693, + "content_hash": "a3cc1c0d063df507ae6993b3c8dccdcf6a56a501249019ad8a6dc369a773a465" + }, + { + "id": 3062642241965701, + "content_hash": "0bb1e027e63510872330876ae1611eb4ccd51836b327df86dd53fc2821934e6d" + }, + { + "id": 3062626329644677, + "content_hash": "0ad5299267f8889b606778e54e4b67b0379a9c6fd9c70e5bbf2fe52d7073b83d" + }, + { + "id": 3062602552741445, + "content_hash": "4c2b34d9108b9a0debf1bb2d2dc6642d2e679f5475f58be61a7a25fa66833645" + }, + { + "id": 3062602217885253, + "content_hash": "9d680ade0935e383bb0d80c74e56c61c346811a32180a1e2f4bd8216a9208066" + }, + { + "id": 3062459256163909, + "content_hash": "7539fb6c8c1d6e52c093530a59f064d80f4e8f60629da5fbd8d4245165cc2bb4" + }, + { + "id": 3062388897500613, + "content_hash": "48cc147b97c920e290ea72995fcb03ca40dce9322eb3bef25d55d4009b49ccc5" + }, + { + "id": 3062367287414341, + "content_hash": "e7ade820ddc72cb372a7b97fd6de8e3c5ae2c6b8194986da39b97862da643ce8" + }, + { + "id": 3061834090352005, + "content_hash": "4b3b029491e2947a48ac8ae98c5a8653038fc84da9e4cb8ae709b75c1103ab35" + }, + { + "id": 3061834027273541, + "content_hash": "c759d04c37414825ac4b93946abc461a0d27f5ef2b50f1864b51778cfc7f6b5b" + }, + { + "id": 3061791037116037, + "content_hash": "3d9490b861d77dc0af1ed09d28a36f2f363760b34b208abcdcb1eceee8fbf913" + }, + { + "id": 3061789715992197, + "content_hash": "b0d46671a3a60369320ac2994e338f1981cf2e286ee9d380ff4e1e5281d90416" + }, + { + "id": 3061789715779205, + "content_hash": "75a2412821250ca31b971e993c6a9aac1f7cd80cc7460e3bdac5ffbd61f22cf2" + }, + { + "id": 3061788417969797, + "content_hash": "ebe8e8f5c072dca4a1cb4c7f5ec7624535597018a4ada5f6629cee2d896632ed" + }, + { + "id": 3061788417756805, + "content_hash": "fe3c1d5579d11c94402a5b60460f1261d4da1925c17e17a801cf26dae3cb838b" + }, + { + "id": 3061787661422149, + "content_hash": "c74860d11c10f704187fc48675ce019863aa9a80c5a3b1222001841e1a612642" + }, + { + "id": 3061771956407877, + "content_hash": "1e896776c2584165fa7a99689bc4c4816d5b29994780c9da20996cb18319cb51" + }, + { + "id": 3061771956211269, + "content_hash": "c9b0be631b73d95d3bc81e30a6ee28dda5ece0a6e4afb0ad5ccb3ef579898eb9" + }, + { + "id": 3061771363438213, + "content_hash": "263592c6eff66cad208a131ba2852a5dcf3ffcf959291c850beec8ecb5bc3d6c" + }, + { + "id": 3061765921623429, + "content_hash": "2187dfa63961d4993659e8f1a9ccd43e9abe99eb7800030033cea5bece33cac7" + }, + { + "id": 3061740146789893, + "content_hash": "20cc5add87903555f874e4d9f50860b95cc0388453d299fa38bb4b37bb890761" + }, + { + "id": 3061734781521413, + "content_hash": "4c6d2ae3328972a824e17cd98cae055f1808d11aa468b9755f1dba0e853e5dfc" + }, + { + "id": 3061659744751173, + "content_hash": "5fc7ced0772893a756785cbe0b08e39b186bd8ee7ed667d4e192b6b3e815de1b" + }, + { + "id": 3061659744538181, + "content_hash": "ab36724578417f64c44d05605c4a9a913cff41c2d00d266c7d4dd6ff54d7c303" + }, + { + "id": 3061658701942277, + "content_hash": "fd1359d5fb6d284a2aa4ee781473b0591cf599d7bcba11cd7de95e0aa8296105" + }, + { + "id": 3061242694192645, + "content_hash": "0bbef824c4663d876b560cc7e96bb3c1aac51a190b31b9341efa789fdc8c7000" + }, + { + "id": 3061241135763077, + "content_hash": "df44a784b1cd71c815ed20875747e78467b4cb72b93af2cff075f26d275f40cd" + }, + { + "id": 3061167891369605, + "content_hash": "67ca84876a27908812a7a24447a1d150e97c3e98ea73aea93dbc8c6fcffb5097" + }, + { + "id": 3061091705326981, + "content_hash": "d768dd5da2f68daf04d06c52034ac88a2cb93f8250ef8649becb3017cdd057e4" + }, + { + "id": 3061081539612101, + "content_hash": "f725723966682cd0ae8c310538cbe55cb77c7b7b0e9cda051ee113e330962664" + }, + { + "id": 3061069807947397, + "content_hash": "3c32ac03f6dccc01963e526fdca8ee7edee4f5f44c580e4e778b0599e17fc628" + }, + { + "id": 3060991463460485, + "content_hash": "362e8f14cf99886aede7b977696ae866865d7da5b6da51911c96e9aca4a2a9c9" + }, + { + "id": 3060991107354181, + "content_hash": "25c906c105366bf833e6b194f125662e4a48fb3fd4b2e4bc8d0e497308bc26f4" + }, + { + "id": 3060990456188357, + "content_hash": "e0590d883b131cc6542356855f3fea1adb12962d254f183ea06173b66f03d355" + }, + { + "id": 3060955651395141, + "content_hash": "8e0468aae95cc7bd5732095d372cd9b13d58095acd0aa92c6fbcd367f13d2428" + }, + { + "id": 3060942515572165, + "content_hash": "8aef3d8bc249953ebc6d69aa5ff77822e8cd3ddc928547e8b52fea02bde1ebed" + }, + { + "id": 3060909236260421, + "content_hash": "4a48ee2cadc71ec567438a97944cc55c0f9b10243dd30fcb37021264b07b1073" + }, + { + "id": 3060695890167557, + "content_hash": "b3b6be298c987c5a7f46d67f643f98f173c75035812eeed44a5844dfc1332774" + }, + { + "id": 3060695889954565, + "content_hash": "bd2db2e9d2546fd0514f2bab1d9ca80d638c8874100a7fae78ddccdafa194f7c" + }, + { + "id": 3060106492316485, + "content_hash": "8ce7faadc83c185caa384b9bf33d4d3bd877022ae1c9e13a83ac89b55fbe5d7c" + }, + { + "id": 3060093470460549, + "content_hash": "6ec7716afd2f1b6027cfa3918fbd8710eb2d54c50a3ba96dcc167aabb711eb92" + }, + { + "id": 3060091171490629, + "content_hash": "dbd97219bd3474650d58e99013cec7aa5d2df30cdbb3e7aa6da82483f3a52acf" + }, + { + "id": 3060087552609093, + "content_hash": "47596b46936074fb217d986a7a2afcfb2de766adecae8de77b9c893692eac933" + }, + { + "id": 3060087552412485, + "content_hash": "fdb5810f87f090aea692cd6f99226fab2af34fd992aeff4c513ff40ed578f91f" + }, + { + "id": 3060085609270213, + "content_hash": "adb3185a54d33bc4a277216e68904a358cecf8bccc3b6557f571810c886cb516" + }, + { + "id": 3060055099264005, + "content_hash": "c21d3dc94264aaa7bd2c7287ca7ba2b1ff73ab2e7f657c53604ada1312e34584" + }, + { + "id": 3060055099051013, + "content_hash": "4f9abd5b5baf2a9342199054600a970c892c37500e92a0c350eced3182f547a4" + } + ], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 2, + "missing_samples": [ + { + "id": 3072498360337989 + }, + { + "id": 3071351863953413 + } + ], + "mismatch": 412, + "mismatch_samples": [ + { + "id": 2901187349450117, + "content_hash": "71487926f0cb0d40f05a2a821729beadab77152d7e6f456dd638286ff4ba41da" + }, + { + "id": 2899877771660229, + "content_hash": "3ef48906f68d05a93d8fc7ba6fe657bed5027da89a640446ee75c36cf808208e" + }, + { + "id": 2898497098484101, + "content_hash": "2b7db3b346c5cbe585a9071938d371812f42755ebe85d3b502f74736a2bddb8a" + }, + { + "id": 2898108115110405, + "content_hash": "ed65b6080539ea713fca16418c4617525fd83e4230c6f699ec23f37a950df83f" + }, + { + "id": 2897191131187589, + "content_hash": "d91791c03e503ac59229efa415fde842c9c5bfad3e500d52e45aa95c980f035b" + }, + { + "id": 2896872636025157, + "content_hash": "cc33e11b18d290581cb818c24df5e10dfba33e334755386fedb14b2b4af51103" + }, + { + "id": 2895816840087877, + "content_hash": "ef3eebb7db73f2e8815fb7c3404cd35242f5ff3f7ab94703272817719033c225" + }, + { + "id": 2893870610729286, + "content_hash": "6ae2dcad014b767c0458bbb6418817b2f98062cfc54971b1fca44a92cf1d19fd" + }, + { + "id": 2890034980260357, + "content_hash": "35164171f69f06d62abba5aca4273991778c0f9bb7b4c3eb7e8f022b75c2d44c" + }, + { + "id": 2889826412071301, + "content_hash": "9a5586f7b35f754564a5b7ba53f89294ac8ca555bf1c66fa1b870f0513bbe876" + }, + { + "id": 2889781689616837, + "content_hash": "573af18406b642abcd58b245b794524820fa156a6e1ef65d7fc34118a16c3d2f" + }, + { + "id": 2888921873582405, + "content_hash": "df23b20c98c5604352dc3e1109a776ed8ba8c4910f17d296ed973f3d63f9a174" + }, + { + "id": 2888537189763397, + "content_hash": "99e8d19fea7192725d59f847cd0662e2dcb517a17411e0e5daf4432f2599127d" + }, + { + "id": 2888536810899973, + "content_hash": "6ba6aab06003ed41b6e1b02ec434a9dd0bdc1036c917e2b6f42b2634ddd4fc14" + }, + { + "id": 2888535967942981, + "content_hash": "0e23eb6e1f6f8331df5a7498e4b4bdcd050474cc3aefdc69c2cee205e9d6c3b2" + }, + { + "id": 2887588199467525, + "content_hash": "9c5b5c97a9f3051ac2f2d9902e534cc1a6fce3c6ce90a2cb5441e05c3c9d28b9" + }, + { + "id": 2887425055820229, + "content_hash": "13675536ed71241c1f09812e62cfc6b1144c146d1c154e991d4ab13904616c1b" + }, + { + "id": 2887258115705157, + "content_hash": "926707c36e96d1f79ecd1620416e96b97ecbb4fd30067e6a227401d66255a23a" + }, + { + "id": 2886024559135109, + "content_hash": "b8aab7edc5da114add02001f34f19fae5e8a1f8885fffaba7eca5dfe5cb4fa6d" + }, + { + "id": 2885823543773573, + "content_hash": "2efdfb0e76c1bef92f19f40820d2f6440b64af626568703571cbf3a7ecac9384" + }, + { + "id": 2885740355160517, + "content_hash": "73cbdb43c6da71224a43599c3e959b3daf5a11eb2da605f4943aa78f9122ccc2" + }, + { + "id": 2883154467702661, + "content_hash": "e827dbeed0425293280386f0dbfd2c63ffbd27ee26c504befc08354465241ded" + }, + { + "id": 2882873963759493, + "content_hash": "6b1ea7012751bb848cf516cd015282a0fef45c2a9f84bc5cfb53475306601507" + }, + { + "id": 2881969240016837, + "content_hash": "c3aa40a2c04a34f50c57a1e1efc551d3c604e56c4e3a9b085fb7eb65413b6f22" + }, + { + "id": 2881954356430725, + "content_hash": "a4e9508f2fd002d179aec3ae5f7db158c670baf19ba909dbdf4db6ef634ebea4" + }, + { + "id": 2881494622439365, + "content_hash": "d88ec0225fecc05b1259f6fa6271f133c39b46d3e9418cdbc2932c61e624d6c5" + }, + { + "id": 2881217115866949, + "content_hash": "3a04dcea356cafde7590e768e22e5fdd4d14de2d1bcb7434ca0d7cd35cbe0d76" + }, + { + "id": 2880092115601285, + "content_hash": "9907cbcfcd0e759cc7e5871202bfe39fdccb800b6e3bb3243162d8c0e05bff00" + }, + { + "id": 2879533817956229, + "content_hash": "ef2a2d6742673025e42bbfaf14e08eab121b187594d4c5eb2529c30360922e50" + }, + { + "id": 2878376612644741, + "content_hash": "2ebc2218a842d6653c60a2c237d0b33dd0b4843dada7eaa657b06957701ad945" + }, + { + "id": 2878144150669253, + "content_hash": "2e6bab367e00ef0e463b83d9f8ae4035f2f1e346e24b555e239a42b9bcd69f14" + }, + { + "id": 2877028751886213, + "content_hash": "f2620f02418e2722db1a228f8fca1318e5e81d7cc2aef05834b1f2b19841a707" + }, + { + "id": 2876865917142981, + "content_hash": "902bbe87383aee977574b8d12011bec7692338546a5bfcb8a381d2b7e00dfc8c" + }, + { + "id": 2875014999920389, + "content_hash": "c402f5d2aeba2642c550f1c2c0865cbec35c686dbb2eb16377c413bf1c48334d" + }, + { + "id": 2874460719566405, + "content_hash": "6e956fb3ddfec068ce0274a9853dce80c660f5baa1c9a9331c08cb59a741285b" + }, + { + "id": 2873015721365253, + "content_hash": "e3d088247141e4aa0f1b1f65af6bc3b2108ddfde306406b3b143430aabe55a9b" + }, + { + "id": 2872886000717509, + "content_hash": "25f5a558461fd837b29491b6e5682659502a501fa9763c4202de39eaecf1af4f" + }, + { + "id": 2871476629948549, + "content_hash": "4b3c80c13bab7d974d8e87e358ca8e31817e4e847be1380512b9ddc96a35bac7" + }, + { + "id": 2871199960811589, + "content_hash": "568cfa956a50357769480dc61f3098cbb8a1b21367de19319a8542a77cbdd68a" + }, + { + "id": 2868731377815685, + "content_hash": "c155eed7a5541175705c1dac353b1d5d677e0000e36677d545b14e849e3b9b2a" + }, + { + "id": 2868694618312773, + "content_hash": "b9fae8d1f363434123b7e9710092a91af453298392507b3b3f7cd5587c74c03d" + }, + { + "id": 2866812900233157, + "content_hash": "6455022a8c940615aef41e389b0c92f99300d60a69c555a21233eb7f7f822035" + }, + { + "id": 2866179769667461, + "content_hash": "27d6c3305d9d8e7d3a80d07b762c5829fe12aa69d0453ea21bc2097b7b63c505" + }, + { + "id": 2865936833515333, + "content_hash": "b5e1c2fe23575174dd98529b8394779125822faa2dee4a03bb93c95fd23762f7" + }, + { + "id": 2865782582038341, + "content_hash": "aa036c1986d5dae2634025d205ae3e5a784d64d406a2e40ebd301b53f1a3ed1c" + }, + { + "id": 2864322321649477, + "content_hash": "d059e3c44b537a3080dcfe0a383af68b3cc22b2ba5fccf6fcdc4295775ba341c" + }, + { + "id": 2864149617676037, + "content_hash": "8229dca305e314383a103398af92bf9c20a5e9d7ce8e09a50f7c72ff31027ef0" + }, + { + "id": 2863052787617541, + "content_hash": "ba351012d9631c35821212f7500612b5ac55a5bc3ac4109a5c66a04938c29070" + }, + { + "id": 2861928813055813, + "content_hash": "b00eecc9c98154bf78c6db31134df672908a5a9a3060441e71db7fa9e1a407d4" + }, + { + "id": 2861772042669957, + "content_hash": "f6e162319168aa8aa143ebe0a3768df80fa12c186c7ac0d729cea43d38746bde" + } + ], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 18, + "mismatch_samples": [ + { + "id": 3048468851870085, + "content_hash": "50ff84de08f74fc3d6d161e1bf6a4902191d325375c83ff5b6063e9d5ecbb854" + }, + { + "id": 3035353129373509, + "content_hash": "df551d771d95e07a624d563ef6d39f12c237caafdf0f863b0f1663ac8424cb18" + }, + { + "id": 3035353102028549, + "content_hash": "e527955c9181e34a9ff78c081d82ac34ec327b9953167ebff6ea27e942427358" + }, + { + "id": 3035346503502213, + "content_hash": "f3ef0af69315277025aa9c27b6957ced242dfa3aaf084df1326e832a869ed71c" + }, + { + "id": 3031000036133445, + "content_hash": "999d79dc61b98631acc3322a6fb989a1d9d7faca8256fd2578879bf9a2d8893c" + }, + { + "id": 3030876421573701, + "content_hash": "bb7f76a19fb3fc8c737e378ce3ac71b710b07a6b7315352c3c8662403f9e0be9" + }, + { + "id": 3030875431701445, + "content_hash": "dea39148e545c8ea54f14f5ecf5b202773b8e20295bf99885650c249dd338398" + }, + { + "id": 3030874907937861, + "content_hash": "0c917ee27ef4fb472417bb4fc3a66f69fe478d371f116aa98a5dc9bcf1e757f1" + }, + { + "id": 3030874716834757, + "content_hash": "61b2e48e536aba080ee925fbf0b6f0ad73b5695bd0c652b9af59a712bbea0dc5" + }, + { + "id": 3030874133269445, + "content_hash": "a89d68027de2cd43fc452145276e1a57186aee8c5d465db7d50b8a1758928c77" + }, + { + "id": 3030873639701573, + "content_hash": "9fd874d8684ffd1ed1546f1a861154d73b8bf4629ea7dec6464c437c52961893" + }, + { + "id": 3030873437310021, + "content_hash": "eb0004b31be6883e08c62f9c363aa959249703b9db985dde5070a61b656ae370" + }, + { + "id": 3030873263688773, + "content_hash": "5c0ef6c7136522d0797136a192463672a01e41342178438f4ea3d708ca0c179b" + }, + { + "id": 3030872859429829, + "content_hash": "d80e3e9a619b571e477b054be62cf93f7e0f81567c0144ca358472e3f638a38e" + }, + { + "id": 3030872476945477, + "content_hash": "7122791d6dcc16054600bc73f34db97169b0cea7a847ce3b8ec3f80766ceb772" + }, + { + "id": 3030025905916997, + "content_hash": "8c3ef6ab0c98f16bb63f77fa1c54e500eefc9d214c94f72b2dd4fd8219db86eb" + }, + { + "id": 3029784419027909, + "content_hash": "b75e4eadc2c08de60b6ac42a280705ebbd2b4dad7fcee7b3fde0721274826681" + }, + { + "id": 2861343275830405, + "content_hash": "f98877d673d0f637ffdc4b91757b7d4bbe7e3b3343eb554a3e7958df57a6ef33" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8205, + "records_with_pk": 8205, + "missing": 121, + "missing_samples": [ + { + "id": 3073889304135237 + }, + { + "id": 3073875224544837 + }, + { + "id": 3073870396147269 + }, + { + "id": 3073861762745926 + }, + { + "id": 3073851454441029 + }, + { + "id": 3073849681675909 + }, + { + "id": 3073849388418501 + }, + { + "id": 3073849388418502 + }, + { + "id": 3073845067662789 + }, + { + "id": 3073844861453957 + }, + { + "id": 3073841867720325 + }, + { + "id": 3073841867703941 + }, + { + "id": 3073840475882949 + }, + { + "id": 3073829507597893 + }, + { + "id": 3073818600916613 + }, + { + "id": 3073817370838597 + }, + { + "id": 3073814679635333 + }, + { + "id": 3073809412621893 + }, + { + "id": 3073786719602245 + }, + { + "id": 3073771771250309 + }, + { + "id": 3073763304883781 + }, + { + "id": 3073743227422149 + }, + { + "id": 3073735538591109 + }, + { + "id": 3073705558836805 + }, + { + "id": 3073705558836806 + }, + { + "id": 3073704046560709 + }, + { + "id": 3073704046560710 + }, + { + "id": 3073683967018629 + }, + { + "id": 3073683743524293 + }, + { + "id": 3073681146512837 + }, + { + "id": 3073681146512838 + }, + { + "id": 3073681146512839 + }, + { + "id": 3073653511226757 + }, + { + "id": 3073652728628869 + }, + { + "id": 3073631146935749 + }, + { + "id": 3073581978453573 + }, + { + "id": 3073574925124997 + }, + { + "id": 3073574874613381 + }, + { + "id": 3073574874613382 + }, + { + "id": 3073545157428677 + }, + { + "id": 3073520160573061 + }, + { + "id": 3073520160573062 + }, + { + "id": 3073430046508677 + }, + { + "id": 3073387407082949 + }, + { + "id": 3072696455841413 + }, + { + "id": 3072673043564165 + }, + { + "id": 3072673043564166 + }, + { + "id": 3072672522389125 + }, + { + "id": 3072672522405509 + }, + { + "id": 3072609884046725 + } + ], + "mismatch": 6960, + "mismatch_samples": [ + { + "id": 3051427229664581, + "content_hash": "0c34e676d3848aa73b71ae47205ddf370f887b58e005dfa0b590db522c797e40" + }, + { + "id": 3051427229664582, + "content_hash": "3fbb4435d96d4e2fdb043262318a93d3f1eebff58f8c01b6d148d88934ce06a7" + }, + { + "id": 3051408953149317, + "content_hash": "92b8e48b77cd6e77c95ee7aabec90e7e710e99107f252ffe982edfb45bef90fd" + }, + { + "id": 3051408906569413, + "content_hash": "338c3d25f1e68e8f33bfb31ecafa05d5143ba215db8ea1cd765d2dcab88542e5" + }, + { + "id": 3051399554893509, + "content_hash": "02127f73be500a31868ed69d1266127e522862663c2dcb1b8a3088529c53dd06" + }, + { + "id": 3051397009458949, + "content_hash": "3e76121ba514c68939c0a6f7a9a16180dbe7c689b97462390903691a6d95778b" + }, + { + "id": 3051396963697989, + "content_hash": "a5534d113b3b59a86a7e4f83bec95b8e0e8e2ab66fc547e1e58dcdcef70828f0" + }, + { + "id": 3051353077450053, + "content_hash": "8f99d8bab7ce01fabc4210e4be57815fd5a40551963c28c67822b8740c2977d1" + }, + { + "id": 3051350090663685, + "content_hash": "c463983ba28db15063573549d53f38f3bae241f78d2749d92dc421704058eff4" + }, + { + "id": 3051343800289157, + "content_hash": "3336cfb9378a246e844c58f6610a5c6cfb79219f04822ed7a5715b4c57e4bdab" + }, + { + "id": 3051343800289158, + "content_hash": "317e4aa7a63595cb7fd0aa3b70c72a9cdb331e2143c4d8cc24d206671c748394" + }, + { + "id": 3051343800289159, + "content_hash": "6e2e7eafeab0b82b3a67c34ba7dccf118439eb6094d2a691acec3f6366d534bf" + }, + { + "id": 3051342701675845, + "content_hash": "2cdc3e01cda906663d399c3206f1b117ccf19bbbe2909c93cc72976c1feb505c" + }, + { + "id": 3051342653589189, + "content_hash": "f5cf935bd59fe73c128b70ea19835f0f8da9848c911b943f13722d2d0278c613" + }, + { + "id": 3051339809294021, + "content_hash": "525484a81d608173dc62cd8ea746b2f7e51714e839fb2117fa8ec579064d110e" + }, + { + "id": 3051332534060805, + "content_hash": "d4a4961bb1eab734352d5db50b14425b4c607bc301c17dbdf307cbe16defc6b6" + }, + { + "id": 3051329227113797, + "content_hash": "b1215cb0c2fa187a51fb7e0de2659d0a7aa5811c43c23f322479b32397b283c4" + }, + { + "id": 3051329227113798, + "content_hash": "621efc79e5f9637ae1e10814ee354f43876d26634478c5d62f2c7274ece73834" + }, + { + "id": 3051327939643141, + "content_hash": "bc1d435407b6b3ce9cf0eb86980760d09ab5331ca18841cc19367a971f03d294" + }, + { + "id": 3051316022216581, + "content_hash": "d1297fe7293b5e4ad7346743ea905eb344cfca61cd22451e0ff51b754b57b4bd" + }, + { + "id": 3051316022216582, + "content_hash": "754d955aa4af8d2a14795e1e6ed471d530ea5f3334df75fe6ebe7fb0f27a58f3" + }, + { + "id": 3051316022216583, + "content_hash": "836fe0d4859a86c2e8fb92c799ac2c4c2c9f2fd10f75c4e174313ba1e4f7778f" + }, + { + "id": 3051316022216584, + "content_hash": "4b4791c5609ffd631a6937e130e0da5f25b680c4c3fb93c37d3f7f308c858ad9" + }, + { + "id": 3051316022216585, + "content_hash": "b56e7d4db9aeb12e7014bc144782a86ee17cec495475a1f349c198528b6af538" + }, + { + "id": 3051306537141957, + "content_hash": "b6e540abcd332ff2a3ccc2308f37fd822d634f218c3561eb425cb0190d547811" + }, + { + "id": 3051306537141958, + "content_hash": "242444a816ca28c3e03832dc401ca46d50fcb5ffa48650719f7dd34629aa0ffa" + }, + { + "id": 3051306537141959, + "content_hash": "fda314db4d446ceedfb5c72b2fca7c9a0603aa7f678097fca4de04b0a60b9372" + }, + { + "id": 3051279977219781, + "content_hash": "7cd9f8eddc9b5f50419757a89e59d05e867ae3418af864727dc2eb88606e4fb8" + }, + { + "id": 3051274709845317, + "content_hash": "64f0532470f10b3895f9cf6f2e9c01aa5539c3d376be3b3f97ed6d9851be3173" + }, + { + "id": 3051274709845318, + "content_hash": "373b08a704f95acd81fa806851104d8a412ab9b727b3db073eadfa76e3c4f0e3" + }, + { + "id": 3051268287530309, + "content_hash": "f59165beb9050ddb6bda9455d8d306a05396d5af4d9055a19a7cad323119143f" + }, + { + "id": 3051268228204293, + "content_hash": "e0ccb769e52c8797b457156ef5fc7a4013a508835db9cbc3ec5e410b9304b3bc" + }, + { + "id": 3051260375238405, + "content_hash": "cd96f6059f402f81bc89cbd9ed70df2e529d6485b22b8a0ac31e93bfe4a9a8c7" + }, + { + "id": 3051252778305413, + "content_hash": "a141decf8d470e86f6b4f1be47eda1a93790bfbf2dc29ee8aa8f847e172330ec" + }, + { + "id": 3051249401267525, + "content_hash": "9d2377b4aadc2ed9754be5ba91a718cab0ee6d4e8543c46f78462656b4194b9a" + }, + { + "id": 3051239827277701, + "content_hash": "9f450fe79d73b3286e102a15927ef206c3805f45322fce23f698f40ebe1bdadc" + }, + { + "id": 3051233265796421, + "content_hash": "0acc619a776cf8708a951ddb6addb3713157968f9c6697e0c6f8d1024490b6e4" + }, + { + "id": 3051233265796422, + "content_hash": "f07ad8de86490e5dc28bf4785e558e1d1ecb006beddd66a289c6fed3bc1f7ef0" + }, + { + "id": 3051233022445317, + "content_hash": "a2f93497446ec4f1c77143fe4f12cf1b19f8364620e0c445a565e1655aecb35e" + }, + { + "id": 3051225289377477, + "content_hash": "e89e9bfe3e5ee8394726a5fdb54befeaf2a78945bb2cf8620aafd51dc0339ee2" + }, + { + "id": 3051208589542725, + "content_hash": "3c5a98adbbc60c02ce0614ee43a03c4848169fb8440c142c494e2f3d71b21c3a" + }, + { + "id": 3051204860560709, + "content_hash": "a1dbe01668bb9a57d3df98ca599c1a07ec2ca7a6bd4982d622bb1a9b3c7a3ad1" + }, + { + "id": 3051186696931077, + "content_hash": "f4cd50d53817ac7650c4f51aa75c062cc57e37e11d7855c42b4664958117280e" + }, + { + "id": 3051186421991109, + "content_hash": "e209751a2667a501791229ad4ce93889eff7f48f4072ce993c7087c75b340856" + }, + { + "id": 3051173390403333, + "content_hash": "3533a0ef485231713b287d236e09b06c7c8df70313994c7de03c6ca68e5990f2" + }, + { + "id": 3051173282104645, + "content_hash": "2969fabbbe29e3f0e7d351f81d5810b5f6730627335e0be1c65f1aaaf342db3b" + }, + { + "id": 3051171034645829, + "content_hash": "d314a6a27cc7af4e3c73e5c3825caeaf359f60d13fbac756d49891826b6a3c48" + }, + { + "id": 3051141076879237, + "content_hash": "fc8852ebc353d307d6f2a938340e8943a34b9dec618c5de3b43db9ac45c96b38" + }, + { + "id": 3051141076879238, + "content_hash": "36030f95c14454ed4f68476f918195e2ef20066fd76649be30d394ca371d86f7" + }, + { + "id": 3051141076879239, + "content_hash": "479f9c42f1628e88407c81c7a63829bfbeeb6cf963d1873abba01479fca2f7f0" + } + ], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "sitegoodsid": 3073782716778501 + } + ], + "mismatch": 116, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "a9913b113eaf64147f8ac13b00bfbc2f1274c6a0a3e5ad5446ad56c647c74931" + }, + { + "sitegoodsid": 3047846073076101, + "content_hash": "7f83da1fc3f493ba635f4f1db06c8e02b0e18abcc7ee3342a274a04c9862ad72" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "4264c035192dcd99094aa115632d04cca3e851031cedf8771bd569fd338d0801" + }, + { + "sitegoodsid": 2994236295696133, + "content_hash": "840f35091c29311007551e4005c18483bed39f63b59f7e3dc40c2c0f312d81bc" + }, + { + "sitegoodsid": 2991303873644677, + "content_hash": "2890bf429dd18c412b5a3d619d4a15840c915e6bf9b2347b3531f9f6aaf3476a" + }, + { + "sitegoodsid": 2966339994143941, + "content_hash": "183f3593aa57f73f4dbf829130cc6e652c137faa333057d9293d498114541ca4" + }, + { + "sitegoodsid": 2964704853035845, + "content_hash": "f9bf5b63ee886bf11c672a9bcb0a3f9f81e5b0fd8c8909bb0ebc4259dceeaafc" + }, + { + "sitegoodsid": 2959253027243589, + "content_hash": "434606f5935678c2e9df17c5c7fae0c17174fd21cf70e9b196e0225f72e15ec2" + }, + { + "sitegoodsid": 2920523201973445, + "content_hash": "4f2a0b6fb787afd25d2800712efd04212b851466c1e7488e4a4f98ab139d0396" + }, + { + "sitegoodsid": 2915208915865285, + "content_hash": "0d0f868acb90c8ce1275cfa31f361c16cb46c5f5c97fea527cc3eeb9080fc7fc" + }, + { + "sitegoodsid": 2878393200266693, + "content_hash": "ad05ab7963bbddc6a2e1eff4c0d68c4d85542ade126d062ffb9671e4f81eda2f" + }, + { + "sitegoodsid": 2868240313094021, + "content_hash": "30f68ad5baec22309f38a0d146711a7d1733f1f3c408dee1221ef55115d00e18" + }, + { + "sitegoodsid": 2834064312256837, + "content_hash": "ca117cf4a57c3a4a4666f5709a629cc85a06335f8c5ac7abc176b5552a8b404a" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "f538d595bb4f7158844e09b308d9e9669036909d5066b0c6c7b73de0405edb49" + }, + { + "sitegoodsid": 2826003636177861, + "content_hash": "b5da0d10f4ac9801f7ccd9251c251ad8dac5ab69e58a68737050ddefd6bbbc67" + }, + { + "sitegoodsid": 2826000758901701, + "content_hash": "b4dceb1e25b35b152aec938351e8d97f03b00385238e8b9b51f819b7911b4c80" + }, + { + "sitegoodsid": 2823321361894405, + "content_hash": "5cc87dd447564e20c84fe2791ea4ab3d055b1bcfd97f95ce402812dfd1a47965" + }, + { + "sitegoodsid": 2804514498563141, + "content_hash": "e1dbc327b8c014787f1cb144c721f60a5840cd5ff27d46b99df53f8c62bf5d70" + }, + { + "sitegoodsid": 2802099478416453, + "content_hash": "40e8f2eae2d654cb80565e5ef02d4c6cd484b2486d19f474815fe7cfe06f001b" + }, + { + "sitegoodsid": 2802006728788997, + "content_hash": "3b2124dae07f9f048360b9fc37b86e48efa0bf015aacf5db401ea96468f5e70b" + }, + { + "sitegoodsid": 2801925514103877, + "content_hash": "d3b191701ee9089763119ebe92f0474d006dd1932284e34eaa6fb3b228dcfc47" + }, + { + "sitegoodsid": 2801925513563205, + "content_hash": "12350b55267e05e21808d274145731b284ea050fde03f4af3d7d42bc773506e6" + }, + { + "sitegoodsid": 2796105365441989, + "content_hash": "c48176150e992efef8bb31bb125b48c293abb8fa37d0f9d9a365332fdf514030" + }, + { + "sitegoodsid": 2794695802065029, + "content_hash": "f1966917a48f6300e33d064067023d88dce7f32a40d78793b87c5d5a95dd945f" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "aa6139ae2b4f8e95b20f86570921926b8ecbfc36cb12c0a5b427aca58e760cc8" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "c1ca8adbe8d77aa0f0c1cf7178f14aab39b7de868833d8eada4ebdd9bb787403" + }, + { + "sitegoodsid": 2794695801589893, + "content_hash": "3e517fbb2c48ba27f802bda7e48457117a6fb952c29a574c45c99854c8370d5a" + }, + { + "sitegoodsid": 2794695801409669, + "content_hash": "917ccb03d3ae888167f3b3b4715833c2f2e32503fa4aea1444cfca506ff9c727" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "ccd44c7f8ad33b4f10ddb85fe1c59afd4c7fbd27f1503348c9609c323954a115" + }, + { + "sitegoodsid": 2793026435027077, + "content_hash": "9a260716c8ac554757bc2174fbd45148b6682f87f892d54ebd0ae3f45050f963" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "89f57b20f8c3f96dbb261268918c2e86c5f54777e3f1b05bb28473e2a5137267" + }, + { + "sitegoodsid": 2793026434568325, + "content_hash": "98ed4ad513c3bada92c1e73c8d555611df623a235daf5b2abb4f304cc2dca00e" + }, + { + "sitegoodsid": 2793026434240645, + "content_hash": "9b20a2b6ff7aa28ee4397a97603ba55cb584abbba22f76ef56d3a1d840475394" + }, + { + "sitegoodsid": 2793026434093189, + "content_hash": "057f6e40f213cfe36a70a613cafdbfabaea6dd48712b24d61c667ebe397d4285" + }, + { + "sitegoodsid": 2793026433749125, + "content_hash": "8a151517282182ad72c563353a90d1a770578f64ea5eca7be6150240c64511b0" + }, + { + "sitegoodsid": 2793026433568901, + "content_hash": "90114cb213875c71fd51dc55900737db04387b58534d8fce348df47594891128" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "0cafaab5fc94f011548144b3bc8a4eaca2507068df63a785a2a6d956ea3b4e9d" + }, + { + "sitegoodsid": 2793026433241221, + "content_hash": "04b2c2281d9a42489f82950faa3068b60fb192909fda8946eb9cfe4507ff1225" + }, + { + "sitegoodsid": 2793026433077381, + "content_hash": "654c73b7716f3f2e3f68c019b9a0410d3c33621f0736d983f02e9872b6860496" + }, + { + "sitegoodsid": 2793026432913541, + "content_hash": "4a6c7f869478559e78521098bce702d5c3bd145afdcfdc02b9187a2b5ec56950" + }, + { + "sitegoodsid": 2793026432733317, + "content_hash": "f451b0d1a2f6738e6426b3be97fa46d9800aa3a24667b5d911c3253e9e2186c1" + }, + { + "sitegoodsid": 2793026432585861, + "content_hash": "c67d98448d700116ff5923c9db2fddaa1e80741c888b6b6b29f2f7d29e236c98" + }, + { + "sitegoodsid": 2793026432258181, + "content_hash": "84a4ece9bb1f866caab801177674a93ec3f4847381e7a57c79c922c328687dec" + }, + { + "sitegoodsid": 2793026428866693, + "content_hash": "e45c706bbfa8fdad6c49380bd5d3ac4696928b03a25c877f4015add8dc12d4f0" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "47216ea351c38284bc78c8985c379d3a9d1afbe262a26871d13152c4d16c3550" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "4da3fca81315491bd59867e6c46fe5e5e5d617c409d1fe609d1d81c2df156ad5" + }, + { + "sitegoodsid": 2793026188087365, + "content_hash": "3039fcc28f55d154c971cc459c0432d0afdd81a33e5828c38dde5e82ab14a83b" + }, + { + "sitegoodsid": 2793026187726917, + "content_hash": "b2d4e3f3857980549e27ad1b448b1e147352ae2138074e6e2e51d974dc2213c1" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "05406c76cb29dcf4ed283ae26d87a9265a644ad47033e97518ad6125aaa2c312" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "40e48b1aab5015608c96ecdce9dcab55941e2ce214cdda589e04ea99557283f5" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 208, + "missing_samples": [ + { + "sitegoodsstockid": 3071187890865989 + }, + { + "sitegoodsstockid": 3071182788102021 + }, + { + "sitegoodsstockid": 3071182787594117 + }, + { + "sitegoodsstockid": 3071141751064453 + }, + { + "sitegoodsstockid": 3071140610590533 + }, + { + "sitegoodsstockid": 3071140610148165 + }, + { + "sitegoodsstockid": 3071139852748613 + }, + { + "sitegoodsstockid": 3071138960656069 + }, + { + "sitegoodsstockid": 3071138960606917 + }, + { + "sitegoodsstockid": 3071135739021189 + }, + { + "sitegoodsstockid": 3071135739512709 + }, + { + "sitegoodsstockid": 3071130407454597 + }, + { + "sitegoodsstockid": 3071124831930117 + }, + { + "sitegoodsstockid": 3071124832847621 + }, + { + "sitegoodsstockid": 3071124824934149 + }, + { + "sitegoodsstockid": 3071124827948805 + }, + { + "sitegoodsstockid": 3071124832470789 + }, + { + "sitegoodsstockid": 3071124830193413 + }, + { + "sitegoodsstockid": 3071124833273605 + }, + { + "sitegoodsstockid": 3071124830734085 + }, + { + "sitegoodsstockid": 3071124831258373 + }, + { + "sitegoodsstockid": 3071124832519941 + }, + { + "sitegoodsstockid": 3071124818429701 + }, + { + "sitegoodsstockid": 3071124820068101 + }, + { + "sitegoodsstockid": 3071124832012037 + }, + { + "sitegoodsstockid": 3071124828817157 + }, + { + "sitegoodsstockid": 3071124831307525 + }, + { + "sitegoodsstockid": 3071124833339141 + }, + { + "sitegoodsstockid": 3071124818134789 + }, + { + "sitegoodsstockid": 3071124826408709 + }, + { + "sitegoodsstockid": 3071124830275333 + }, + { + "sitegoodsstockid": 3071124830799621 + }, + { + "sitegoodsstockid": 3071124832896773 + }, + { + "sitegoodsstockid": 3071124820379397 + }, + { + "sitegoodsstockid": 3071124125501253 + }, + { + "sitegoodsstockid": 3071108934354757 + }, + { + "sitegoodsstockid": 3072549650433605 + }, + { + "sitegoodsstockid": 3072549649335877 + }, + { + "sitegoodsstockid": 3072549650974277 + }, + { + "sitegoodsstockid": 3072549649876549 + }, + { + "sitegoodsstockid": 3072549651514949 + }, + { + "sitegoodsstockid": 3072546025702853 + }, + { + "sitegoodsstockid": 3072545888241093 + }, + { + "sitegoodsstockid": 3072544489932357 + }, + { + "sitegoodsstockid": 3072544190055813 + }, + { + "sitegoodsstockid": 3072543251072645 + }, + { + "sitegoodsstockid": 3072535484794501 + }, + { + "sitegoodsstockid": 3072533915993733 + }, + { + "sitegoodsstockid": 3072513744684613 + }, + { + "sitegoodsstockid": 3072508727346757 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 66, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "790c29106a42775f6c020a7940e6778ec08bfd280654c2f70019535bf3ff1d5d" + }, + { + "id": 2792521437958213, + "content_hash": "acab47711bd4cd7d02859a707d292588337e5819c097d22a5d489ec486459add" + }, + { + "id": 2793001695301765, + "content_hash": "5de90ea30f9cb89061c4729b0bf1fdfe2f35e62052f5c0399b35a55988e25ea6" + }, + { + "id": 2793001904918661, + "content_hash": "19f0c1b7d923be9d4713b637601769fb34c861a50b6631aab1506fa5e510313a" + }, + { + "id": 2793002509209733, + "content_hash": "04e2d669858d065dfb3ae206bc6b9a04fa1cdc5acedb33f76792cabc7b3aaff7" + }, + { + "id": 2793002673295493, + "content_hash": "1901c6fe7ce62af1db9cb4196256472f31448281a8b7eb30cc0faf677e976b40" + }, + { + "id": 2793002808987781, + "content_hash": "6c50ebca36508492f3b4019ed1f42b50997c8a2baaab002a95890dd54b26398d" + }, + { + "id": 2793002896494725, + "content_hash": "76b58e1b0c1520f589fa89d936a683e3b76b241dc7831f60a540f24af3fbb9e6" + }, + { + "id": 2793002980429893, + "content_hash": "50d428a141c2e54634fe486654c633cd81a7477c86073ab988639262e991913e" + }, + { + "id": 2793003066429509, + "content_hash": "d5205da032121caa41426f484af9debbce08cc7c0461cd2e54bf343020e0cf33" + }, + { + "id": 2793003159474245, + "content_hash": "4aa654be2a9792dc05fa98cea56c9febde2ce54eb8af5aaf0d7de0e7ccf048b9" + }, + { + "id": 2793003243294789, + "content_hash": "aec7e3afda2979996015be5c7d612b07233056e746efdcf421c454ebb694d7f0" + }, + { + "id": 2793003323740229, + "content_hash": "12977b5725ef678ebc6e2610f3a2fb5c75675c1bec0c7d1cb2113357a7432457" + }, + { + "id": 2793003420504133, + "content_hash": "ac38b59da2751f9e769fefbd6d0a52beca2518a563690463991596336c3d7d4e" + }, + { + "id": 2793003506815045, + "content_hash": "f6816bdf7f2a2395995b6760e31eefcd1659837c0ce02567481a29b7f55c97d3" + }, + { + "id": 2793003618340933, + "content_hash": "13388f89af216142386c81365191ee3ef3e9b5bf0eb0fbcffc035e0d296a35f0" + }, + { + "id": 2793003705192517, + "content_hash": "411e5b9cc67d185969ca3744f0126d371f7cdc0257bbdf646ac930a41a753bea" + }, + { + "id": 2793003806953541, + "content_hash": "245e08f11683746966e9af4cff9f5264ff2712342df78dff9c4624b5287f8243" + }, + { + "id": 2793010820206661, + "content_hash": "9c8a82a2cb6f746028fb9af0aca5265b0f870cc789b9bdff278ca22744b45eeb" + }, + { + "id": 2793010820304965, + "content_hash": "ada062bda1e6bad24ccd29a533f00d10c467a84e5a760c7ce69f9b93e2f09644" + }, + { + "id": 2793012902121605, + "content_hash": "4dcd6679a3b533cfdc75d2ffb1617c6573e2a8474817ca15bea31e73edf04258" + }, + { + "id": 2793012902154373, + "content_hash": "277938a622e6019c1c47699504f81dae3c38fbee4e12c8f846e6f56a18678dbe" + }, + { + "id": 2793012902203525, + "content_hash": "70a0efb5d0b12d8e52fec3b125669a5a72f036f437116927b13116c3244cf39a" + }, + { + "id": 2793012902236293, + "content_hash": "31bd7bc7c1e464becfd5c755e9309f70c3443ddf7d04a27b25d3c32d0f4e11d7" + }, + { + "id": 2793012902285445, + "content_hash": "ee43c24e9a5a3b14773baa71c734875cc9d415df5a9a67d1304104376ac93c82" + }, + { + "id": 2793012902318213, + "content_hash": "88fe2e4ca8b7bf5397ca857c6ec59cbee931c8583a6371ec2d14aac1679f0cb4" + }, + { + "id": 2793012902367365, + "content_hash": "a2d3a4885561e5de182fc27392d9ab1a5e89c3ecfd53b4ce1188bbf8e48a30a1" + }, + { + "id": 2793012902400133, + "content_hash": "8cb23fb5dff196a92eef1b05b38b84578d3e747c333cc4dba241890ca75b9e11" + }, + { + "id": 2793012902432901, + "content_hash": "c95f5c3402647a0a4028595ce6d0599ac444bd792bfeec44e88dcae6613c07ac" + }, + { + "id": 2793012902482053, + "content_hash": "160eb32fb80356e47f3688f6d0a1bcbb2af33c31f5bb5c95a3dc7173b5dcdc0e" + }, + { + "id": 2793012902514821, + "content_hash": "aa7ed633a632c2d56cfb3adf86fd6b74d1d9a2e6427d201fdd544e221a866cf1" + }, + { + "id": 2793012902563973, + "content_hash": "52650f98673fa4e29c2c8474a037b418ea0e26fc628b59b1ea26e30cb5b3fe69" + }, + { + "id": 2793016660660357, + "content_hash": "f5059f01b09a1bc0d4343409c08ebd93324ef4a2988ecc19a1edf39a500c10ee" + }, + { + "id": 2793017278451845, + "content_hash": "ac6908a86b834961924076134891d3e21b931d7318603ebd9c199dbf64e490fc" + }, + { + "id": 2793017278484613, + "content_hash": "868a7f5fd72b0c0574b23dbfaaf2cd6f9609dca9b807c5cf03fe3273e370db3b" + }, + { + "id": 2793017278533765, + "content_hash": "ee8d59e16b820fc5f8048c1eaedcf3a1aae3dd2009e2949e9c28817655b5803a" + }, + { + "id": 2793017278582917, + "content_hash": "0b45445e29ed5fc898ceb6ac437d92ce842c70dc04c6341e497cb778cba7cdbc" + }, + { + "id": 2793017278632069, + "content_hash": "9208d664feb5f3a10026452827dd84393c1e0437ffc8773944c74255bf231168" + }, + { + "id": 2793018776604805, + "content_hash": "e28469ae6e8ae489301a67c45de99bb1c96652656ff6ca3a882850ed9506d493" + }, + { + "id": 2793018776653957, + "content_hash": "b5ccc0da91d465f5e2cc1dc5e8fe87edca90117e2eafcf9a309ff09b21e87f9c" + }, + { + "id": 2793018776703109, + "content_hash": "376c73069ecaa87cf36efd3470507f6f768dde77a1803a018e51c9b7dbad332a" + }, + { + "id": 2793018776735877, + "content_hash": "1e143148b5c2a7683fe18eb0eeee43a4d9a3c7256691dce38bb93ba69dad04bf" + }, + { + "id": 2793020259897413, + "content_hash": "11586500cad461222e5f239502109469f268fa8791433884c24be93692208dfb" + }, + { + "id": 2793020259946565, + "content_hash": "6e5b451656b2e3fd593c307996ade90e58391ff0b2987d39f6c435adf6d6e001" + }, + { + "id": 2793020259995717, + "content_hash": "f791646abcc187fa2e477d746fdf5e4a0ebcd9cbd97a8de4a969bd4e3034ee58" + }, + { + "id": 2793020260044869, + "content_hash": "35e6ba752493354b49db3ae20e1f9899be86d356a12156c9269d3ecb905366f9" + }, + { + "id": 2793021451292741, + "content_hash": "b73c7fb62cfaf20562ec8374dcbcf134b73ef035bf3a432f46b00d34bf3da757" + }, + { + "id": 2793022937911365, + "content_hash": "868f4264d5787daa1c2b1cf3694272a4c28d25fff92a4bd0803038c9ec1bf18a" + }, + { + "id": 2793023960551493, + "content_hash": "e942fde98eff603bbd4bfe849cdd5b177620fdd451995cf24c32333ed6f44d6f" + }, + { + "id": 2793023960600645, + "content_hash": "ab4af349173b6bdcbbee48cc76459f69ce061f1f0602cf352f5addaaf162ad5d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 1, + "missing_samples": [ + { + "id": 3073782716778501 + } + ], + "mismatch": 133, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "58799afabf7657f1356d85a2f2e03409d940b3355c92bf89a03868f40cab55a1" + }, + { + "id": 2793025849102405, + "content_hash": "643851fb977fe111678637deb6b8a19a57aa0d6b4aa07d8564ec89d98184b9ac" + }, + { + "id": 2793025851560005, + "content_hash": "4902a5845dfdb09978812f4caf46af27d431c937df2837cd3b127d2bb03f5df6" + }, + { + "id": 2793025845825605, + "content_hash": "781e7b15e4410be5e2a4f836a12eabcb6abcd7c7ed4c2434b36699076407190d" + }, + { + "id": 2793025849593925, + "content_hash": "ec216cfac8b9550e0e54739a724b749dd8b0b0b208d0a0cdacdd783ef4da53d7" + }, + { + "id": 2793026188087365, + "content_hash": "756bd7ea9760b5d66498f0fe1591b05bfeab6737e3a88e7503727ab569424973" + }, + { + "id": 2794695802065029, + "content_hash": "78412f7f62cbb8ef5e7210d857656633ad73e39c390a7a858959a4055939e2b2" + }, + { + "id": 2794695800934533, + "content_hash": "6c1c011031403253eed1eba92efc5dd52ea1720d01b89d7360f04d231015340f" + }, + { + "id": 2794695801409669, + "content_hash": "4563fcea1149b0151d5f758bebb7225df763f0943857871617241726cf050c86" + }, + { + "id": 2794695801589893, + "content_hash": "326070376fbed1314c8d6e988143a763e63795b14b61c483ba33cb7c5e978921" + }, + { + "id": 2794695801753733, + "content_hash": "c5d8bc85cde1f0d4b4e5589d5ff4c1b8ff02a6a20ac4e72e9ee8c60eba473dba" + }, + { + "id": 2794695801917573, + "content_hash": "710eeb95bc3ff85607f085500b0b12b36dd014eac0779a72484b3c57d820a6ff" + }, + { + "id": 2801925514103877, + "content_hash": "dbfd2250e1619c763035902c2f625925660c162090b6f2d18ed0bc993f10f514" + }, + { + "id": 2802099478416453, + "content_hash": "e1961444a2eb82970d92f4569206d3d92c693b835a0a16f13e68ebcae61d37a6" + }, + { + "id": 2811811188836101, + "content_hash": "b2ada840e4a91affed4e4273d4b18bfc3c87db93c91f986bf87d065f3995df9d" + }, + { + "id": 2828836772432837, + "content_hash": "24c4d4a63ec90981980fbd593a7117ac088ea858d9b8d558a06fb13ae06d677e" + }, + { + "id": 2878393200266693, + "content_hash": "97387f73dc72810d071f0e197ed210f41fac05526b12da46f082c2f7a737ee2b" + }, + { + "id": 2906983124748485, + "content_hash": "4b6cacf0ed0acf07be37301d91ca189c6fd7f04488f5ad9df14ef3df4c1f9c5f" + }, + { + "id": 2915208915865285, + "content_hash": "1ac22ab42960aabf51cb295d392aa408f4ce3d9ff56801cbefd5380f5f887d10" + }, + { + "id": 2959253027243589, + "content_hash": "8fa0c2a1b67deb2eba44a6ab781ec6eb07e30af3d7c9bd27bb01b16a7da3e788" + }, + { + "id": 2964704853035845, + "content_hash": "eb091e5f20cb90d597e65185bb320e8b0af5232bcb042b5298421b6f170d3d8b" + }, + { + "id": 2793025860145221, + "content_hash": "29b411595b75b729405925b99a5a617ee16d48afe10deb0f97a3e56e3ac018e0" + }, + { + "id": 2793025860636741, + "content_hash": "3056c631707f0bd0cfedb0a9c1ef51b2df43e924063b177df1ff6248d7c688a7" + }, + { + "id": 2793025861128261, + "content_hash": "4e10e8e45a3ddda8536eea533045ba56812c29554a4c985deed73ccbb49327e8" + }, + { + "id": 2793025861308485, + "content_hash": "ffa97a56bb1c8168558d2669df2cf335a6e862d6f870728c95097488aefcd729" + }, + { + "id": 2793025861505093, + "content_hash": "314673b3d453f3cab58bd2bdd0a38f80cf25b924e95c9778064cf9dec685193d" + }, + { + "id": 2793025861685317, + "content_hash": "50feb875844c3befa2f145b3c0d2977efb25d8b7224ef2dea9dca2d9076afdd3" + }, + { + "id": 2793025861849157, + "content_hash": "b3355017919980f2b7363d8654afc4419f603e752b0c049e89b00b44a44181e0" + }, + { + "id": 2793025862078533, + "content_hash": "c8f0e6b7527b50278d66f8a72420259628cbef21a227f9f2683addcb1b9bfe1b" + }, + { + "id": 2793025862258757, + "content_hash": "3405caae57ff0edf233856a751753ebdd3134613b2e63baadcc97067fed34537" + }, + { + "id": 2793025862438981, + "content_hash": "cb3b5baccea0a0e2d36199b7a2dc3645a2a0b8231db22b73286b4eb1f4b69878" + }, + { + "id": 2793025862619205, + "content_hash": "d0a9af8ee2fc7a1c06b5245def49eb5dde07e3a3f30194ed23b1654fb43b4cc8" + }, + { + "id": 2793025862799429, + "content_hash": "5bd0071c6afa3149b13c10698ecfafb2e3986bdcc3e8ceb0685cc85553e99138" + }, + { + "id": 2793025862963269, + "content_hash": "bb89b4dd3e1557d5ccd5c8dad42201f4399369ccb1277476ac1933ea34765e07" + }, + { + "id": 2793025863127109, + "content_hash": "0754d6ec59da19288e2666f1c4f820af8a8a79a6c930eb3430b50ba9d7339900" + }, + { + "id": 2793025863290949, + "content_hash": "a88508f2f5ab8e27e9ad8c27ab0b5989793f03065411b6fd672f95bfc5097417" + }, + { + "id": 2793025863503941, + "content_hash": "266985e9ecbbe45626e2d91f973ec9aac4b2020ba1485729fb024d40e900fcb9" + }, + { + "id": 2994236295696133, + "content_hash": "e6caf73b9359ebfab810e4496c4ae784e9b4c1f3e93ca36949b6d93e3ff1e3ca" + }, + { + "id": 2796105365261765, + "content_hash": "1407bbea6e906ea0a59e28f6256d539550c76b20f388dd2bb5121824ad74ab66" + }, + { + "id": 2796105365441989, + "content_hash": "94e82758e63b658eb7669e84fa8b91bb8fa73eb85dd88cc4ff3c43742036b04d" + }, + { + "id": 2793025853034565, + "content_hash": "1737519a1f3f64947c95fc7861f139a253379760756ea14878ca55d5cdbc8934" + }, + { + "id": 2793025855000645, + "content_hash": "7cf1f9ec07b70ebd232b9ae03c1d120ba513e4875a23bb5d54dcfae1cdfdf7e5" + }, + { + "id": 2793025855492165, + "content_hash": "c88568a65bb3681b1dc59aac1b600869eb43946c8daeb40d6ec7a683e8fb36d2" + }, + { + "id": 2793025857900613, + "content_hash": "1eec420c252f4790d2d59e42a19a3fc3b8a29e0273eb0da5bc4080266037d2ee" + }, + { + "id": 2793025845399621, + "content_hash": "a5d8c911a343ff06a4aec09177e70d0c8e95bca99a3dbb60c3698ce8c642ba70" + }, + { + "id": 2793025846464581, + "content_hash": "f6af93a7072201dd2ffce05971fcd2dc0677732cb86370aa1e22ce904091a36c" + }, + { + "id": 2793025846939717, + "content_hash": "5dd976075ade9e8dbb0e486854d8e54330a0713f56546a60f3274aed488ab62f" + }, + { + "id": 2793025847431237, + "content_hash": "c6f764730af836f43f8e00dff19352f4a40da09a6a3846148abbba9b5019b5bf" + }, + { + "id": 2793025847595077, + "content_hash": "4744c615cdde3e37c96cf9c0fe7b7db04654f5c50e42f86e26dc201e5641f4b1" + }, + { + "id": 2793025848102981, + "content_hash": "da1edce4539bd68da501ec659d2a25d57ea7fa104a76e86b11614d8acb6b76c4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1757, + "records_with_pk": 1757, + "missing": 29, + "missing_samples": [ + { + "id": 3073871312815685 + }, + { + "id": 3073869498222213 + }, + { + "id": 3073751214392709 + }, + { + "id": 3073750324758149 + }, + { + "id": 3073734143411781 + }, + { + "id": 3072792115840581 + }, + { + "id": 3072786617042565 + }, + { + "id": 3072782525613445 + }, + { + "id": 3072782525564293 + }, + { + "id": 3072782525515141 + }, + { + "id": 3072748096325189 + }, + { + "id": 3072705244628613 + }, + { + "id": 3072705244595845 + }, + { + "id": 3072672977225285 + }, + { + "id": 3072639801509317 + }, + { + "id": 3072526135870853 + }, + { + "id": 3072489930671749 + }, + { + "id": 3072398679262661 + }, + { + "id": 3072332757337477 + }, + { + "id": 3072296789329285 + }, + { + "id": 3072272556541317 + }, + { + "id": 3072162523006597 + }, + { + "id": 3071358042523589 + }, + { + "id": 3071351518840773 + }, + { + "id": 3071287356163973 + }, + { + "id": 3071287356114821 + }, + { + "id": 3071254451128133 + }, + { + "id": 3071238592612357 + }, + { + "id": 3071205163140997 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 1, + "missing_samples": [ + { + "id": 3073781669250565 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2792158276915077, + "content_hash": "0e08e17753682b2006cfa00bc9034c654c0b3bcce4159d3b19248dc602456279" + }, + { + "id": 2792184155312005, + "content_hash": "6203aab83bf4ecfe9ea537fd68a7a1ca6a65df3a0e19e554aa612c7b6d29b5b6" + }, + { + "id": 2964701792325061, + "content_hash": "692c453e18efe852676f552cfc14beab407b6dbaf335aa34a3190b62fbbdbfbe" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 1011, + "total_mismatch": 46241, + "total_errors": 0, + "generated_at": "2026-01-30T21:53:09.626511+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23609, + "diff": -243 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2889, + "diff": -40 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 334347.43, + "diff": -4742.989999999991 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 99, + "diff": -1 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4802, + "diff": -57 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11589, + "diff": -162 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17138, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 460, + "diff": -5 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -975, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-30T21:53:32.267676+08:00" + } + ], + "api_to_ods": { + "total_missing": 1011, + "total_mismatch": 46241, + "total_errors": 0 + }, + "total_missing": 1011, + "total_mismatch": 46241, + "total_errors": 0, + "generated_at": "2026-01-30T21:53:32.267703+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_060115.json b/etl_billiards/reports/data_integrity_window_20260131_060115.json new file mode 100644 index 0000000..a6d7220 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_060115.json @@ -0,0 +1,2226 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 1414, + "mismatch_samples": [ + { + "id": 3049693993911621, + "content_hash": "9f772f6b67992140c11a3edfd4280daf41943b81deee248567e57eef496b677a" + }, + { + "id": 3049687290709893, + "content_hash": "8184f3c5939bac17cc1ca3c7bab38e9d41845a02f7c35254751af88c1732f798" + }, + { + "id": 3049677155829061, + "content_hash": "0f3f46d2fe7bc58599b820f185d9427ef3ac5bb33ee6d48069663891d2226bd1" + }, + { + "id": 3049675185374533, + "content_hash": "008bb915b905c95a4450199feaacc7d42522e4d56eae17696e96d94d34a3ddc0" + }, + { + "id": 3049667688630149, + "content_hash": "3ab493d8f6e5f303f271f6d861a13efa79769984e42fd68cd532c594b85c7920" + }, + { + "id": 3049666963637573, + "content_hash": "252cd7ace58aa07331331b52832fe56a5f444ba664cad0950d6d8af6b10807ac" + }, + { + "id": 3049659193771333, + "content_hash": "b8da694790a7d29a6a366cde1dc48cb5432debda36d978c7137a4138ac2eb67e" + }, + { + "id": 3049652151338309, + "content_hash": "cd81f391cf96431eb7680e08c3ead92d4fe09f4dfef15c100704c5aa58836ede" + }, + { + "id": 3049651460162885, + "content_hash": "ad9968864c822f87790c548162a318ed676b5768195d106911621d03f4dad87c" + }, + { + "id": 3049650087413637, + "content_hash": "613c5a822e133cf0841b893ae00699cdaee11a05ec79dfddf7619198f82abe3f" + }, + { + "id": 3049648237200709, + "content_hash": "d900582e6c326729dab1400a7fb6524f547291904e8d50926148f4a1f9e06481" + }, + { + "id": 3049643525916357, + "content_hash": "3884a413e857cb9ef4acbf2aa1851ab510b0f25c7c4bc1148df45425b59f5d7e" + }, + { + "id": 3049641004762821, + "content_hash": "ed493cbfd955d6c94af43baddd92dcc1b23c29f760a9ace8e84bcea69fa098c0" + }, + { + "id": 3049630673766149, + "content_hash": "6dfb5ebb77b3ddc150e4dfc3ad5bdbabd66b48276fa11b049a87adbe93ddf16a" + }, + { + "id": 3049624218273669, + "content_hash": "3dea2089a02bd2452e1ffd962be3140db095412365e9d828b80abe3a7d77f101" + }, + { + "id": 3049616331622277, + "content_hash": "6b3fc091c526c98098b01dba9da6988fff2fc971382f21b5a0b20878301851f3" + }, + { + "id": 3049611097736901, + "content_hash": "95710f0b572ed137621eb1aca919bb975c4ae3c34a74e53b6c08fdf6c6d237e4" + }, + { + "id": 3049610645292741, + "content_hash": "b40ecd1415b8f8bf47ff14f5125219d674cc18c90287590e2ff11bcdf4cca481" + }, + { + "id": 3049609302263685, + "content_hash": "c5ad8c316857bbea598641392514dedf8a77d7f0d03d342fb404726803dfae33" + }, + { + "id": 3049604443588485, + "content_hash": "f70cec0f75df0e066bced00870ee0b0bc4a9f38c2e323b2cb097cfcf99c3ab8e" + }, + { + "id": 3049585745823493, + "content_hash": "b076d76ec229408c8ed5b80b166f9f367706c19465d7122178d70773cb2856bb" + }, + { + "id": 3049577520187141, + "content_hash": "151a87959c8d7f491936405de9ec17901b10537cafd45d1aeeeab274805ede88" + }, + { + "id": 3049572749264773, + "content_hash": "bc27c5a83bfc85b5600d938a94b6c4ca365cba5f6a721c5a0f718a1094d782cb" + }, + { + "id": 3049570033305349, + "content_hash": "ff62cd72a46cfa2d63a604623246de7086dc4e52df3bf8eb959dfa17bccc58a6" + }, + { + "id": 3049564231485189, + "content_hash": "5b7a6bac1199df4d095e107e93042ae741192efa826c8dee6370e2e41bd05a02" + }, + { + "id": 3049556197147973, + "content_hash": "f46ccebbf9343ca244caef29557e2e94d624422fab224e8a1e527b75f49b3b40" + }, + { + "id": 3049555436045637, + "content_hash": "e4b208436d0450fef16f7f348702602ce94a4d537399852e28d6e8e0b1a77356" + }, + { + "id": 3049525102298437, + "content_hash": "e029fd231746cbc833e3e1802e9776a89e47022c685f4744d001ddee94c2fc56" + }, + { + "id": 3049505399539461, + "content_hash": "f24d1429bf16c65bcf54a89841e60de5d76e85cc297960da2e40e0f89091b485" + }, + { + "id": 3049489313564421, + "content_hash": "bf028f166f7016c79716874bf63d8e803c3657bb8bfe482a2c38247635d8c537" + }, + { + "id": 3049480004437765, + "content_hash": "99dc95af93980d6cc2cbda0da7aaead3659ac40cc1581c3f8eee87fcc5418669" + }, + { + "id": 3049444425041669, + "content_hash": "af1df14fb6715e8cd22b427d1229051616be3ef457cdda242b78c5050933faf1" + }, + { + "id": 3049435269187333, + "content_hash": "10bdf29c85c7cb4ef888f86a71949e29c3ce713a68075be26f9442d85ff5f9eb" + }, + { + "id": 3049409664124229, + "content_hash": "ed5116f2ad3b2777a9d512762f8e35ac6ba66070fe05de831e80702868d0a921" + }, + { + "id": 3049376012338885, + "content_hash": "60e5336194019bd96bbb6ab52089955ac5bd21addf8bc85b00b6f3da0994d0ef" + }, + { + "id": 3049350366070085, + "content_hash": "a2fed47f7f10ff89090da0ee99ffb54171a6cc0c85f59dc193cf8c7d69048e0f" + }, + { + "id": 3049316448290117, + "content_hash": "662679c4bce27211bd86afe1bb77288b57cfc0270d23dbce907d2ae61254fdce" + }, + { + "id": 3049314064533253, + "content_hash": "0828ce614791e159be4a156d8e8c3b218c7dbdf1f3b0c021bf02c9ba4ce6a058" + }, + { + "id": 3049310935221957, + "content_hash": "b737bf9195579231d9ded3391f87541c09c18d0244b61a3a93ca6062f89b1813" + }, + { + "id": 3048861492757829, + "content_hash": "63352d296478a6bbe733a9d964c4387dcd8d70cfc6215fc7a154a8e4321441ab" + }, + { + "id": 3048840159921477, + "content_hash": "1f5cd39953ed5660d8481e112e8eedc6d498d793738bda206dd9819af4b3acd7" + }, + { + "id": 3048839651444613, + "content_hash": "c907465b29f37a9f77c3855bf5294eae62488d3b5981b6f7b7df73f4554083c1" + }, + { + "id": 3048760090445701, + "content_hash": "cf6a6b582d379eaf2f995734bbe2dc98761c3141240645ae60266787ade7114b" + }, + { + "id": 3048755614156485, + "content_hash": "d3534c26f95d6aca9b445b47ea8c62cadd8b756ce4a471ac462d5471fefd5ae4" + }, + { + "id": 3048747724457285, + "content_hash": "374b83cee63f0ff4eecec744e1a3403b1c5026d0cc195c98a7573945e873841f" + }, + { + "id": 3048744895448965, + "content_hash": "497c9cee85f5a8e5692baa06fbf9988d6e425768c65ddf0265d889e9beaaa6e4" + }, + { + "id": 3048738683684613, + "content_hash": "b13776a1fa555a23477aa4cbb35e196c6cc93b5b6d3aa1ff5d2b7ef429cf93a7" + }, + { + "id": 3048699584055045, + "content_hash": "d045c0d63bfc2386b4e8bc1589d57fb93ee31f1d9abaaa71a074ea228a362941" + }, + { + "id": 3048697132844805, + "content_hash": "03fa89e4812877afea0015d0b09fe5caae8025d40ff1a78cbca38a5b74483b86" + }, + { + "id": 3048672071059205, + "content_hash": "6cff23966cc3356a2f486777f8d1b29d280c4ce98312c78314a798ad2e38b2e9" + } + ], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10104, + "records_with_pk": 10104, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11908, + "records_with_pk": 11908, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17277, + "records_with_pk": 17277, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8230, + "records_with_pk": 8230, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "sitegoodsid": 2794695801917573, + "content_hash": "3a668d320cf4ff80b913277ddcd574cbd97cd6cbf59bfa3435253c92a6b52508" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2794695801917573, + "content_hash": "e274058282aaec4d786710db076b6225620fc74de08763643510828c34a485a2" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 0, + "total_mismatch": 1416, + "total_errors": 0, + "generated_at": "2026-01-31T05:40:58.602950+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 348842.08, + "diff": -19237.640000000014 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11735, + "diff": -308 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17277, + "diff": -300 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1639, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-31T05:41:18.992643+08:00" + } + ], + "api_to_ods": { + "total_missing": 0, + "total_mismatch": 1416, + "total_errors": 0 + }, + "total_missing": 0, + "total_mismatch": 1416, + "total_errors": 0, + "generated_at": "2026-01-31T05:41:18.992668+08:00", + "backfill_result": { + "total_missing": 190, + "total_mismatch": 1416, + "backfilled": 1416, + "errors": 0, + "details": [ + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 10, + "mismatch": 1414, + "backfilled": 1414, + "error": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 0, + "mismatch": 1, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 179, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 0, + "mismatch": 1, + "backfilled": 1, + "error": null + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10104, + "records_with_pk": 10104, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11908, + "records_with_pk": 11908, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17277, + "records_with_pk": 17277, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8230, + "records_with_pk": 8230, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 0, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T06:00:58.194488+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 348842.08, + "diff": -19237.640000000014 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11735, + "diff": -308 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17277, + "diff": -300 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "mismatch_error": "join_keys_or_compare_cols_unavailable" + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": null, + "count": { + "dwd": null, + "ods": null, + "diff": null + }, + "amounts": [], + "mismatch": null, + "mismatch_samples": [], + "error": "AttributeError: 'tuple' object has no attribute 'items'" + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1639, + "total_mismatch": 118581 + }, + "generated_at": "2026-01-31T06:01:15.314372+08:00" + } + ], + "api_to_ods": { + "total_missing": 0, + "total_mismatch": 0, + "total_errors": 0 + }, + "total_missing": 0, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T06:01:15.314392+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_152947.json b/etl_billiards/reports/data_integrity_window_20260131_152947.json new file mode 100644 index 0000000..d2ada15 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_152947.json @@ -0,0 +1,5096 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 4, + "mismatch_samples": [ + { + "id": 2964641017858885, + "content_hash": "55251f1c064490e4df5c6e9372f1030f9fe581741a0a04b3751d326be0eac543" + }, + { + "id": 2840060593686213, + "content_hash": "5abe7668d9a948550c344e241c2377f9720d88c678c6254490ba8b73e06075bf" + }, + { + "id": 2964641017858885, + "content_hash": "55251f1c064490e4df5c6e9372f1030f9fe581741a0a04b3751d326be0eac543" + }, + { + "id": 2840060593686213, + "content_hash": "5abe7668d9a948550c344e241c2377f9720d88c678c6254490ba8b73e06075bf" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10113, + "records_with_pk": 10113, + "missing": 9, + "missing_samples": [ + { + "id": 3074921055176133 + }, + { + "id": 3074921009530309 + }, + { + "id": 3074800136619461 + }, + { + "id": 3074781050160709 + }, + { + "id": 3074734394934917 + }, + { + "id": 3074721507706245 + }, + { + "id": 3074710282045061 + }, + { + "id": 3074705226433989 + }, + { + "id": 3074592488064645 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11921, + "records_with_pk": 11921, + "missing": 13, + "missing_samples": [ + { + "id": 3074921052964293 + }, + { + "id": 3074921007203781 + }, + { + "id": 3074800133916101 + }, + { + "id": 3074781047735877 + }, + { + "id": 3074735906866821 + }, + { + "id": 3074734392673925 + }, + { + "id": 3074721505232261 + }, + { + "id": 3074710279456389 + }, + { + "id": 3074705223943621 + }, + { + "id": 3074662074435013 + }, + { + "id": 3074661645632965 + }, + { + "id": 3074622123148741 + }, + { + "id": 3074592485000837 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17296, + "records_with_pk": 17296, + "missing": 19, + "missing_samples": [ + { + "id": 3074935057892997 + }, + { + "id": 3074933005518469 + }, + { + "id": 3074927444641349 + }, + { + "id": 3074886901974469 + }, + { + "id": 3074886061901381 + }, + { + "id": 3074883756164549 + }, + { + "id": 3074882066466373 + }, + { + "id": 3074861245924741 + }, + { + "id": 3074857388787141 + }, + { + "id": 3074849326073413 + }, + { + "id": 3074820918920645 + }, + { + "id": 3074820596630917 + }, + { + "id": 3074721237648965 + }, + { + "id": 3074680147822022 + }, + { + "id": 3074680147822021 + }, + { + "id": 3074662488163717 + }, + { + "id": 3074649540986437 + }, + { + "id": 3074641773200837 + }, + { + "id": 3074617428313477 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8239, + "records_with_pk": 8239, + "missing": 9, + "missing_samples": [ + { + "id": 3074921055815109 + }, + { + "id": 3074921010185669 + }, + { + "id": 3074800137323973 + }, + { + "id": 3074800137323974 + }, + { + "id": 3074781050668613 + }, + { + "id": 3074734395541125 + }, + { + "id": 3074721508312453 + }, + { + "id": 3074710282618501 + }, + { + "id": 3074705227072965 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "sitegoodsid": 2794695801753733, + "content_hash": "e6292c58f9f3002b9f1338b06c0738267c2828569f4f1757a97543d74adb80a0" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "412887a36150840efd002c7effb93a32882c7695c75187391f6c4c19424a5e1a" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "d928c581c6f01b8cea1f655ad31d06cdecc84eef2bfd920a793b4c12939b5054" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "fac793789fc824c56cd6673054fc072a3f165260678b03e3f05563c4bef5e557" + }, + { + "sitegoodsid": 2793026184106053, + "content_hash": "0c89986cb4211d0a7d0033400200a5ea95bb7cabd9ef9ce7b56c9ab8d6e05f35" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "0de10b2b6563a4cc4652eb45b59bdcbcb11f84654b8426654c90fb791351cfb9" + }, + { + "sitegoodsid": 2793026177978437, + "content_hash": "a5604e163de0cd60b266f7012c5f9143a60ac4555171ed520cac1ffe2ec53245" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "0695730630996edca24100bd591d549ca1fb33d486585ffebcdd2e26d269a1e5" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "28a2592917aacad1afd5d04e09f2a973f996d2894fd10810cc7df458060e0036" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "3e3a6c197b6f9ba9a7a4f6a402e44d616bec363d89824b051dcde5f7fd4c589a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 15, + "mismatch_samples": [ + { + "id": 2792521437958213, + "content_hash": "1de5ce4365cb91e51fad836863667eaa68aed63fd8b8b5e07958a0c841497b94" + }, + { + "id": 2793001695301765, + "content_hash": "fd82698b070dccd1267911a791e0a3f4d9fe30fb5ed690a2ec4eafe0e4d1639a" + }, + { + "id": 2793001904918661, + "content_hash": "1f6ed7f918f6f11ef1b47ed747ee7aef60a604b4e643fcc60c1056e3b46e4350" + }, + { + "id": 2793002509209733, + "content_hash": "37ce3499ab9e6a117de14f4cb3b516c4093cce186cb94fb6aeee39a983c3ee01" + }, + { + "id": 2793002673295493, + "content_hash": "bcb9a2172c611e3acea2335e1e760403e2626f4440fa8c81a951d225933b9947" + }, + { + "id": 2793002808987781, + "content_hash": "2e5b9551c1d20c4cee850c304c13add467d2815a63e634489aa5a051eb3278c6" + }, + { + "id": 2793002896494725, + "content_hash": "02e49d236797178e755fe3ccbc9d4df27bdf5990af774b82c4c476acaba4fe1b" + }, + { + "id": 2793002980429893, + "content_hash": "aff9d450775242562d6e05459d5e7ea4ed5a69a0f8545554c61bdbe9b066b618" + }, + { + "id": 2793003618340933, + "content_hash": "f851713ddeb6cd039472d8b749efe3b93466c7f49942fd3c7d05ecdff10ca6c4" + }, + { + "id": 2793010820304965, + "content_hash": "e8b56f42fcd494101f74dae4b869ffa4e4dcd1b3a27c27f1114cbcf62ab9d881" + }, + { + "id": 2793018776604805, + "content_hash": "4fb6be34266282c8ddc39aca8fec6f4c1531f8cd617a5138e6018592878be7f7" + }, + { + "id": 2793020259946565, + "content_hash": "a38302b9d2fa79385df109ad816d136f23c33d85ef112d047ca2148c1e0bf4b9" + }, + { + "id": 2793020259995717, + "content_hash": "21481668295c2ade890a1dae6a4bf898dc3d0786e1a9fc433773d588ab7c95f0" + }, + { + "id": 2793020260044869, + "content_hash": "013ba734041722c2aae0bd7828321e836f52f4ca4f6cc71fdd1b8358a4311743" + }, + { + "id": 2793023960682565, + "content_hash": "215667198e8cc44bd4b9fc05f6a2e3ad5ba34f76e7254ffe0ccf28de5d383022" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 94, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "8516b68e2d3ae148bc2473a1dad4d62f5601d96e7d83a26f177e0aa7b0204407" + }, + { + "id": 2793025849102405, + "content_hash": "f768fd84e921a2162fb50d504896652fc308a2afeb7521a994b0f109d112ad42" + }, + { + "id": 2793025851560005, + "content_hash": "d1af625af6c4f57fa09812929a0136a87ac53a8df224a386fb9d022de8ef1d9f" + }, + { + "id": 2793025845825605, + "content_hash": "7444e15d0c68fe1cd31a8cd604ddaa1a372838bb02c1aa6ffc62447874899c87" + }, + { + "id": 2793025849593925, + "content_hash": "503506bfda345d5adad5d33aaf39e61fba109072f1fb118b1d074d5a65ad2d3f" + }, + { + "id": 2794695802065029, + "content_hash": "b4d021e62ffb8619e5f48f3b704946e5960aef8bd5c81d37e465c24c87a80efd" + }, + { + "id": 2794695800934533, + "content_hash": "00470e47c985242043a1719bd65d74df45929f8b5dba77511ae46bf9dd2afb49" + }, + { + "id": 2794695801409669, + "content_hash": "6d2f8e68edf1654f1bb0a13ffb940f41688709620034cea41de38789929c7939" + }, + { + "id": 2794695801589893, + "content_hash": "0c8e6c154a60811ba2dfa040471763a02dc4ba72cb73e303eae08105ff219446" + }, + { + "id": 2794695801753733, + "content_hash": "6e287a0f69d5b9e068a8f7274548240a9a944a0e9f140a79836c59b6ceaebfe2" + }, + { + "id": 2794695801917573, + "content_hash": "14df792faf0ac49a13e394509b4b79f951d3973bed8fb8e7145a954082807473" + }, + { + "id": 2802099478416453, + "content_hash": "712464af3683e5cabd3e20af765d744d6a5c2b4ecdd76c98ae8eb678b0ea0b44" + }, + { + "id": 2828836772432837, + "content_hash": "7d73f1fcd4f0effde989876ede4efdd55e352cb7138521e1ff2eea58bde2178f" + }, + { + "id": 2878393200266693, + "content_hash": "4f594897add82bc76e29d23ce0458b254b9fa8f7a2bb750cd085ae3a7bd2632f" + }, + { + "id": 2915208915865285, + "content_hash": "97df187b5111ea8a336c9cadec1cee04c5c5fe39ae94ca68a0e585d05e713e3f" + }, + { + "id": 2964704853035845, + "content_hash": "84671fbf14f3760eddc0b6747b4f1b882aa4eda38c80afac64399da5e7a2749b" + }, + { + "id": 2793025860145221, + "content_hash": "27fd12667052a6fc50c51bcf62fc170e91060bdf5d19b080b3c06d36b622e1c9" + }, + { + "id": 2793025860636741, + "content_hash": "1f2b200b8498530d73bee8438b03b566b65dce127cc831033899a110cf01894e" + }, + { + "id": 2793025861128261, + "content_hash": "7ea35a6be10fd093a025ccb943507d4ff7bc910893aab9e1b5e9acaad31b771c" + }, + { + "id": 2793025861308485, + "content_hash": "a35b216899374267d5cfec8ecf6ff3652423e1a5c8a7ac77614235d7c91fc3ad" + }, + { + "id": 2793025861505093, + "content_hash": "624d9301bb41bbed835b23c3976258cdd476164242e4dcdc5b61ca83c71063ef" + }, + { + "id": 2793025861685317, + "content_hash": "f603a5313efc0364e6d5ef1ce43cf70357b834d4763466b3b72335f4b4101fc8" + }, + { + "id": 2793025861849157, + "content_hash": "1c5fd5fff24bc8f70db2738f782275c1b56ed891cfe59f33d7c79b365beb9f45" + }, + { + "id": 2793025862258757, + "content_hash": "2c3b3ababc0ec743c09fe9bbcfd3505744135c15cb0a0738603baab60335fb4d" + }, + { + "id": 2793025862438981, + "content_hash": "2cac194aa7b41df3d177244de2305cbd3f8ff68d31cf6567ad4a2d357165b4ab" + }, + { + "id": 2793025862619205, + "content_hash": "131cc4fe2df5edf36e3442291e7441f5844629dfdc608d203c7270a8334f6deb" + }, + { + "id": 2793025862799429, + "content_hash": "3a6bcf4595db11b09cde36c6696bbd3fe6ff326e37595796438a376a43ee3d1f" + }, + { + "id": 2793025862963269, + "content_hash": "688d5538ca6572b2fabf1ca723a7ecb227600200ed81f8ef4b41c2a8a8db0f94" + }, + { + "id": 2793025863127109, + "content_hash": "93fb0e552f10dfba50a85709955c16841c46c029931336d630db511f9a43ef51" + }, + { + "id": 2793025863290949, + "content_hash": "e4177cb7b75a467dd05935b74b9d474d4e0320ce25819f31bdb54e0666dda0b5" + }, + { + "id": 2793025863503941, + "content_hash": "a5c911b9996fc7d74a2259282879f5d337627450529894db48d7eb24ab8be45a" + }, + { + "id": 2994236295696133, + "content_hash": "9b2a1001e21c68c42376a4f682ee110b0a1b6454f5395c31a1d3b32ecd97db9e" + }, + { + "id": 2793025845399621, + "content_hash": "f5b7e53d29bed333a380749f3d9def559ac9b66ad8916769ae978cae01bd38eb" + }, + { + "id": 2793025846464581, + "content_hash": "e2587eb22cd7bc0191d543c364d260ed445a6044b40ce9dfcab6aa45b27f9dd8" + }, + { + "id": 2793025847595077, + "content_hash": "9012e1f92f9c75ce4482fa5ee346e0ca78bf8396b4c4976bd7993d53b9cd7cdd" + }, + { + "id": 2793025848102981, + "content_hash": "52cd24ea74ace8b2828e989ec499e422f0fb4f30ace71c2600ad27d8c6dcfdc2" + }, + { + "id": 2793025848610885, + "content_hash": "8dad9506c59833e5c24ddeb2cb049c687541e0f9dd92a1a4b7e0fd5ef222e961" + }, + { + "id": 2793025850576965, + "content_hash": "4737825b5132714070dd3ecd5c44ce64b1488751cf50a0df21b8d5719ee11fa2" + }, + { + "id": 2793025851068485, + "content_hash": "d192739f459b99e1d4c3afcea30fa317eae1d16e2871f4e96cc4983f8395781f" + }, + { + "id": 2793026186891333, + "content_hash": "2779a920aa072ebd5f1437ea3d7cb27a7b2e30eb90a928118e4e340885e3a1b8" + }, + { + "id": 2793026187071557, + "content_hash": "198fc781ba14da0ad4918e95385a1b3759319ac2f32d6bdda686ec5a7936d610" + }, + { + "id": 2793026187235397, + "content_hash": "ec356f6b8180418d69f2e91c4e9f186123111e662423aa02fb0955d053a35d81" + }, + { + "id": 2793026187563077, + "content_hash": "39b56b575c3f828aa711817f92eb1c25a19a4728ab21a1c9065f2969694a2e75" + }, + { + "id": 2793026187726917, + "content_hash": "60886a45b9d417618134e668f1ccf05f4f2ba3c47a4a5200031c8bd8da8abfb6" + }, + { + "id": 2793026188415045, + "content_hash": "82af2c119873d178817fc83780e6f0215b6eb21ee0463afe46366c9e4f78d012" + }, + { + "id": 2793026188578885, + "content_hash": "0afae0dac3ca72cc7b3f0242fd53650b2cee1d41b9613cb8ec07b81548896774" + }, + { + "id": 2793026432258181, + "content_hash": "f8ca5e0913138d9817449cf7e66b10df4921e0e36a2a6a8b0c2614d92f501d15" + }, + { + "id": 2793026432585861, + "content_hash": "c8efe3eeaac321112394e61513f47390e497dc639697ad575537dcc98ba21d60" + }, + { + "id": 2793026432733317, + "content_hash": "e4e4534f0f2ac3f5c61952c918add6a71b1f52e004ed3f179e089d1051ca0ca4" + }, + { + "id": 2793026432913541, + "content_hash": "68419133ce0760497037dfa4b601cbc34e3407d16d0af09720ff9746adbeb9ce" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 50, + "total_mismatch": 123, + "total_errors": 0, + "generated_at": "2026-01-31T15:29:34.957954+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18386, + "ods": 18708, + "diff": -322 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 320457.52, + "ods_sum": 326106.36, + "diff": -5648.839999999967 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 953399.57, + "ods_sum": 968916.63, + "diff": -15517.060000000056 + }, + { + "column": "ledger_amount", + "dwd_sum": 2108632.9, + "ods_sum": 2148028.49, + "diff": -39395.59000000032 + }, + { + "column": "member_discount_amount", + "dwd_sum": 191271.49, + "ods_sum": 193226.5, + "diff": -1955.0100000000093 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 840241.18, + "ods_sum": 766441.38, + "diff": 73799.80000000005 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18859, + "diff": -473 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 348842.08, + "diff": -19237.640000000014 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1566827.35, + "ods_sum": 1587425.57, + "diff": -20598.219999999972 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 98, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [], + "mismatch": 4745, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11420, + "ods": 11657, + "diff": -237 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 727858.0, + "ods_sum": 744680.0, + "diff": -16822.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 697893.15, + "ods_sum": 713746.21, + "diff": -15853.05999999994 + } + ], + "mismatch": 11420, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11735, + "diff": -308 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 16977, + "ods": 17202, + "diff": -225 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1100508.0, + "ods_sum": 1116330.0, + "diff": -15822.0 + } + ], + "mismatch": 16977, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17277, + "diff": -300 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046093275432261, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046020658824901, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3045263163688838, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3044610245412613, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034614115748677, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3034554425363589, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034509612305541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3032781041831045, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 22949, + "ods": 23306, + "diff": -357 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2240475.0, + "ods_sum": 2278578.0, + "diff": -38103.0 + } + ], + "mismatch": 22949, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -3471, + "total_mismatch": 126647 + }, + "generated_at": "2026-01-31T15:29:47.116501+08:00" + } + ], + "api_to_ods": { + "total_missing": 50, + "total_mismatch": 123, + "total_errors": 0 + }, + "total_missing": 50, + "total_mismatch": 123, + "total_errors": 0, + "generated_at": "2026-01-31T15:29:47.116526+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_160043.json b/etl_billiards/reports/data_integrity_window_20260131_160043.json new file mode 100644 index 0000000..506d75c --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_160043.json @@ -0,0 +1,9874 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 4, + "mismatch_samples": [ + { + "id": 2964641017858885, + "content_hash": "55251f1c064490e4df5c6e9372f1030f9fe581741a0a04b3751d326be0eac543" + }, + { + "id": 2840060593686213, + "content_hash": "5abe7668d9a948550c344e241c2377f9720d88c678c6254490ba8b73e06075bf" + }, + { + "id": 2964641017858885, + "content_hash": "55251f1c064490e4df5c6e9372f1030f9fe581741a0a04b3751d326be0eac543" + }, + { + "id": 2840060593686213, + "content_hash": "5abe7668d9a948550c344e241c2377f9720d88c678c6254490ba8b73e06075bf" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10115, + "records_with_pk": 10115, + "missing": 11, + "missing_samples": [ + { + "id": 3074941132965253 + }, + { + "id": 3074940919760517 + }, + { + "id": 3074921055176133 + }, + { + "id": 3074921009530309 + }, + { + "id": 3074800136619461 + }, + { + "id": 3074781050160709 + }, + { + "id": 3074734394934917 + }, + { + "id": 3074721507706245 + }, + { + "id": 3074710282045061 + }, + { + "id": 3074705226433989 + }, + { + "id": 3074592488064645 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11923, + "records_with_pk": 11923, + "missing": 15, + "missing_samples": [ + { + "id": 3074941130687877 + }, + { + "id": 3074940917565061 + }, + { + "id": 3074921052964293 + }, + { + "id": 3074921007203781 + }, + { + "id": 3074800133916101 + }, + { + "id": 3074781047735877 + }, + { + "id": 3074735906866821 + }, + { + "id": 3074734392673925 + }, + { + "id": 3074721505232261 + }, + { + "id": 3074710279456389 + }, + { + "id": 3074705223943621 + }, + { + "id": 3074662074435013 + }, + { + "id": 3074661645632965 + }, + { + "id": 3074622123148741 + }, + { + "id": 3074592485000837 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17298, + "records_with_pk": 17298, + "missing": 20, + "missing_samples": [ + { + "id": 3074939274544773 + }, + { + "id": 3074935057892997 + }, + { + "id": 3074933005518469 + }, + { + "id": 3074927444641349 + }, + { + "id": 3074886901974469 + }, + { + "id": 3074886061901381 + }, + { + "id": 3074883756164549 + }, + { + "id": 3074882066466373 + }, + { + "id": 3074861245924741 + }, + { + "id": 3074857388787141 + }, + { + "id": 3074849326073413 + }, + { + "id": 3074820918920645 + }, + { + "id": 3074820596630917 + }, + { + "id": 3074721237648965 + }, + { + "id": 3074680147822022 + }, + { + "id": 3074680147822021 + }, + { + "id": 3074662488163717 + }, + { + "id": 3074649540986437 + }, + { + "id": 3074641773200837 + }, + { + "id": 3074617428313477 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8241, + "records_with_pk": 8241, + "missing": 11, + "missing_samples": [ + { + "id": 3074941133735301 + }, + { + "id": 3074940920530565 + }, + { + "id": 3074921055815109 + }, + { + "id": 3074921010185669 + }, + { + "id": 3074800137323973 + }, + { + "id": 3074800137323974 + }, + { + "id": 3074781050668613 + }, + { + "id": 3074734395541125 + }, + { + "id": 3074721508312453 + }, + { + "id": 3074710282618501 + }, + { + "id": 3074705227072965 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "sitegoodsid": 2794695801753733, + "content_hash": "e6292c58f9f3002b9f1338b06c0738267c2828569f4f1757a97543d74adb80a0" + }, + { + "sitegoodsid": 2793026433405061, + "content_hash": "412887a36150840efd002c7effb93a32882c7695c75187391f6c4c19424a5e1a" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "d928c581c6f01b8cea1f655ad31d06cdecc84eef2bfd920a793b4c12939b5054" + }, + { + "sitegoodsid": 2793026187235397, + "content_hash": "fac793789fc824c56cd6673054fc072a3f165260678b03e3f05563c4bef5e557" + }, + { + "sitegoodsid": 2793026184106053, + "content_hash": "0c89986cb4211d0a7d0033400200a5ea95bb7cabd9ef9ce7b56c9ab8d6e05f35" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "0de10b2b6563a4cc4652eb45b59bdcbcb11f84654b8426654c90fb791351cfb9" + }, + { + "sitegoodsid": 2793026177978437, + "content_hash": "a5604e163de0cd60b266f7012c5f9143a60ac4555171ed520cac1ffe2ec53245" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "0695730630996edca24100bd591d549ca1fb33d486585ffebcdd2e26d269a1e5" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "28a2592917aacad1afd5d04e09f2a973f996d2894fd10810cc7df458060e0036" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "3e3a6c197b6f9ba9a7a4f6a402e44d616bec363d89824b051dcde5f7fd4c589a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 16, + "mismatch_samples": [ + { + "id": 2792521437958213, + "content_hash": "1de5ce4365cb91e51fad836863667eaa68aed63fd8b8b5e07958a0c841497b94" + }, + { + "id": 2793001695301765, + "content_hash": "fd82698b070dccd1267911a791e0a3f4d9fe30fb5ed690a2ec4eafe0e4d1639a" + }, + { + "id": 2793001904918661, + "content_hash": "32987f7df91f0551a67d5c5cb54b349f7e2d31292494e3762bcc8fcd2b577587" + }, + { + "id": 2793002509209733, + "content_hash": "18ea6d2efa4e72c275dba59f030a0f03dab3424c70ef39b69229f5ac6bb213b2" + }, + { + "id": 2793002673295493, + "content_hash": "bcb9a2172c611e3acea2335e1e760403e2626f4440fa8c81a951d225933b9947" + }, + { + "id": 2793002808987781, + "content_hash": "2e5b9551c1d20c4cee850c304c13add467d2815a63e634489aa5a051eb3278c6" + }, + { + "id": 2793002896494725, + "content_hash": "c80024940360b31d98bc766bbec08cd1bcd4a2133863e78f29738ff4f429b64e" + }, + { + "id": 2793002980429893, + "content_hash": "aff9d450775242562d6e05459d5e7ea4ed5a69a0f8545554c61bdbe9b066b618" + }, + { + "id": 2793003066429509, + "content_hash": "8c93462e497b47abcac769649813859fa1da860f9482f0b4780e806cf497b4c5" + }, + { + "id": 2793003618340933, + "content_hash": "f851713ddeb6cd039472d8b749efe3b93466c7f49942fd3c7d05ecdff10ca6c4" + }, + { + "id": 2793010820304965, + "content_hash": "e8b56f42fcd494101f74dae4b869ffa4e4dcd1b3a27c27f1114cbcf62ab9d881" + }, + { + "id": 2793018776604805, + "content_hash": "4fb6be34266282c8ddc39aca8fec6f4c1531f8cd617a5138e6018592878be7f7" + }, + { + "id": 2793020259946565, + "content_hash": "a38302b9d2fa79385df109ad816d136f23c33d85ef112d047ca2148c1e0bf4b9" + }, + { + "id": 2793020259995717, + "content_hash": "437ccea82112d485a492efdb203591d2f66de0fabc3e7d79c7b6effae5bd2eec" + }, + { + "id": 2793020260044869, + "content_hash": "013ba734041722c2aae0bd7828321e836f52f4ca4f6cc71fdd1b8358a4311743" + }, + { + "id": 2793023960682565, + "content_hash": "215667198e8cc44bd4b9fc05f6a2e3ad5ba34f76e7254ffe0ccf28de5d383022" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 94, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "8516b68e2d3ae148bc2473a1dad4d62f5601d96e7d83a26f177e0aa7b0204407" + }, + { + "id": 2793025849102405, + "content_hash": "f768fd84e921a2162fb50d504896652fc308a2afeb7521a994b0f109d112ad42" + }, + { + "id": 2793025851560005, + "content_hash": "d1af625af6c4f57fa09812929a0136a87ac53a8df224a386fb9d022de8ef1d9f" + }, + { + "id": 2793025845825605, + "content_hash": "7444e15d0c68fe1cd31a8cd604ddaa1a372838bb02c1aa6ffc62447874899c87" + }, + { + "id": 2793025849593925, + "content_hash": "503506bfda345d5adad5d33aaf39e61fba109072f1fb118b1d074d5a65ad2d3f" + }, + { + "id": 2794695802065029, + "content_hash": "b4d021e62ffb8619e5f48f3b704946e5960aef8bd5c81d37e465c24c87a80efd" + }, + { + "id": 2794695800934533, + "content_hash": "00470e47c985242043a1719bd65d74df45929f8b5dba77511ae46bf9dd2afb49" + }, + { + "id": 2794695801409669, + "content_hash": "6d2f8e68edf1654f1bb0a13ffb940f41688709620034cea41de38789929c7939" + }, + { + "id": 2794695801589893, + "content_hash": "0c8e6c154a60811ba2dfa040471763a02dc4ba72cb73e303eae08105ff219446" + }, + { + "id": 2794695801753733, + "content_hash": "6e287a0f69d5b9e068a8f7274548240a9a944a0e9f140a79836c59b6ceaebfe2" + }, + { + "id": 2794695801917573, + "content_hash": "14df792faf0ac49a13e394509b4b79f951d3973bed8fb8e7145a954082807473" + }, + { + "id": 2802099478416453, + "content_hash": "712464af3683e5cabd3e20af765d744d6a5c2b4ecdd76c98ae8eb678b0ea0b44" + }, + { + "id": 2828836772432837, + "content_hash": "7d73f1fcd4f0effde989876ede4efdd55e352cb7138521e1ff2eea58bde2178f" + }, + { + "id": 2878393200266693, + "content_hash": "4f594897add82bc76e29d23ce0458b254b9fa8f7a2bb750cd085ae3a7bd2632f" + }, + { + "id": 2915208915865285, + "content_hash": "97df187b5111ea8a336c9cadec1cee04c5c5fe39ae94ca68a0e585d05e713e3f" + }, + { + "id": 2964704853035845, + "content_hash": "84671fbf14f3760eddc0b6747b4f1b882aa4eda38c80afac64399da5e7a2749b" + }, + { + "id": 2793025860145221, + "content_hash": "27fd12667052a6fc50c51bcf62fc170e91060bdf5d19b080b3c06d36b622e1c9" + }, + { + "id": 2793025860636741, + "content_hash": "1f2b200b8498530d73bee8438b03b566b65dce127cc831033899a110cf01894e" + }, + { + "id": 2793025861128261, + "content_hash": "7ea35a6be10fd093a025ccb943507d4ff7bc910893aab9e1b5e9acaad31b771c" + }, + { + "id": 2793025861308485, + "content_hash": "a35b216899374267d5cfec8ecf6ff3652423e1a5c8a7ac77614235d7c91fc3ad" + }, + { + "id": 2793025861505093, + "content_hash": "624d9301bb41bbed835b23c3976258cdd476164242e4dcdc5b61ca83c71063ef" + }, + { + "id": 2793025861685317, + "content_hash": "f603a5313efc0364e6d5ef1ce43cf70357b834d4763466b3b72335f4b4101fc8" + }, + { + "id": 2793025861849157, + "content_hash": "1c5fd5fff24bc8f70db2738f782275c1b56ed891cfe59f33d7c79b365beb9f45" + }, + { + "id": 2793025862258757, + "content_hash": "2c3b3ababc0ec743c09fe9bbcfd3505744135c15cb0a0738603baab60335fb4d" + }, + { + "id": 2793025862438981, + "content_hash": "2cac194aa7b41df3d177244de2305cbd3f8ff68d31cf6567ad4a2d357165b4ab" + }, + { + "id": 2793025862619205, + "content_hash": "131cc4fe2df5edf36e3442291e7441f5844629dfdc608d203c7270a8334f6deb" + }, + { + "id": 2793025862799429, + "content_hash": "3a6bcf4595db11b09cde36c6696bbd3fe6ff326e37595796438a376a43ee3d1f" + }, + { + "id": 2793025862963269, + "content_hash": "688d5538ca6572b2fabf1ca723a7ecb227600200ed81f8ef4b41c2a8a8db0f94" + }, + { + "id": 2793025863127109, + "content_hash": "93fb0e552f10dfba50a85709955c16841c46c029931336d630db511f9a43ef51" + }, + { + "id": 2793025863290949, + "content_hash": "e4177cb7b75a467dd05935b74b9d474d4e0320ce25819f31bdb54e0666dda0b5" + }, + { + "id": 2793025863503941, + "content_hash": "a5c911b9996fc7d74a2259282879f5d337627450529894db48d7eb24ab8be45a" + }, + { + "id": 2994236295696133, + "content_hash": "9b2a1001e21c68c42376a4f682ee110b0a1b6454f5395c31a1d3b32ecd97db9e" + }, + { + "id": 2793025845399621, + "content_hash": "f5b7e53d29bed333a380749f3d9def559ac9b66ad8916769ae978cae01bd38eb" + }, + { + "id": 2793025846464581, + "content_hash": "e2587eb22cd7bc0191d543c364d260ed445a6044b40ce9dfcab6aa45b27f9dd8" + }, + { + "id": 2793025847595077, + "content_hash": "9012e1f92f9c75ce4482fa5ee346e0ca78bf8396b4c4976bd7993d53b9cd7cdd" + }, + { + "id": 2793025848102981, + "content_hash": "52cd24ea74ace8b2828e989ec499e422f0fb4f30ace71c2600ad27d8c6dcfdc2" + }, + { + "id": 2793025848610885, + "content_hash": "8dad9506c59833e5c24ddeb2cb049c687541e0f9dd92a1a4b7e0fd5ef222e961" + }, + { + "id": 2793025850576965, + "content_hash": "4737825b5132714070dd3ecd5c44ce64b1488751cf50a0df21b8d5719ee11fa2" + }, + { + "id": 2793025851068485, + "content_hash": "d192739f459b99e1d4c3afcea30fa317eae1d16e2871f4e96cc4983f8395781f" + }, + { + "id": 2793026186891333, + "content_hash": "2779a920aa072ebd5f1437ea3d7cb27a7b2e30eb90a928118e4e340885e3a1b8" + }, + { + "id": 2793026187071557, + "content_hash": "198fc781ba14da0ad4918e95385a1b3759319ac2f32d6bdda686ec5a7936d610" + }, + { + "id": 2793026187235397, + "content_hash": "ec356f6b8180418d69f2e91c4e9f186123111e662423aa02fb0955d053a35d81" + }, + { + "id": 2793026187563077, + "content_hash": "39b56b575c3f828aa711817f92eb1c25a19a4728ab21a1c9065f2969694a2e75" + }, + { + "id": 2793026187726917, + "content_hash": "60886a45b9d417618134e668f1ccf05f4f2ba3c47a4a5200031c8bd8da8abfb6" + }, + { + "id": 2793026188415045, + "content_hash": "82af2c119873d178817fc83780e6f0215b6eb21ee0463afe46366c9e4f78d012" + }, + { + "id": 2793026188578885, + "content_hash": "0afae0dac3ca72cc7b3f0242fd53650b2cee1d41b9613cb8ec07b81548896774" + }, + { + "id": 2793026432258181, + "content_hash": "f8ca5e0913138d9817449cf7e66b10df4921e0e36a2a6a8b0c2614d92f501d15" + }, + { + "id": 2793026432585861, + "content_hash": "c8efe3eeaac321112394e61513f47390e497dc639697ad575537dcc98ba21d60" + }, + { + "id": 2793026432733317, + "content_hash": "e4e4534f0f2ac3f5c61952c918add6a71b1f52e004ed3f179e089d1051ca0ca4" + }, + { + "id": 2793026432913541, + "content_hash": "68419133ce0760497037dfa4b601cbc34e3407d16d0af09720ff9746adbeb9ce" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 57, + "total_mismatch": 124, + "total_errors": 0, + "generated_at": "2026-01-31T15:42:17.666591+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18386, + "ods": 18708, + "diff": -322 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 320457.52, + "ods_sum": 326106.36, + "diff": -5648.839999999967 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 953399.57, + "ods_sum": 968916.63, + "diff": -15517.060000000056 + }, + { + "column": "ledger_amount", + "dwd_sum": 2108632.9, + "ods_sum": 2148028.49, + "diff": -39395.59000000032 + }, + { + "column": "member_discount_amount", + "dwd_sum": 191271.49, + "ods_sum": 193226.5, + "diff": -1955.0100000000093 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 840241.18, + "ods_sum": 766441.38, + "diff": 73799.80000000005 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18859, + "diff": -473 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 348842.08, + "diff": -19237.640000000014 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1566827.35, + "ods_sum": 1587425.57, + "diff": -20598.219999999972 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 98, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [], + "mismatch": 4745, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11420, + "ods": 11657, + "diff": -237 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 727858.0, + "ods_sum": 744680.0, + "diff": -16822.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 697893.15, + "ods_sum": 713746.21, + "diff": -15853.05999999994 + } + ], + "mismatch": 11420, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11735, + "diff": -308 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 16977, + "ods": 17202, + "diff": -225 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1100508.0, + "ods_sum": 1116330.0, + "diff": -15822.0 + } + ], + "mismatch": 16977, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17277, + "diff": -300 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046093275432261, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046020658824901, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3045263163688838, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3044610245412613, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034614115748677, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3034554425363589, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034509612305541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3032781041831045, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 22949, + "ods": 23306, + "diff": -357 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2240475.0, + "ods_sum": 2278578.0, + "diff": -38103.0 + } + ], + "mismatch": 22949, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -3471, + "total_mismatch": 126647 + }, + "generated_at": "2026-01-31T15:42:29.152424+08:00" + } + ], + "api_to_ods": { + "total_missing": 57, + "total_mismatch": 124, + "total_errors": 0 + }, + "total_missing": 57, + "total_mismatch": 124, + "total_errors": 0, + "generated_at": "2026-01-31T15:42:29.152448+08:00", + "backfill_result": { + "total_missing": 255, + "total_mismatch": 136, + "backfilled": 187, + "errors": 0, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 16, + "backfilled": 2, + "error": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 10, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 13, + "mismatch": 0, + "backfilled": 13, + "error": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_PAYMENT", + "missing": 17, + "mismatch": 0, + "backfilled": 17, + "error": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 22, + "mismatch": 0, + "backfilled": 22, + "error": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 13, + "mismatch": 0, + "backfilled": 13, + "error": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 0, + "mismatch": 10, + "backfilled": 10, + "error": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 179, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 16, + "backfilled": 16, + "error": null + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 0, + "mismatch": 94, + "backfilled": 94, + "error": null + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793530479530053, + "content_hash": "b08df55f0b5bbcd1b5be339d727957cf16abeaf2ca049088736c7a2276fd4cb3" + }, + { + "id": 2793530479530053, + "content_hash": "b08df55f0b5bbcd1b5be339d727957cf16abeaf2ca049088736c7a2276fd4cb3" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10118, + "records_with_pk": 10118, + "missing": 1, + "missing_samples": [ + { + "id": 3074963985270149 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11926, + "records_with_pk": 11926, + "missing": 1, + "missing_samples": [ + { + "id": 3074963982878085 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17300, + "records_with_pk": 17300, + "missing": 1, + "missing_samples": [ + { + "id": 3074964890879621 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8244, + "records_with_pk": 8244, + "missing": 1, + "missing_samples": [ + { + "id": 3074963985909125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 5, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "68565601b4f082e4f5e907089ca60772e58623710973fde1628009a03945288c" + }, + { + "id": 2792521437958213, + "content_hash": "336702e81588b5568e46f3f47ade608b5952cf15091c7b0f2467cdb689d375f1" + }, + { + "id": 2793001695301765, + "content_hash": "ba6634556aa2ab2a22100e352aed5e52f9bb21b2007b81ff7627df6c37fc07d6" + }, + { + "id": 2793001904918661, + "content_hash": "0a4a527dd88ac156109a061158f584603334a4aecd080d90eb85fddc0b82bb40" + }, + { + "id": 2793022937911365, + "content_hash": "afd3e87fcfe095ffcca35ee5b3b4604f518ad3c79c9c652feb63517a53c99b45" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 4, + "total_mismatch": 7, + "total_errors": 0, + "generated_at": "2026-01-31T16:00:32.019226+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23366, + "ods": 23712, + "diff": -346 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18386, + "ods": 18708, + "diff": -322 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 320457.52, + "ods_sum": 326106.36, + "diff": -5648.839999999967 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 953399.57, + "ods_sum": 968916.63, + "diff": -15517.060000000056 + }, + { + "column": "ledger_amount", + "dwd_sum": 2108632.9, + "ods_sum": 2148028.49, + "diff": -39395.59000000032 + }, + { + "column": "member_discount_amount", + "dwd_sum": 191271.49, + "ods_sum": 193226.5, + "diff": -1955.0100000000093 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 840241.18, + "ods_sum": 766441.38, + "diff": 73799.80000000005 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18386, + "ods": 18872, + "diff": -486 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18386, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 329604.44, + "ods_sum": 348842.08, + "diff": -19237.640000000014 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2849, + "ods": 2943, + "diff": -94 + }, + "amounts": [], + "mismatch": 2849, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1566827.35, + "ods_sum": 1587425.57, + "diff": -20598.219999999972 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5003, + "ods": 5065, + "diff": -62 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5003, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 98, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 98, + "ods": 100, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [], + "mismatch": 4745, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4745, + "ods": 4858, + "diff": -113 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11420, + "ods": 11657, + "diff": -237 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 727858.0, + "ods_sum": 744680.0, + "diff": -16822.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 697893.15, + "ods_sum": 713746.21, + "diff": -15853.05999999994 + } + ], + "mismatch": 11420, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11427, + "ods": 11748, + "diff": -321 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 16977, + "ods": 17202, + "diff": -225 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1100508.0, + "ods_sum": 1116330.0, + "diff": -15822.0 + } + ], + "mismatch": 16977, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 16977, + "ods": 17299, + "diff": -322 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 455, + "ods": 462, + "diff": -7 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046093275432261, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3046020658824901, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3045263163688838, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3044610245412613, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034614115748677, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3034554425363589, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3034509612305541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3032781041831045, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 22949, + "ods": 23306, + "diff": -357 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2240475.0, + "ods_sum": 2278578.0, + "diff": -38103.0 + } + ], + "mismatch": 22949, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -3519, + "total_mismatch": 126647 + }, + "generated_at": "2026-01-31T16:00:43.034285+08:00" + } + ], + "api_to_ods": { + "total_missing": 4, + "total_mismatch": 7, + "total_errors": 0 + }, + "total_missing": 4, + "total_mismatch": 7, + "total_errors": 0, + "generated_at": "2026-01-31T16:00:43.034431+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_161314.json b/etl_billiards/reports/data_integrity_window_20260131_161314.json new file mode 100644 index 0000000..c6cd3b9 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_161314.json @@ -0,0 +1,4684 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793530479530053, + "content_hash": "b08df55f0b5bbcd1b5be339d727957cf16abeaf2ca049088736c7a2276fd4cb3" + }, + { + "id": 2793530479530053, + "content_hash": "b08df55f0b5bbcd1b5be339d727957cf16abeaf2ca049088736c7a2276fd4cb3" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10119, + "records_with_pk": 10119, + "missing": 2, + "missing_samples": [ + { + "id": 3074968025892229 + }, + { + "id": 3074963985270149 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11927, + "records_with_pk": 11927, + "missing": 2, + "missing_samples": [ + { + "id": 3074968023696773 + }, + { + "id": 3074963982878085 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17301, + "records_with_pk": 17301, + "missing": 2, + "missing_samples": [ + { + "id": 3074968113857989 + }, + { + "id": 3074964890879621 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8245, + "records_with_pk": 8245, + "missing": 2, + "missing_samples": [ + { + "id": 3074968026596741 + }, + { + "id": 3074963985909125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 6, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "68565601b4f082e4f5e907089ca60772e58623710973fde1628009a03945288c" + }, + { + "id": 2792521437958213, + "content_hash": "336702e81588b5568e46f3f47ade608b5952cf15091c7b0f2467cdb689d375f1" + }, + { + "id": 2793001695301765, + "content_hash": "ba6634556aa2ab2a22100e352aed5e52f9bb21b2007b81ff7627df6c37fc07d6" + }, + { + "id": 2793001904918661, + "content_hash": "0a4a527dd88ac156109a061158f584603334a4aecd080d90eb85fddc0b82bb40" + }, + { + "id": 2793017278582917, + "content_hash": "d24f07bac8ff2b49b683d524643de287fef476abd2d858fc7e82f6465994d641" + }, + { + "id": 2793022937911365, + "content_hash": "61777cd849b6e22679ef09aca606eeb583c974147da836d9ba06b5d406830217" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 8, + "total_mismatch": 8, + "total_errors": 0, + "generated_at": "2026-01-31T16:13:04.844863+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18872, + "diff": -254 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042622933256072, + "ods_hash": "8462a0b4d1ef6d349b8a11f673844393", + "dwd_hash": "f3bdd0530b32e4bb198b135e8aa46678" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + }, + { + "assistant_trash_event_id": 3042776740169541, + "ods_hash": "ba88585ebaa31c1380332c9001f031e8", + "dwd_hash": "ef61e4054806dff6c7209f55d628d3d4" + }, + { + "assistant_trash_event_id": 3042807433316165, + "ods_hash": "37ce0a40c6e470c1982ce6a3806dcf32", + "dwd_hash": "b7b7fd0f947433511475865eeb745fdd" + }, + { + "assistant_trash_event_id": 3042915433137477, + "ods_hash": "92545e3028af9d0b0fe226e841e68748", + "dwd_hash": "7a83486381ce0b6c8e1c56809aa6bebd" + }, + { + "assistant_trash_event_id": 3043026784683909, + "ods_hash": "3cb015c3e001c3d33ef7201b5af58f33", + "dwd_hash": "ea6c970eaa000cb857f56dcb8d16cd43" + }, + { + "assistant_trash_event_id": 3043026785240965, + "ods_hash": "f5af282052b3ba6f699cb503fea30a38", + "dwd_hash": "1ea6cfa2ef8e8fb58e9590667f1d4cd6" + }, + { + "assistant_trash_event_id": 3045792225740485, + "ods_hash": "697093c2d97cb0a9139757f350431e48", + "dwd_hash": "24c40d19c6decfcfe57233b0843a1ae2" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11748, + "diff": -159 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17299, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2800824057628741, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2801879399532933, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802064357345349, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802362619840581, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 2802393839258885, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2802480974171333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803524215835845, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1350, + "total_mismatch": 127939 + }, + "generated_at": "2026-01-31T16:13:14.920804+08:00" + } + ], + "api_to_ods": { + "total_missing": 8, + "total_mismatch": 8, + "total_errors": 0 + }, + "total_missing": 8, + "total_mismatch": 8, + "total_errors": 0, + "generated_at": "2026-01-31T16:13:14.920832+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_173258.json b/etl_billiards/reports/data_integrity_window_20260131_173258.json new file mode 100644 index 0000000..2339953 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_173258.json @@ -0,0 +1,9708 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793530479530053, + "content_hash": "87405a847f99a6397e87720299817d3fc92f79042f40ff982697e21d2bd8eeea" + }, + { + "id": 2793530479530053, + "content_hash": "87405a847f99a6397e87720299817d3fc92f79042f40ff982697e21d2bd8eeea" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10123, + "records_with_pk": 10123, + "missing": 6, + "missing_samples": [ + { + "id": 3075009181369797 + }, + { + "id": 3075009133856325 + }, + { + "id": 3074998394389957 + }, + { + "id": 3074993619666565 + }, + { + "id": 3074968025892229 + }, + { + "id": 3074963985270149 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11937, + "records_with_pk": 11937, + "missing": 12, + "missing_samples": [ + { + "id": 3075034062915205 + }, + { + "id": 3075033672697221 + }, + { + "id": 3075027226609221 + }, + { + "id": 3075009179174341 + }, + { + "id": 3075009131759173 + }, + { + "id": 3075003904181829 + }, + { + "id": 3074998392243653 + }, + { + "id": 3074993617372805 + }, + { + "id": 3074988289721733 + }, + { + "id": 3074981024433605 + }, + { + "id": 3074968023696773 + }, + { + "id": 3074963982878085 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17320, + "records_with_pk": 17320, + "missing": 21, + "missing_samples": [ + { + "id": 3075026954487365 + }, + { + "id": 3075024361817669 + }, + { + "id": 3075021166036357 + }, + { + "id": 3075021060621766 + }, + { + "id": 3075020558780037 + }, + { + "id": 3075020087313861 + }, + { + "id": 3075018671490501 + }, + { + "id": 3075012995024261 + }, + { + "id": 3075009018807749 + }, + { + "id": 3075008909870661 + }, + { + "id": 3075006108157317 + }, + { + "id": 3075003344356741 + }, + { + "id": 3075002265077381 + }, + { + "id": 3074998250915205 + }, + { + "id": 3074996586317253 + }, + { + "id": 3074994363975301 + }, + { + "id": 3074992075998597 + }, + { + "id": 3074986744268165 + }, + { + "id": 3074984968537733 + }, + { + "id": 3074968113857989 + }, + { + "id": 3074964890879621 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8251, + "records_with_pk": 8251, + "missing": 8, + "missing_samples": [ + { + "id": 3075009181910471 + }, + { + "id": 3075009181910470 + }, + { + "id": 3075009181910469 + }, + { + "id": 3075009134429765 + }, + { + "id": 3074998394930629 + }, + { + "id": 3074993620190853 + }, + { + "id": 3074968026596741 + }, + { + "id": 3074963985909125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "3bb6f1322698c06429e1006e208626eb2b88ec11d5c14410fb086b14b76e9540" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "5988460de09124ba64d02ee902aadc1b4e85d016e213a6cba09aed1dabf8a564" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "c4f56340e151c330683f76c238e26b499c1a07c46969f840016110436118a5ff" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "e3f4aabbd43d0ed8e10ed2ebb5fb26f8451ccc73e674b718dcbd56f30b0a1ba7" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "631676751c0a3e8039358162114ba6e9b81fcd7a1af453a654511c0c9bc1d19b" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "07cbc8bb2eb8cc8e9c506d1901cd59421dd59f002c9a4dadd59e381b3e3f275f" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "65986899f879dc4c3adeff692640fe7ada5404a5c847a0a50ee495847dac5d9e" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "a888a7032fc1ad16420f24d47e9260aec927ef68f22875eadea58cbaf6cccac9" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 25, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "68565601b4f082e4f5e907089ca60772e58623710973fde1628009a03945288c" + }, + { + "id": 2792521437958213, + "content_hash": "4690c8930f855f5b9829bc9d69313431e82beb5ab45c900b7c4b891a7815bbc1" + }, + { + "id": 2793001695301765, + "content_hash": "0d2c74c80e896fa3d86adf746c770d8d1a2c6161f1238d1c7e452f7c6204eb76" + }, + { + "id": 2793001904918661, + "content_hash": "0a4a527dd88ac156109a061158f584603334a4aecd080d90eb85fddc0b82bb40" + }, + { + "id": 2793002509209733, + "content_hash": "c31cc6dad5e19fa130c43be50d8ccf22f8c9525db79944fde02e14412a15228f" + }, + { + "id": 2793002673295493, + "content_hash": "64d73cbf4c16c3953ce8fc78c65845f51d2da9bcdaabc4de74bd1e86a58f162b" + }, + { + "id": 2793002808987781, + "content_hash": "d1b05fdcf86f2ed0f51910154232f779e00a8168b1db35d6174eef4c4bea1be0" + }, + { + "id": 2793002896494725, + "content_hash": "c9fa8aaeb50a05b1e088551dc124f9cb70abb1120106fc11ca74ddfc577d4227" + }, + { + "id": 2793002980429893, + "content_hash": "61eff00c37a5a042dc51d3fd448bcd24c776b50f82f98c50aa8015c9261f9f74" + }, + { + "id": 2793003066429509, + "content_hash": "b5e82d5c72ce0f4056bba67e8d5619681bace70b8c5dd4568fb70007f1840304" + }, + { + "id": 2793003159474245, + "content_hash": "5740b4719dca3641ac679b15a715c723d34cf51161b3fde981cf5a854ab3f6fd" + }, + { + "id": 2793003243294789, + "content_hash": "eb0d5541fa4dd6dc49148e928fb07f2225f2a612cee74109f62227712df42707" + }, + { + "id": 2793003323740229, + "content_hash": "3f732ebef2d0f6269e47411b3a5def945606c66b18b7b82208200166a7f1e862" + }, + { + "id": 2793003506815045, + "content_hash": "7df8d6567cd60b23cc34d9c323b8e7df656245152cb1ed2fbbd71cf50e07b664" + }, + { + "id": 2793003618340933, + "content_hash": "7b568cbffcaf56e5cddeff7a24a7636eece71cd0adf1bd76d21ebe0afcce6844" + }, + { + "id": 2793003705192517, + "content_hash": "f4ce5f2bc08c8825321c27741086fb79ef3746a1c7f05807f31ef970f4233f6e" + }, + { + "id": 2793003806953541, + "content_hash": "27a92ba12800328b37a751214ae9b45376a409e57ea0de708f1c3ea6f2a26cf6" + }, + { + "id": 2793010820304965, + "content_hash": "f208529c6470b22200d532b4e2903de6b40d8b2166a594e5aec1fbbbff82c16d" + }, + { + "id": 2793012902121605, + "content_hash": "936bf3f5e6a914040a1070f7190f3b5e9394836fd8a73f95620b3f2bdcb633d7" + }, + { + "id": 2793012902154373, + "content_hash": "4f119de87bfec046fe93befec74592bf9195f9b6da82da6982e7b6ebb29fa09b" + }, + { + "id": 2793012902203525, + "content_hash": "48b94d7a83546764b7edd589ca95f316ff66fa33bf1ed8a890b98fa75253f021" + }, + { + "id": 2793012902236293, + "content_hash": "e56e31ff33e8985e7e98fece8a37ddd6bde28b7ad996ed1e0d6c11f151778953" + }, + { + "id": 2793017278582917, + "content_hash": "d24f07bac8ff2b49b683d524643de287fef476abd2d858fc7e82f6465994d641" + }, + { + "id": 2793020260044869, + "content_hash": "41a673810efd10af83f449273c1325edab6f81b17b5363b6e5c03380a9be355b" + }, + { + "id": 2793022937911365, + "content_hash": "28eab70f925f5677e7827a817f7d63069c6b617827ab68c5498d6555613b89fa" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "0c44497e4d7f4865713d464d15a8dbcd3eb86fd7ccfa2b5f913ee7246cea1339" + }, + { + "id": 2793025863290949, + "content_hash": "fd4e7028c536407432c6ad9da716673d18ced87a967bca0a4c6c7bf15cf38d63" + }, + { + "id": 2791953867886725, + "content_hash": "dd8e807fad7df8560618991e3d529ec1313f7ec89a79df2f0b99cac995d4704d" + }, + { + "id": 2793026174865477, + "content_hash": "9e69deb51318de9f56125883678246da084c47e8bc141a4ed4f80715c5147dd6" + }, + { + "id": 2793026176012357, + "content_hash": "7cbf734323f7e7ea80695bf7af78c28b47ff4e9e1045235eebf6f724369e3e93" + }, + { + "id": 2793026180501573, + "content_hash": "bf378006bc44b401c2f2a0daebaddd5def03a4ab3d838dad5c672130b9c4221e" + }, + { + "id": 2793026184302661, + "content_hash": "1f09dc1bfd4e292203e1f12e4bb8199755aad70e8f3259e207a19950b42fba25" + }, + { + "id": 3053572251340677, + "content_hash": "fbddfb204f91ef55c0029fbe9337f0acff80ef83302fe68694a1df46fda75821" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 47, + "total_mismatch": 43, + "total_errors": 0, + "generated_at": "2026-01-31T17:13:25.115213+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18872, + "diff": -254 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042622933256072, + "ods_hash": "8462a0b4d1ef6d349b8a11f673844393", + "dwd_hash": "f3bdd0530b32e4bb198b135e8aa46678" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + }, + { + "assistant_trash_event_id": 3042776740169541, + "ods_hash": "ba88585ebaa31c1380332c9001f031e8", + "dwd_hash": "ef61e4054806dff6c7209f55d628d3d4" + }, + { + "assistant_trash_event_id": 3042807433316165, + "ods_hash": "37ce0a40c6e470c1982ce6a3806dcf32", + "dwd_hash": "b7b7fd0f947433511475865eeb745fdd" + }, + { + "assistant_trash_event_id": 3042915433137477, + "ods_hash": "92545e3028af9d0b0fe226e841e68748", + "dwd_hash": "7a83486381ce0b6c8e1c56809aa6bebd" + }, + { + "assistant_trash_event_id": 3043026784683909, + "ods_hash": "3cb015c3e001c3d33ef7201b5af58f33", + "dwd_hash": "ea6c970eaa000cb857f56dcb8d16cd43" + }, + { + "assistant_trash_event_id": 3043026785240965, + "ods_hash": "f5af282052b3ba6f699cb503fea30a38", + "dwd_hash": "1ea6cfa2ef8e8fb58e9590667f1d4cd6" + }, + { + "assistant_trash_event_id": 3045792225740485, + "ods_hash": "697093c2d97cb0a9139757f350431e48", + "dwd_hash": "24c40d19c6decfcfe57233b0843a1ae2" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11748, + "diff": -159 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17299, + "diff": -161 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2800824057628741, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2801879399532933, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802064357345349, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802362619840581, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 2802393839258885, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2802480974171333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803524215835845, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1350, + "total_mismatch": 127939 + }, + "generated_at": "2026-01-31T17:13:36.897030+08:00" + } + ], + "api_to_ods": { + "total_missing": 47, + "total_mismatch": 43, + "total_errors": 0 + }, + "total_missing": 47, + "total_mismatch": 43, + "total_errors": 0, + "generated_at": "2026-01-31T17:13:36.897079+08:00", + "backfill_result": { + "total_missing": 237, + "total_mismatch": 50, + "backfilled": 90, + "errors": 0, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 8, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 10, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 6, + "mismatch": 0, + "backfilled": 6, + "error": null + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "missing": 1, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_PAYMENT", + "missing": 12, + "mismatch": 0, + "backfilled": 12, + "error": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 21, + "mismatch": 0, + "backfilled": 21, + "error": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 8, + "mismatch": 0, + "backfilled": 8, + "error": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 0, + "mismatch": 8, + "backfilled": 8, + "error": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 179, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 25, + "backfilled": 25, + "error": null + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 0, + "mismatch": 9, + "backfilled": 9, + "error": null + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10124, + "records_with_pk": 10124, + "missing": 1, + "missing_samples": [ + { + "id": 3075049844852165 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11939, + "records_with_pk": 11939, + "missing": 2, + "missing_samples": [ + { + "id": 3075055698101893 + }, + { + "id": 3075049842263493 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17324, + "records_with_pk": 17324, + "missing": 4, + "missing_samples": [ + { + "id": 3075056358606213 + }, + { + "id": 3075052170397318 + }, + { + "id": 3075052170397317 + }, + { + "id": 3075049773549125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8253, + "records_with_pk": 8253, + "missing": 2, + "missing_samples": [ + { + "id": 3075055700788869 + }, + { + "id": 3075049845458373 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "sitegoodsid": 2794695800934533, + "content_hash": "637b162b538905a477bd0da69802578f764ad62128f5aba0a1e45b8d4868e495" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2793003243294789, + "content_hash": "17fd574862180cde35256820156d51162c1a78cc763162d5a07540305938a6b7" + }, + { + "id": 2793003420504133, + "content_hash": "c02980b0ba4d15a2be3d97b442ce26374aceb28ace635762a1cb866026e5bfc7" + }, + { + "id": 2793020259946565, + "content_hash": "4d30ac305daa157b25c961226f05afc28660cbcc12052459cd91a992b1e235ee" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2794695800934533, + "content_hash": "9eb2ab6e1dbe2a5da2fb7c956851a8c2a803dacc00ec26568072d48ec5300a22" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 9, + "total_mismatch": 6, + "total_errors": 0, + "generated_at": "2026-01-31T17:32:46.900073+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18878, + "diff": -260 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042622933256072, + "ods_hash": "8462a0b4d1ef6d349b8a11f673844393", + "dwd_hash": "f3bdd0530b32e4bb198b135e8aa46678" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + }, + { + "assistant_trash_event_id": 3042776740169541, + "ods_hash": "ba88585ebaa31c1380332c9001f031e8", + "dwd_hash": "ef61e4054806dff6c7209f55d628d3d4" + }, + { + "assistant_trash_event_id": 3042807433316165, + "ods_hash": "37ce0a40c6e470c1982ce6a3806dcf32", + "dwd_hash": "b7b7fd0f947433511475865eeb745fdd" + }, + { + "assistant_trash_event_id": 3042915433137477, + "ods_hash": "92545e3028af9d0b0fe226e841e68748", + "dwd_hash": "7a83486381ce0b6c8e1c56809aa6bebd" + }, + { + "assistant_trash_event_id": 3043026784683909, + "ods_hash": "3cb015c3e001c3d33ef7201b5af58f33", + "dwd_hash": "ea6c970eaa000cb857f56dcb8d16cd43" + }, + { + "assistant_trash_event_id": 3043026785240965, + "ods_hash": "f5af282052b3ba6f699cb503fea30a38", + "dwd_hash": "1ea6cfa2ef8e8fb58e9590667f1d4cd6" + }, + { + "assistant_trash_event_id": 3045792225740485, + "ods_hash": "697093c2d97cb0a9139757f350431e48", + "dwd_hash": "24c40d19c6decfcfe57233b0843a1ae2" + }, + { + "assistant_trash_event_id": 3046093811255173, + "ods_hash": "f76ad53582838016a616bc0bfc397018", + "dwd_hash": "9fda4f54b463175d76f206803651526c" + }, + { + "assistant_trash_event_id": 3046093812467589, + "ods_hash": "9390ea633bf35036dc82a0974202a157", + "dwd_hash": "2139bedb731738680ccb8592938ef840" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + }, + { + "assistant_trash_event_id": 2897082208586053, + "ods_hash": "04b1ebd8b8e9a31070e400e6da822004", + "dwd_hash": "7511f3a0aa85ae2cfb07a1584fc53e9c" + }, + { + "assistant_trash_event_id": 2901351578602693, + "ods_hash": "04de472bb157308dc44c15b7714b7549", + "dwd_hash": "fc9d3c1029e88976ab6f9792633ae436" + }, + { + "assistant_trash_event_id": 2901351578864837, + "ods_hash": "a994da90d4b4342c8086c15ccd297717", + "dwd_hash": "8b52f3352b63c14e2d31072e8ea63d9c" + }, + { + "assistant_trash_event_id": 2901351579143365, + "ods_hash": "7b05cb55bf6d2f34cc3a6a59d28f5b01", + "dwd_hash": "35641fa0ba9a87832f70cb6781d451ca" + }, + { + "assistant_trash_event_id": 2904236313234373, + "ods_hash": "a2864f4bc8909a7652a3178f96e85455", + "dwd_hash": "3574b18625b4f0b8ca62211b52f764b9" + }, + { + "assistant_trash_event_id": 2920573007709573, + "ods_hash": "50255be600af1af05bd38776169503b8", + "dwd_hash": "2026601ff9e50b0e1b692c5d5ae69491" + }, + { + "assistant_trash_event_id": 2926594431305093, + "ods_hash": "a26f820c3809f7cfa88b00d631d61584", + "dwd_hash": "77f66df376445fe4b1317f1b0c2a025c" + }, + { + "assistant_trash_event_id": 2933593641256581, + "ods_hash": "90d7ebac0bdcb733af6dc3bcd5c3a496", + "dwd_hash": "bf40e61facb1bf1a1a3b80dbb0bb520b" + }, + { + "assistant_trash_event_id": 2936572806285765, + "ods_hash": "bb1291667130b5bfbb707360043d6a90", + "dwd_hash": "32be46bddbe27e3659e486ad816bb539" + }, + { + "assistant_trash_event_id": 2937959143262725, + "ods_hash": "853173294be4a13a5538e9d184b52459", + "dwd_hash": "833c6bdc0d121f0320d75638b92f278f" + }, + { + "assistant_trash_event_id": 2939676194180229, + "ods_hash": "3e5b2d9febdde0bd8979eb4e5a96c67b", + "dwd_hash": "43f287ef8aaebaa95ff04b419e0de00b" + }, + { + "assistant_trash_event_id": 2941371032964997, + "ods_hash": "5ab8cd311db0c8f49044b74034b1004c", + "dwd_hash": "d70c138746b4978ffbfff0cd4d009c6f" + }, + { + "assistant_trash_event_id": 2942452375932869, + "ods_hash": "c2aa0a1a415cec513a20ca453274b41b", + "dwd_hash": "1e879107f3181d6133649f989e2ac582" + }, + { + "assistant_trash_event_id": 2953329501898373, + "ods_hash": "674d06e8a5ead425eff774848dcc489c", + "dwd_hash": "b61bcaf70352078e11b4694c9a45cd60" + }, + { + "assistant_trash_event_id": 2953329502357125, + "ods_hash": "534c929eda7d271087ee2e278b940959", + "dwd_hash": "e1b7ba1286d686508acc4ea0bda50167" + }, + { + "assistant_trash_event_id": 2957675849518789, + "ods_hash": "be86c0dc89993dfdecf6c93b9e3bab64", + "dwd_hash": "76f8b5d52b66b5d230680abd9afc38a3" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11756, + "diff": -167 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17320, + "diff": -182 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3035439707523973, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3035691111173189, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036628383534213, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3036912276670981, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037168377597125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3037269758496069, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038689651641541, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3038783509171397, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3039119846952069, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3039944742373125, + "ods_hash": "4b1da34e2bc2c5acc93012297c9d6e36", + "dwd_hash": "8aca10f92f91f9906fe9bf0688f8ec2b" + }, + { + "recharge_order_id": 3039974179014533, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3040354220656325, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3041169983669957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3041504717391685, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3042725422253829, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3042915106867077, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3043884598134085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2800824057628741, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2801879399532933, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802064357345349, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2802362619840581, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 2802393839258885, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2802480974171333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803524215835845, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1385, + "total_mismatch": 127939 + }, + "generated_at": "2026-01-31T17:32:58.261603+08:00" + } + ], + "api_to_ods": { + "total_missing": 9, + "total_mismatch": 6, + "total_errors": 0 + }, + "total_missing": 9, + "total_mismatch": 6, + "total_errors": 0, + "generated_at": "2026-01-31T17:32:58.261627+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_174631.json b/etl_billiards/reports/data_integrity_window_20260131_174631.json new file mode 100644 index 0000000..3afde2d --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_174631.json @@ -0,0 +1,4713 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10127, + "records_with_pk": 10127, + "missing": 4, + "missing_samples": [ + { + "id": 3075065668060613 + }, + { + "id": 3075059196577413 + }, + { + "id": 3075055700264581 + }, + { + "id": 3075049844852165 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11941, + "records_with_pk": 11941, + "missing": 4, + "missing_samples": [ + { + "id": 3075065665684933 + }, + { + "id": 3075059194349189 + }, + { + "id": 3075055698101893 + }, + { + "id": 3075049842263493 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17324, + "records_with_pk": 17324, + "missing": 4, + "missing_samples": [ + { + "id": 3075056358606213 + }, + { + "id": 3075052170397318 + }, + { + "id": 3075052170397317 + }, + { + "id": 3075049773549125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2501, + "records_with_pk": 2501, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8255, + "records_with_pk": 8255, + "missing": 4, + "missing_samples": [ + { + "id": 3075065668732357 + }, + { + "id": 3075059197249157 + }, + { + "id": 3075055700788869 + }, + { + "id": 3075049845458373 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "sitegoodsid": 2794695800934533, + "content_hash": "637b162b538905a477bd0da69802578f764ad62128f5aba0a1e45b8d4868e495" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 6, + "mismatch_samples": [ + { + "id": 2793002808987781, + "content_hash": "e61cc28c40d2ebee3c668b004b7e2d0cb1b16105522ea75b6efba4cbfdca55da" + }, + { + "id": 2793003243294789, + "content_hash": "17fd574862180cde35256820156d51162c1a78cc763162d5a07540305938a6b7" + }, + { + "id": 2793003323740229, + "content_hash": "7ac3fb10f91542a21759c9bbd2ffe9ab314f8e6a752c94d41feb5ef5b9b7a6c0" + }, + { + "id": 2793003420504133, + "content_hash": "c02980b0ba4d15a2be3d97b442ce26374aceb28ace635762a1cb866026e5bfc7" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793020259946565, + "content_hash": "4d7e5f7f8659565f37ffb18b84b88adbd5a6a5c257e59a522cb92091e205cfef" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2794695800934533, + "content_hash": "9eb2ab6e1dbe2a5da2fb7c956851a8c2a803dacc00ec26568072d48ec5300a22" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1782, + "records_with_pk": 1782, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 16, + "total_mismatch": 9, + "total_errors": 0, + "generated_at": "2026-01-31T17:46:18.143818+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18878, + "diff": -260 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11756, + "diff": -167 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17320, + "diff": -182 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -1385, + "total_mismatch": 127939 + }, + "generated_at": "2026-01-31T17:46:31.372737+08:00" + } + ], + "api_to_ods": { + "total_missing": 16, + "total_mismatch": 9, + "total_errors": 0 + }, + "total_missing": 16, + "total_mismatch": 9, + "total_errors": 0, + "generated_at": "2026-01-31T17:46:31.372770+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_204737.json b/etl_billiards/reports/data_integrity_window_20260131_204737.json new file mode 100644 index 0000000..3d6729b --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_204737.json @@ -0,0 +1,14442 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10164, + "records_with_pk": 10164, + "missing": 41, + "missing_samples": [ + { + "id": 3075218060920453 + }, + { + "id": 3075214247020101 + }, + { + "id": 3075211527620229 + }, + { + "id": 3075211469276741 + }, + { + "id": 3075206245418565 + }, + { + "id": 3075204905633413 + }, + { + "id": 3075202196375109 + }, + { + "id": 3075197179463237 + }, + { + "id": 3075184416048517 + }, + { + "id": 3075171487352197 + }, + { + "id": 3075171439756869 + }, + { + "id": 3075157093779077 + }, + { + "id": 3075157093762693 + }, + { + "id": 3075153744381509 + }, + { + "id": 3075144116274821 + }, + { + "id": 3075144066762117 + }, + { + "id": 3075141590550149 + }, + { + "id": 3075138546648709 + }, + { + "id": 3075138495841861 + }, + { + "id": 3075126946121349 + }, + { + "id": 3075121697670725 + }, + { + "id": 3075118060275333 + }, + { + "id": 3075116286379397 + }, + { + "id": 3075115407050373 + }, + { + "id": 3075115272046149 + }, + { + "id": 3075114855826821 + }, + { + "id": 3075112040629637 + }, + { + "id": 3075112040646021 + }, + { + "id": 3075110104499653 + }, + { + "id": 3075109041079941 + }, + { + "id": 3075104980960645 + }, + { + "id": 3075091305547397 + }, + { + "id": 3075087559902661 + }, + { + "id": 3075086919665029 + }, + { + "id": 3075078764348997 + }, + { + "id": 3075078710363781 + }, + { + "id": 3075078307775877 + }, + { + "id": 3075065668060613 + }, + { + "id": 3075059196577413 + }, + { + "id": 3075055700264581 + }, + { + "id": 3075049844852165 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11985, + "records_with_pk": 11985, + "missing": 48, + "missing_samples": [ + { + "id": 3075227749402053 + }, + { + "id": 3075218058086021 + }, + { + "id": 3075215531967941 + }, + { + "id": 3075214244906565 + }, + { + "id": 3075211525473925 + }, + { + "id": 3075211467081285 + }, + { + "id": 3075206243010117 + }, + { + "id": 3075204903192197 + }, + { + "id": 3075202192197189 + }, + { + "id": 3075197176989253 + }, + { + "id": 3075196241495493 + }, + { + "id": 3075184413738373 + }, + { + "id": 3075171484779909 + }, + { + "id": 3075171437348421 + }, + { + "id": 3075157090092677 + }, + { + "id": 3075153742136901 + }, + { + "id": 3075144113964677 + }, + { + "id": 3075144064353669 + }, + { + "id": 3075141588141701 + }, + { + "id": 3075138544387717 + }, + { + "id": 3075138493171269 + }, + { + "id": 3075137442760325 + }, + { + "id": 3075131510654341 + }, + { + "id": 3075128327701957 + }, + { + "id": 3075126944040581 + }, + { + "id": 3075121695475269 + }, + { + "id": 3075118057916037 + }, + { + "id": 3075116283921797 + }, + { + "id": 3075115404772997 + }, + { + "id": 3075115269178949 + }, + { + "id": 3075114853483909 + }, + { + "id": 3075112033076613 + }, + { + "id": 3075110102287813 + }, + { + "id": 3075109038720645 + }, + { + "id": 3075104978535813 + }, + { + "id": 3075102091986373 + }, + { + "id": 3075091303155333 + }, + { + "id": 3075088132933061 + }, + { + "id": 3075087557674437 + }, + { + "id": 3075086916748677 + }, + { + "id": 3075078762104389 + }, + { + "id": 3075078708266629 + }, + { + "id": 3075078305105285 + }, + { + "id": 3075076255925701 + }, + { + "id": 3075065665684933 + }, + { + "id": 3075059194349189 + }, + { + "id": 3075055698101893 + }, + { + "id": 3075049842263493 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17361, + "records_with_pk": 17361, + "missing": 41, + "missing_samples": [ + { + "id": 3075243024336261 + }, + { + "id": 3075233708836422 + }, + { + "id": 3075233708836421 + }, + { + "id": 3075228380350021 + }, + { + "id": 3075224729241157 + }, + { + "id": 3075213955778117 + }, + { + "id": 3075213830243909 + }, + { + "id": 3075212854527429 + }, + { + "id": 3075209372157573 + }, + { + "id": 3075208481621381 + }, + { + "id": 3075201558726021 + }, + { + "id": 3075199443322309 + }, + { + "id": 3075197480650181 + }, + { + "id": 3075193812633157 + }, + { + "id": 3075191908124293 + }, + { + "id": 3075191688349253 + }, + { + "id": 3075187305023045 + }, + { + "id": 3075172717102469 + }, + { + "id": 3075172039918981 + }, + { + "id": 3075165463758405 + }, + { + "id": 3075164977366469 + }, + { + "id": 3075162706036293 + }, + { + "id": 3075159118693765 + }, + { + "id": 3075155025675717 + }, + { + "id": 3075146592650885 + }, + { + "id": 3075143749240261 + }, + { + "id": 3075133416932742 + }, + { + "id": 3075125431371141 + }, + { + "id": 3075108942726725 + }, + { + "id": 3075093660534341 + }, + { + "id": 3075093335197061 + }, + { + "id": 3075082564388293 + }, + { + "id": 3075081917597125 + }, + { + "id": 3075081518958021 + }, + { + "id": 3075080679048645 + }, + { + "id": 3075078412977605 + }, + { + "id": 3075071341512069 + }, + { + "id": 3075056358606213 + }, + { + "id": 3075052170397318 + }, + { + "id": 3075052170397317 + }, + { + "id": 3075049773549125 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8291, + "records_with_pk": 8291, + "missing": 40, + "missing_samples": [ + { + "id": 3075218061690501 + }, + { + "id": 3075214247577157 + }, + { + "id": 3075211528259206 + }, + { + "id": 3075211528259205 + }, + { + "id": 3075211528242821 + }, + { + "id": 3075211469964869 + }, + { + "id": 3075206246041157 + }, + { + "id": 3075204906239622 + }, + { + "id": 3075204906239621 + }, + { + "id": 3075184416671109 + }, + { + "id": 3075171488023941 + }, + { + "id": 3075171440395846 + }, + { + "id": 3075171440395845 + }, + { + "id": 3075153744971333 + }, + { + "id": 3075144116831877 + }, + { + "id": 3075144067499397 + }, + { + "id": 3075144067483013 + }, + { + "id": 3075141591172741 + }, + { + "id": 3075138547271301 + }, + { + "id": 3075138496448069 + }, + { + "id": 3075126946760325 + }, + { + "id": 3075121698244165 + }, + { + "id": 3075116287018373 + }, + { + "id": 3075115407591045 + }, + { + "id": 3075115272586821 + }, + { + "id": 3075114856596869 + }, + { + "id": 3075110105089477 + }, + { + "id": 3075109041669765 + }, + { + "id": 3075104981566853 + }, + { + "id": 3075091306317445 + }, + { + "id": 3075087560623557 + }, + { + "id": 3075086920533381 + }, + { + "id": 3075086920516997 + }, + { + "id": 3075078765020741 + }, + { + "id": 3075078711019141 + }, + { + "id": 3075078308365701 + }, + { + "id": 3075065668732357 + }, + { + "id": 3075059197249157 + }, + { + "id": 3075055700788869 + }, + { + "id": 3075049845458373 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + } + ], + "total_missing": 170, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T20:41:30.749829+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18878, + "diff": -18877 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 18708, + "diff": -18708 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "0774ca8ce64facac289eaeced2665034", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "0c7aab44e7780d64258ecd077db0d08d", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "3e6ac0bf585fef565a29630ce1826896", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "18b954a759b6ea861725b62b731eb0c9", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "1a459d018890b81ee780148ba929933d", + "dwd_hash": "21510054842f82ca1f66350009a26111" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "d8136ba2d457be6426d59a19a1aa6de2", + "dwd_hash": "1d5f7efb2d5a18ff05819b6c3281103b" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "d2098b4f83547148cfd9a01e869d4a91", + "dwd_hash": "971e8c68a7fe3c9f57b4e1c2c9bb77d3" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "82718d5fb4d28685a092e794b7d41223", + "dwd_hash": "776c04ce71c8d365f2e21c8b91b0fb8d" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "2cb5cc1ced5c56b58d3841c4b7acff4a", + "dwd_hash": "cb82df04044977c1d94c27220220a575" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "95ea0f92869b9b15863ef66dc05577c6", + "dwd_hash": "e5f1e1595f54c343589bbc174d053f7f" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "d810330951398f69efacb86197591ac1", + "dwd_hash": "10214fc034f209e9268eb403108994d8" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "2d454e73746c859f837965cf8056857f", + "dwd_hash": "25b221661fcdafdcda2756fb6cb5c996" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 556, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 358752.92, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 34, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + }, + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + }, + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + }, + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + }, + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + }, + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18878, + "diff": -260 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11756, + "diff": -167 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17320, + "diff": -182 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -38953, + "total_mismatch": 131246 + }, + "generated_at": "2026-01-31T20:41:47.172006+08:00" + } + ], + "api_to_ods": { + "total_missing": 170, + "total_mismatch": 0, + "total_errors": 0 + }, + "total_missing": 170, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T20:41:47.172030+08:00", + "backfill_result": { + "total_missing": 171, + "total_mismatch": 0, + "backfilled": 171, + "errors": 0, + "details": [ + { + "task_code": "ODS_TABLE_USE", + "missing": 41, + "mismatch": 0, + "backfilled": 41, + "error": null + }, + { + "task_code": "ODS_PAYMENT", + "missing": 48, + "mismatch": 0, + "backfilled": 48, + "error": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 41, + "mismatch": 0, + "backfilled": 41, + "error": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 41, + "mismatch": 0, + "backfilled": 41, + "error": null + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10165, + "records_with_pk": 10165, + "missing": 1, + "missing_samples": [ + { + "id": 3075246690649733 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11986, + "records_with_pk": 11986, + "missing": 1, + "missing_samples": [ + { + "id": 3075246688487045 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17361, + "records_with_pk": 17361, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8294, + "records_with_pk": 8294, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + } + ], + "total_missing": 2, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T20:47:21.905341+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18919, + "diff": -18918 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 18708, + "diff": -18708 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "0774ca8ce64facac289eaeced2665034", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "0c7aab44e7780d64258ecd077db0d08d", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "3e6ac0bf585fef565a29630ce1826896", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "18b954a759b6ea861725b62b731eb0c9", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "1a459d018890b81ee780148ba929933d", + "dwd_hash": "21510054842f82ca1f66350009a26111" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "d8136ba2d457be6426d59a19a1aa6de2", + "dwd_hash": "1d5f7efb2d5a18ff05819b6c3281103b" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "d2098b4f83547148cfd9a01e869d4a91", + "dwd_hash": "971e8c68a7fe3c9f57b4e1c2c9bb77d3" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "82718d5fb4d28685a092e794b7d41223", + "dwd_hash": "776c04ce71c8d365f2e21c8b91b0fb8d" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "2cb5cc1ced5c56b58d3841c4b7acff4a", + "dwd_hash": "cb82df04044977c1d94c27220220a575" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "95ea0f92869b9b15863ef66dc05577c6", + "dwd_hash": "e5f1e1595f54c343589bbc174d053f7f" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "d810330951398f69efacb86197591ac1", + "dwd_hash": "10214fc034f209e9268eb403108994d8" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "2d454e73746c859f837965cf8056857f", + "dwd_hash": "25b221661fcdafdcda2756fb6cb5c996" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 556, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 358752.92, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 34, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + }, + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + }, + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + }, + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + }, + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + }, + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18919, + "diff": -301 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2889961229945221, + "ods_hash": "f1027a7cbc0fb94eb109ef9bd9b58429", + "dwd_hash": "ad63e5b8d1bfdb9cd3bafac24b142a39" + }, + { + "assistant_trash_event_id": 2891239227673029, + "ods_hash": "10f3ac28b3a2b9782e0bbbfdef7d0db2", + "dwd_hash": "796d3d52f1bbc01f61fa4a58d8b06059" + }, + { + "assistant_trash_event_id": 2896889023973893, + "ods_hash": "33d064374327bd577b74a3f396303e6e", + "dwd_hash": "699cdb0ef871baac02e3e45598521874" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11797, + "diff": -208 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17361, + "diff": -223 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -39117, + "total_mismatch": 131246 + }, + "generated_at": "2026-01-31T20:47:37.992759+08:00" + } + ], + "api_to_ods": { + "total_missing": 2, + "total_mismatch": 0, + "total_errors": 0 + }, + "total_missing": 2, + "total_mismatch": 0, + "total_errors": 0, + "generated_at": "2026-01-31T20:47:37.992788+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_205713.json b/etl_billiards/reports/data_integrity_window_20260131_205713.json new file mode 100644 index 0000000..f542ba4 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_205713.json @@ -0,0 +1,7787 @@ +{ + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "segments": 1 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2026-01-29T23:00:00+08:00", + "cutoff": null, + "window_days": 212, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 14, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "e918e5fcd77b5a091ec1bcfc62cbdf1d0252d54b47adf0b7f3529f405f04904a" + }, + { + "id": 2964640248745157, + "content_hash": "ec4e460ef8d1abcb38b70e8ba0d78f422e8db4bc13827cb405878ad188d45b5b" + }, + { + "id": 2920786464294661, + "content_hash": "757f24e9e2af418db76dcff1b999efc04a9859b36c98296b9110e58db297bf47" + }, + { + "id": 2861304461364293, + "content_hash": "fca881353844c8ea6692f5312445f44ca9dc6f0455f94d5c9602c4203d57ac12" + }, + { + "id": 2793363001774149, + "content_hash": "b50156e24a53b4ad8403f6df7fb43c3d4b4f7c603d9c50632773e556046122d3" + }, + { + "id": 2793530479530053, + "content_hash": "41ab7c30820af3e6accd474a76205adb8d67efa6918050384461c6f21dd3e4ef" + }, + { + "id": 2793486361710725, + "content_hash": "ee6b0365d5b660ff3b91e3e3d26cee106e7e8bbd7c27c72dbfc7666c2d1cbedf" + }, + { + "id": 2964673443302213, + "content_hash": "e918e5fcd77b5a091ec1bcfc62cbdf1d0252d54b47adf0b7f3529f405f04904a" + }, + { + "id": 2964640248745157, + "content_hash": "ec4e460ef8d1abcb38b70e8ba0d78f422e8db4bc13827cb405878ad188d45b5b" + }, + { + "id": 2920786464294661, + "content_hash": "757f24e9e2af418db76dcff1b999efc04a9859b36c98296b9110e58db297bf47" + }, + { + "id": 2861304461364293, + "content_hash": "fca881353844c8ea6692f5312445f44ca9dc6f0455f94d5c9602c4203d57ac12" + }, + { + "id": 2793363001774149, + "content_hash": "b50156e24a53b4ad8403f6df7fb43c3d4b4f7c603d9c50632773e556046122d3" + }, + { + "id": 2793530479530053, + "content_hash": "41ab7c30820af3e6accd474a76205adb8d67efa6918050384461c6f21dd3e4ef" + }, + { + "id": 2793486361710725, + "content_hash": "ee6b0365d5b660ff3b91e3e3d26cee106e7e8bbd7c27c72dbfc7666c2d1cbedf" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 21517, + "records_with_pk": 21517, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 109, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10167, + "records_with_pk": 10167, + "missing": 3, + "missing_samples": [ + { + "id": 3075251053512261 + }, + { + "id": 3075250998658693 + }, + { + "id": 3075246690649733 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 4529, + "records_with_pk": 4529, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 84, + "records_with_pk": 84, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 11988, + "records_with_pk": 11988, + "missing": 3, + "missing_samples": [ + { + "id": 3075251051136581 + }, + { + "id": 3075250996315782 + }, + { + "id": 3075246688487045 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 60, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 39, + "records_with_pk": 39, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17361, + "records_with_pk": 17361, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 4, + "mismatch_samples": [ + { + "id": 3048238811858693, + "content_hash": "dc0ee79166ee805d22f849e9d3703b3eb47e7ebb893bd767b9526d7bc6537dc2" + }, + { + "id": 2969257129938053, + "content_hash": "9221cd927ed9c6e534098c0a4c78f96d2fadf8cca7571a9065bfb01244ab8b09" + }, + { + "id": 2820625955784965, + "content_hash": "1db11e0c4bc8eb43b1196c83821b306097e9de4380c49becfdd7b025a840517c" + }, + { + "id": 2799207359858437, + "content_hash": "4386faf525fb056526b9008eab362fef273d17e165f7bbe0595e29617030e06e" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 6, + "mismatch_samples": [ + { + "id": 3048238812202757, + "content_hash": "d40491d1b60dcb7ecbf453ee18c6ba49db9cdad5590ff3c195908200ba30b751" + }, + { + "id": 2969257130232965, + "content_hash": "a971741a5737d7e1da9090a9b32130eac2f1c0c5545613c4e13c66b817f9079e" + }, + { + "id": 2820628983728389, + "content_hash": "a7424d5dc77ae16960ca1ff415226f3ecd5ee6ee9dfc008e06e9e6161747264c" + }, + { + "id": 2820628725778629, + "content_hash": "2e55d5ce1175e7e6a7623efe7de34223b97582d4cc0f046c6798ab86c0ad3724" + }, + { + "id": 2800824360437893, + "content_hash": "54660dedc3cd3006262b2689defc9e5f0c99539b075e53b733e84bad3a70f935" + }, + { + "id": 2799218552833797, + "content_hash": "33fc37be45fcb1133b4713746285def8cd3cf0d8d7d03099fac0c046ffc7ec94" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2508, + "records_with_pk": 2508, + "missing": 7, + "missing_samples": [ + { + "id": 3075202192983621 + }, + { + "id": 3075196242314693 + }, + { + "id": 3075196242068933 + }, + { + "id": 3075157090633349 + }, + { + "id": 3075112036091269 + }, + { + "id": 3075112035845509 + }, + { + "id": 3075088133490117 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 414, + "records_with_pk": 414, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8295, + "records_with_pk": 8295, + "missing": 2, + "missing_samples": [ + { + "id": 3075251054249541 + }, + { + "id": 3075250999232133 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 20, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "d875b37b39ef804fbf6b603f60c29ffc80b45dd14e2236d2c54c81aaf7598771" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "bddd43fe44d2ef8c7c601c145862bd97d74d93ee05a164873adc5af20c870044" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "0f2a44da0e346be3b1cde9ca2006dad267147b73824cae26e52e75edb2d16ba6" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "7367cd44d7efde11ca25d56992c97f3f615e0eb11d932c407b79e2ec8ca564bd" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "54b502c56dfd97c160ec651461714bf36007112265de29941b153d2c19098e71" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "85baea133d63e0871e99fb5d14a696595cd5b018474b6cfb94f168becc0c7818" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 28811, + "records_with_pk": 28811, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 145, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 37, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "a018de5581486084d69d06dd03b4b938c17ad80f1e43687645e8e72dbec66f6a" + }, + { + "id": 2792521437958213, + "content_hash": "cbf7511726613e891e48ab3aba2edcbee7bd9a34ea491844d973efab5c6892e3" + }, + { + "id": 2793001695301765, + "content_hash": "54a181e29e95362ffbb0bcd1e0634a671c89a8892fe5253e09d0c09685a6d01f" + }, + { + "id": 2793001904918661, + "content_hash": "66bc5aebc5d7fd8ae060782ad7eedef6bde014db52270221517ff1c4e76aea8a" + }, + { + "id": 2793002509209733, + "content_hash": "cfedaaa6932d6b7a92c31dffadb56d9c458d408c00a7d793ff8d2bc6fa802470" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "bb3ef5612d183ac1e4649685ac6f5b30eef21ef6c8bedcee18b4bb459b69427b" + }, + { + "id": 2793002896494725, + "content_hash": "4b5fdb34a2108719abefdfc1f88d4f1eef3d9fcc2ed733871910e3d37e5db253" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "0b47ff314c80f1928b336aa9b68bf9c193dde4c3c9f6aa0c6c2ceeb5c8d52436" + }, + { + "id": 2793003159474245, + "content_hash": "34bc96deafb9a89f61cc75f6c61c58cede8d71b48420cc66e753a7a470be2cd4" + }, + { + "id": 2793003243294789, + "content_hash": "91c8058ece1b8b493e81ec5c8cd2fa7aed2cf35d4be57ac51b2879502ffdc12e" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "71602bd394f9d6493f254c3bc4d58639c583d57196c07a4d575daf55ff362c5d" + }, + { + "id": 2793003506815045, + "content_hash": "6840a80791a14f55976950e3060abed2196260643861076a22d6ef6ac6768c59" + }, + { + "id": 2793003618340933, + "content_hash": "6094f7af67a8baed858ae531e71d43b73adb39b4e65296e70d98caaf787b544f" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "9766b890e5bf134cecd8cbd08c1ccc3697d0ea084004da1a1265e700e2b4b56e" + }, + { + "id": 2793010820304965, + "content_hash": "0198b639dae614e608c908d9bde1056e3027ac42ca009a2e20af2ed6a201b2ca" + }, + { + "id": 2793012902121605, + "content_hash": "599b85ce212c1dd5f340d00986e0a86f081fe8a3676d5fcfbc2309d7feb730b8" + }, + { + "id": 2793012902154373, + "content_hash": "c6f1d0805160d30a73f8041cc2eb64eba546f1f811974288ffc1255d5e45c039" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "2ce0f23062e7ac8eb894e282d674334a81f5f9c942ebec4c40a0737a9f13d9e8" + }, + { + "id": 2793012902318213, + "content_hash": "c08077a42acbb2e27af704eafa7146c425779d75dce7c71153413f44098525c9" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "bd5520d6c65c59388438fa3890a1363c58617a51e0537982038aac14d2676ed3" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "2adc2afd08b8261056ac1a44223713f95b983dba72834106f999c7c8d311f326" + }, + { + "id": 2793017278582917, + "content_hash": "0ae6e818f172379a042707648362c470fd2396816e3adc818b251ceafd4c3b8f" + }, + { + "id": 2793018776604805, + "content_hash": "66b17c6397c69ddec0571bec4bd4b450ea35ffdb305bbd8a9af502b7ce3495e7" + }, + { + "id": 2793018776735877, + "content_hash": "02ff8f682b453f48ab35c44298d155dc3965d8d0ba2342e993db00e14b669650" + }, + { + "id": 2793020259897413, + "content_hash": "ad69be73fffcc34f8e908ece46105c28ef87de7fe23a2b173847a8b67fb8afde" + }, + { + "id": 2793020259946565, + "content_hash": "45e74e5a95ba3518c5e3bd407d643721a84981f4a10e9f2fb30d5754b18ae050" + }, + { + "id": 2793020259995717, + "content_hash": "a3b5e02895afedc878b777a6916abc287b34a4c6bc0c88ad71158155027ca05d" + }, + { + "id": 2793020260044869, + "content_hash": "9a5f1c7841b045da9b7a0ed0e0ea341c9b710773097c052da2376d0494d7bbe4" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 20, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "f69a32292fd913f4cc953821f5cedef11b82173013a9fa2cbe94f704f41615ee" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025863290949, + "content_hash": "a1e5ffa848e9be43c1638a2da36804472b8f3ca8247673b40ec65ebdf55fd5dc" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "9e075d80760cce8030aaa5ab698d09d02f1931351345b11dceca0bd2bfd0118b" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "debdca0f03280b1f39ab0cb9ed39e3176295b3a1bfe142c4b2f335f8ee3a4102" + }, + { + "id": 2793026180501573, + "content_hash": "ed603c6341f04f639de87f90fd09303d28bc81504a20a1ad9e9733a549805c95" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "42f09825009f5e13bec011bd438a411f24c86a305dab691ef5cf5dfde434199b" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1784, + "records_with_pk": 1784, + "missing": 2, + "missing_samples": [ + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 22176, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 113, + "skipped_missing_pk": 22176, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 17, + "total_mismatch": 101, + "total_errors": 0, + "generated_at": "2026-01-31T20:56:56.426033+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18919, + "diff": -18918 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 18708, + "diff": -18708 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "0774ca8ce64facac289eaeced2665034", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "0c7aab44e7780d64258ecd077db0d08d", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "3e6ac0bf585fef565a29630ce1826896", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "18b954a759b6ea861725b62b731eb0c9", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "1a459d018890b81ee780148ba929933d", + "dwd_hash": "21510054842f82ca1f66350009a26111" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "d8136ba2d457be6426d59a19a1aa6de2", + "dwd_hash": "1d5f7efb2d5a18ff05819b6c3281103b" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "d2098b4f83547148cfd9a01e869d4a91", + "dwd_hash": "971e8c68a7fe3c9f57b4e1c2c9bb77d3" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "82718d5fb4d28685a092e794b7d41223", + "dwd_hash": "776c04ce71c8d365f2e21c8b91b0fb8d" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "2cb5cc1ced5c56b58d3841c4b7acff4a", + "dwd_hash": "cb82df04044977c1d94c27220220a575" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "95ea0f92869b9b15863ef66dc05577c6", + "dwd_hash": "e5f1e1595f54c343589bbc174d053f7f" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "d810330951398f69efacb86197591ac1", + "dwd_hash": "10214fc034f209e9268eb403108994d8" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "2d454e73746c859f837965cf8056857f", + "dwd_hash": "25b221661fcdafdcda2756fb6cb5c996" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 556, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 358752.92, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 34, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + }, + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + }, + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + }, + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + }, + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + }, + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23712, + "diff": -103 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18618, + "ods": 18708, + "diff": -90 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 325200.51, + "ods_sum": 326106.36, + "diff": -905.8499999999767 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 964736.02, + "ods_sum": 968916.63, + "diff": -4180.609999999986 + }, + { + "column": "ledger_amount", + "dwd_sum": 2140658.79, + "ods_sum": 2148028.49, + "diff": -7369.700000000186 + }, + { + "column": "member_discount_amount", + "dwd_sum": 192897.78, + "ods_sum": 193226.5, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 854561.34, + "ods_sum": 766441.38, + "diff": 88119.95999999996 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18919, + "diff": -301 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 3116.75, + "ods_sum": 3116.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 373588.1, + "ods_sum": 373588.1, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 351914.9, + "ods_sum": 351914.9, + "diff": 0.0 + } + ], + "mismatch": 17563, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5065, + "ods": 5065, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 11071.07, + "ods_sum": 11071.07, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 1587425.57, + "ods_sum": 1587425.57, + "diff": 0.0 + } + ], + "mismatch": 5065, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "3cfec5f8ecc4879d462c20aecd71b24f", + "dwd_hash": "94bdda90a117d5a1c86f50ad6f3abc0f" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "77a28e13058ba6608a98418512fae2e2", + "dwd_hash": "df140366b5a5cf8af97befaa61e2ab0b" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "b03e68f686699272eeed37723cbcc0a5", + "dwd_hash": "3a711b5c59c7fede2f12bb70a1609438" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "c8c1d7bf3581c8e7c0e780f172aa20ab", + "dwd_hash": "8314a71234b6304c20a498878b284b5d" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "3c8113e3a370e9806f79d1f1fc5c40e9", + "dwd_hash": "d6026462af11cb6b74196791c5f67c6e" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "019b0565e3c7aeb4cf3a3ae407888127", + "dwd_hash": "a33d315bb057aa738ce33e0588e6f45c" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "7fcc91e59c8ea665d18e813e171b48a5", + "dwd_hash": "c3502cc7c6b62f26f53638a19caa25bf" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "5319eb72093bb7ccd2a849d4a2ec582d", + "dwd_hash": "7f9aba248359552065008fb16a78a5ea" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "d3539ae3ca82e90b3162d6d1ca0fd9e6", + "dwd_hash": "b3e533063c90a2e24b90c784a3266a77" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "421a9a4b1e02ca8e21518fdc05698945", + "dwd_hash": "cd01025998a24c64eaaa0e34101f2238" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5065, + "diff": -15 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4858, + "diff": -56 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11589, + "ods": 11657, + "diff": -68 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 740236.0, + "ods_sum": 744680.0, + "diff": -4444.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 709565.6, + "ods_sum": 713746.21, + "diff": -4180.609999999986 + } + ], + "mismatch": 11589, + "mismatch_samples": [ + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11797, + "diff": -208 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 17138, + "ods": 17202, + "diff": -64 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 1112328.0, + "ods_sum": 1116330.0, + "diff": -4002.0 + } + ], + "mismatch": 17138, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17361, + "diff": -223 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 462, + "diff": -2 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 23200, + "ods": 23306, + "diff": -106 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 2262633.0, + "ods_sum": 2278578.0, + "diff": -15945.0 + } + ], + "mismatch": 23200, + "mismatch_samples": [ + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 45, + "ods": 45, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -68999.0, + "ods_sum": -68999.0, + "diff": 0.0 + } + ], + "mismatch": 45, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + }, + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -39117, + "total_mismatch": 131246 + }, + "generated_at": "2026-01-31T20:57:13.757171+08:00" + } + ], + "api_to_ods": { + "total_missing": 17, + "total_mismatch": 101, + "total_errors": 0 + }, + "total_missing": 17, + "total_mismatch": 101, + "total_errors": 0, + "generated_at": "2026-01-31T20:57:13.757198+08:00" +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_232429.json b/etl_billiards/reports/data_integrity_window_20260131_232429.json new file mode 100644 index 0000000..93f6ecd --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_232429.json @@ -0,0 +1,102219 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 4, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10186, + "records_with_pk": 10186, + "missing": 4, + "missing_samples": [ + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12012, + "records_with_pk": 12012, + "missing": 8, + "missing_samples": [ + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17368, + "records_with_pk": 17368, + "missing": 1, + "missing_samples": [ + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2511, + "records_with_pk": 2511, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8308, + "records_with_pk": 8308, + "missing": 1, + "missing_samples": [ + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "4ab8e586d1e6ab524344c07f811909ee33c1e6cdd7ed34687205f446fee0211d" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "0f2a44da0e346be3b1cde9ca2006dad267147b73824cae26e52e75edb2d16ba6" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "4a7f509fade440b171f9debdd35e3098f5b96b9e0d7c3cab07837767588232d3" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "54b502c56dfd97c160ec651461714bf36007112265de29941b153d2c19098e71" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "76392f0fb3f0275a56424b2764625d9c9d6002ad820e5cd257088aacbe142a7e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 41, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "b3eb17b35aa218cc715e9c325c334b0253b250cdf579688dc648450c71abab9c" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "cfedaaa6932d6b7a92c31dffadb56d9c458d408c00a7d793ff8d2bc6fa802470" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "bb3ef5612d183ac1e4649685ac6f5b30eef21ef6c8bedcee18b4bb459b69427b" + }, + { + "id": 2793002896494725, + "content_hash": "824f4b8cdf77ed8d33b7c59fd0ab6b95735a2982265819d2943e734fc53ad10c" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "6840a80791a14f55976950e3060abed2196260643861076a22d6ef6ac6768c59" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "458a8b225c607e196d3c7aa99aae986391d178dd3efa859a55e69ab340570e6c" + }, + { + "id": 2793012902121605, + "content_hash": "599b85ce212c1dd5f340d00986e0a86f081fe8a3676d5fcfbc2309d7feb730b8" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "c08077a42acbb2e27af704eafa7146c425779d75dce7c71153413f44098525c9" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "3b5970bfd6989403ce780eef0c7b0f87bffb9ec8c0f554ffdb0f43785b7a6b87" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "3d65766c057e61f3d7da58e5e8456f5e9b85d3b268a981cb783989589cf96d22" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "a1e5ffa848e9be43c1638a2da36804472b8f3ca8247673b40ec65ebdf55fd5dc" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "51e6937925f4fc3d9d19cd3b8b734f9280210bc9ad876d4ec44d0f647abc5e04" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "9ddf32b7153743769305c88fbaf860ec48ef0c8dfc471b09d0156218e1724292" + }, + { + "id": 2793026180501573, + "content_hash": "ed603c6341f04f639de87f90fd09303d28bc81504a20a1ad9e9733a549805c95" + }, + { + "id": 2793026180993093, + "content_hash": "7f2654b7eb6e91fb2852d98ecf66f1db01288caccbde6ff7d4e8da735f763601" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 20, + "total_mismatch": 93, + "total_errors": 0, + "generated_at": "2026-01-31T22:01:36.101131+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -20230, + "total_mismatch": 36252 + }, + "generated_at": "2026-01-31T22:01:54.656738+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2793530479530053, + "content_hash": "680509ccc097c444aa703edbf7bb23c098ab92fdba889afa40b8840a2b67e287" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10187, + "records_with_pk": 10187, + "missing": 5, + "missing_samples": [ + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12013, + "records_with_pk": 12013, + "missing": 9, + "missing_samples": [ + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17368, + "records_with_pk": 17368, + "missing": 1, + "missing_samples": [ + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8308, + "records_with_pk": 8308, + "missing": 1, + "missing_samples": [ + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "4ab8e586d1e6ab524344c07f811909ee33c1e6cdd7ed34687205f446fee0211d" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "4a7f509fade440b171f9debdd35e3098f5b96b9e0d7c3cab07837767588232d3" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "54b502c56dfd97c160ec651461714bf36007112265de29941b153d2c19098e71" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "5ba29f2390699e712fb0578dc2e6c876142a0235dfe52b3eeff4186287703a01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "b3eb17b35aa218cc715e9c325c334b0253b250cdf579688dc648450c71abab9c" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "cfedaaa6932d6b7a92c31dffadb56d9c458d408c00a7d793ff8d2bc6fa802470" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "bb3ef5612d183ac1e4649685ac6f5b30eef21ef6c8bedcee18b4bb459b69427b" + }, + { + "id": 2793002896494725, + "content_hash": "74d2813a52b7d961e97ba91ab67ff77e98b6f508d9b1810c184bb0324324d86a" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "6840a80791a14f55976950e3060abed2196260643861076a22d6ef6ac6768c59" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "458a8b225c607e196d3c7aa99aae986391d178dd3efa859a55e69ab340570e6c" + }, + { + "id": 2793012902121605, + "content_hash": "599b85ce212c1dd5f340d00986e0a86f081fe8a3676d5fcfbc2309d7feb730b8" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "24ee2f705b44de67e94dd3449beb74aaff38870687a7aca6b0a1e1609c89712a" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "3d65766c057e61f3d7da58e5e8456f5e9b85d3b268a981cb783989589cf96d22" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "a1e5ffa848e9be43c1638a2da36804472b8f3ca8247673b40ec65ebdf55fd5dc" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "72c477c0f52a817e1eb593542e783e3d6cce8affe6da4c7465c52282d87a5f15" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "9ddf32b7153743769305c88fbaf860ec48ef0c8dfc471b09d0156218e1724292" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "7f2654b7eb6e91fb2852d98ecf66f1db01288caccbde6ff7d4e8da735f763601" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 23, + "total_mismatch": 97, + "total_errors": 0, + "generated_at": "2026-01-31T22:05:09.203711+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [], + "mismatch": 23, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "8d78e002b0e218a7a6762063f7fc1a41", + "dwd_hash": "21510054842f82ca1f66350009a26111" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "9c952c3acb0dc876475a5b1f3894ec11", + "dwd_hash": "1d5f7efb2d5a18ff05819b6c3281103b" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "7ba006db5bb328146c796ee7995b9173", + "dwd_hash": "971e8c68a7fe3c9f57b4e1c2c9bb77d3" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "7af670d98c687771e1bf88aaf756303d", + "dwd_hash": "776c04ce71c8d365f2e21c8b91b0fb8d" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "a7cf68b4b97f3a5ed1df6a0a1b42c45d", + "dwd_hash": "cb82df04044977c1d94c27220220a575" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [], + "mismatch": 466, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 751, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [], + "mismatch": 149, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [], + "mismatch": 14, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ], + "mismatch": 1246, + "mismatch_samples": [ + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ], + "mismatch": 1575, + "mismatch_samples": [ + { + "store_goods_sale_id": 2803522768178373, + "ods_hash": "01e7cc478a0234643d579fcb4d5ce33a", + "dwd_hash": "46a8ddad80a4b89d2d6fbc30ee255cc3" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2814899857361605, + "ods_hash": "923e5ae4e9c7931f6d89dbb26c893237", + "dwd_hash": "21f31b7c51e685dc81c90063b2c3966d" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ], + "mismatch": 351, + "mismatch_samples": [ + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + }, + { + "assistant_service_id": 2802363811252293, + "ods_hash": "93627910a5181e201965a44ca86702c1", + "dwd_hash": "16eb97fb27fcbd1f5ecc683f0bc077c2" + }, + { + "assistant_service_id": 2802363811465285, + "ods_hash": "6c5588429261bd47f8f96b8752ea0952", + "dwd_hash": "20882640d390668cba5a5834d084d930" + }, + { + "assistant_service_id": 2802363811678277, + "ods_hash": "51c818d5ae1917427e60cbd8835797b5", + "dwd_hash": "2116101c9c5f4d21d13f629510fbe591" + }, + { + "assistant_service_id": 2802394734644421, + "ods_hash": "327b45e89b493bcc9e004aedac4ef95f", + "dwd_hash": "7886f0936fc9e5b8335815271699caaf" + }, + { + "assistant_service_id": 2802394734890181, + "ods_hash": "f22f371f9de79af3ef22cd0b76e33338", + "dwd_hash": "f0416ea6ae7289cf65ae1fb00582aaec" + }, + { + "assistant_service_id": 2802394735103173, + "ods_hash": "ef94e963ad77877b106f6df6c90bce57", + "dwd_hash": "5a8b413b21563130fad67d841efddb19" + }, + { + "assistant_service_id": 2802394735332549, + "ods_hash": "397e0023f16027966ab332ea39ff93d3", + "dwd_hash": "c129c37dff5a85cdec85515a3c14ce1a" + }, + { + "assistant_service_id": 2802399882299461, + "ods_hash": "0b13fdafc344807ddfebf663c3f1db04", + "dwd_hash": "c3966341fc20ade840292f89584bc016" + }, + { + "assistant_service_id": 2802399882528837, + "ods_hash": "0221abbddaaa5140a54b28cd708b4b1b", + "dwd_hash": "561472456c6de33ae0ad6fa01770cced" + }, + { + "assistant_service_id": 2802457542379589, + "ods_hash": "8351c42c605e3df4f9706a58486c41f9", + "dwd_hash": "b9f638f1df97e5122fd1189fd7f207f5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ], + "mismatch": 1007, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ], + "mismatch": 1833, + "mismatch_samples": [ + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21476, + "total_mismatch": 43667 + }, + "generated_at": "2026-01-31T22:05:26.361745+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10187, + "records_with_pk": 10187, + "missing": 5, + "missing_samples": [ + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12013, + "records_with_pk": 12013, + "missing": 9, + "missing_samples": [ + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17368, + "records_with_pk": 17368, + "missing": 1, + "missing_samples": [ + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8311, + "records_with_pk": 8311, + "missing": 3, + "missing_samples": [ + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "4ab8e586d1e6ab524344c07f811909ee33c1e6cdd7ed34687205f446fee0211d" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "4a7f509fade440b171f9debdd35e3098f5b96b9e0d7c3cab07837767588232d3" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1b0a80e00f278ac29f86b019387578b2606ee83bd6119ad6edb34a7b69be696e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "b3eb17b35aa218cc715e9c325c334b0253b250cdf579688dc648450c71abab9c" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "cfedaaa6932d6b7a92c31dffadb56d9c458d408c00a7d793ff8d2bc6fa802470" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "bb3ef5612d183ac1e4649685ac6f5b30eef21ef6c8bedcee18b4bb459b69427b" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "458a8b225c607e196d3c7aa99aae986391d178dd3efa859a55e69ab340570e6c" + }, + { + "id": 2793012902121605, + "content_hash": "599b85ce212c1dd5f340d00986e0a86f081fe8a3676d5fcfbc2309d7feb730b8" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "2dc7c156f99bdf8fc83b23e54bb9d98ffc02a58d92f2f29c947812699803d627" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "f54d17f31fab57a0c7bfb4720a0ef6b5b60ac9ea455c9f4333abfefa1291e4c5" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "9ddf32b7153743769305c88fbaf860ec48ef0c8dfc471b09d0156218e1724292" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "7f2654b7eb6e91fb2852d98ecf66f1db01288caccbde6ff7d4e8da735f763601" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 25, + "total_mismatch": 98, + "total_errors": 0, + "generated_at": "2026-01-31T22:09:20.623151+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [], + "mismatch": 7, + "mismatch_samples": [ + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "95ea0f92869b9b15863ef66dc05577c6", + "dwd_hash": "e5f1e1595f54c343589bbc174d053f7f" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [], + "mismatch": 18, + "mismatch_samples": [ + { + "member_id": 2817491019861701, + "ods_hash": "64715bf3a0935051f3110e208951224a", + "dwd_hash": "7324e3394ea605678aece7cf0c6a2d69" + }, + { + "member_id": 2820625955784965, + "ods_hash": "0a67b2b237aec2a3cc8fc49c3b134af9", + "dwd_hash": "1c1b03ba65e51c08259e3b5dc221228d" + }, + { + "member_id": 2824666609323205, + "ods_hash": "ba649eda785c327c9d56f2c62122dedb", + "dwd_hash": "89d0e57e5490e1b6611bb37f6a3e166c" + }, + { + "member_id": 2827380844252229, + "ods_hash": "68a7985928f282bda0381d0efd886ec8", + "dwd_hash": "68cae67c8f7235842cb6ffd4280d2a35" + }, + { + "member_id": 2831769896094917, + "ods_hash": "2b95d2b57f6e865af2bcced6d95dadaf", + "dwd_hash": "56c1c617e03d245ff1b460f266a16cc4" + }, + { + "member_id": 2834033031598725, + "ods_hash": "c85bcf991b075ee72ee992d0861a8226", + "dwd_hash": "b4956ce392d2bc937dd92417793a4ac3" + }, + { + "member_id": 2837539913779333, + "ods_hash": "3d5d7aa85551cbf1cad3c8d43940ba9f", + "dwd_hash": "8c4fb65492a8beb02538f8e0e32aa2fa" + }, + { + "member_id": 2840365873464901, + "ods_hash": "c3dd902083269aaa6776bd5180694f55", + "dwd_hash": "e5102dca54441fd3758b614c21a7e66a" + }, + { + "member_id": 2844424744569925, + "ods_hash": "c1fc85e8ec09470cf7dc0752869364bc", + "dwd_hash": "844d50965151cd09a927ba36d40ea81c" + }, + { + "member_id": 2844990190242821, + "ods_hash": "fef89181b49d82a61c2f09c86638d501", + "dwd_hash": "122c1fce738b1869e2206e9ab2e8df2a" + }, + { + "member_id": 2846153189592005, + "ods_hash": "c0148f7488b45b173c12b99b59259f11", + "dwd_hash": "14f9e49775a7b3e6b130f58b90cffb3f" + }, + { + "member_id": 2847747357002757, + "ods_hash": "8bbcb917330148f8cf7cd33bf34f1d53", + "dwd_hash": "48cf196622f0912d2687810b0527815c" + }, + { + "member_id": 2848686922632133, + "ods_hash": "44138d9e6d291d52db08690be1672054", + "dwd_hash": "c02ea97a603de03eee3cf45445e77f98" + }, + { + "member_id": 2849995548625861, + "ods_hash": "f1f4c5c7a6410582c7b7171f009c8d63", + "dwd_hash": "ebb2ecb6ae8356ae9ead021c9d1494a6" + }, + { + "member_id": 2852938817408709, + "ods_hash": "ec31b57177373e8ee152e8e1375287fc", + "dwd_hash": "dc8ff664d887e4243cb30f584cf6810c" + }, + { + "member_id": 2853881398644101, + "ods_hash": "fc06b5550d56dd4501de4e9ee42b506e", + "dwd_hash": "48276af881a50472a25b84a83f3765f8" + }, + { + "member_id": 2854141942400709, + "ods_hash": "04c88b7f6e22c2d025ec410737757bea", + "dwd_hash": "8126c94bd4844a6bdef2c3a6c1433acc" + }, + { + "member_id": 2854163871024645, + "ods_hash": "c5e67b4719cec4c87e572b569db98851", + "dwd_hash": "877829ada3c7804274967b060a17bda3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 51, + "mismatch_samples": [ + { + "member_card_id": 2815108067970885, + "ods_hash": "8ef14472dfa2ad17821a22c95b68a8b0", + "dwd_hash": "3b3893f61d3f1bb865892314341a3585" + }, + { + "member_card_id": 2817491020107461, + "ods_hash": "8d357bc754709dcd013f9371cdd2aa99", + "dwd_hash": "6b8729e71c2b7108ab9aa3ce25cd9d79" + }, + { + "member_card_id": 2818031136034501, + "ods_hash": "78e9198960a52fa21bea0ec72db9410f", + "dwd_hash": "057c4c3e33a8f964d2a21b0901354ba7" + }, + { + "member_card_id": 2818227314724613, + "ods_hash": "e120c9e3616b645ed9d807515efddef5", + "dwd_hash": "ec488059079281a84be83394f5cab3e4" + }, + { + "member_card_id": 2818731958570565, + "ods_hash": "d6987c6ad3fc5290014a6eefb59dfe76", + "dwd_hash": "7c5299e8dc3134786064d1cabf66ab12" + }, + { + "member_card_id": 2820249101142021, + "ods_hash": "ad10d2f939ace02add7117b6480ae934", + "dwd_hash": "9de5cc377ebcce317ff81050e8a5f503" + }, + { + "member_card_id": 2820625956014341, + "ods_hash": "253997bed3c0ecfcc63fa2fb75549553", + "dwd_hash": "a5c541d04de316f08c0b82658af41543" + }, + { + "member_card_id": 2820628725778629, + "ods_hash": "faca824b7a0ec79dd904f0e94dae3111", + "dwd_hash": "d73d9c173b69ab1a4a214efe57bc0c93" + }, + { + "member_card_id": 2820628983728389, + "ods_hash": "8c5262b1977849b8f7289114ec4a0a6c", + "dwd_hash": "05535934847b4e114071e4d7e0435e4e" + }, + { + "member_card_id": 2821727959238917, + "ods_hash": "269d66184b379df5b264c42c027c9e5e", + "dwd_hash": "b706968ccd79c84d821e5147dd8262e4" + }, + { + "member_card_id": 2821947676182789, + "ods_hash": "af29f4c139e011764e44755088c5fa7c", + "dwd_hash": "c6dfccf610beb228484eace2dd5e851b" + }, + { + "member_card_id": 2822329141528837, + "ods_hash": "45b12856bd3e0279086d3501140f0771", + "dwd_hash": "19c37e24c97f6a5b52ca4531ab1012f1" + }, + { + "member_card_id": 2824666609552581, + "ods_hash": "29d6f7d69a740bfe8f8fb10d27f7d255", + "dwd_hash": "b29493a99d47f34cdfedbba5653fea58" + }, + { + "member_card_id": 2825889494584517, + "ods_hash": "373db7faa6f0ac7f0278cd384ec0c548", + "dwd_hash": "2865ac01a9ec78425d55a706a9270465" + }, + { + "member_card_id": 2827308686380165, + "ods_hash": "95074b22580d33fa0420bef64c7bf314", + "dwd_hash": "5f2b04f02d41bb6c3d43a3c98d3f9de3" + }, + { + "member_card_id": 2827380844497989, + "ods_hash": "45939f084e61b0034ab9f73c3eb802d3", + "dwd_hash": "867c345954989b2d55e46f1fc4b1484d" + }, + { + "member_card_id": 2827381452835973, + "ods_hash": "342b63611a0361c0afb756bdbe688d4c", + "dwd_hash": "f46c3c16de053816a6de36744d71ba2c" + }, + { + "member_card_id": 2827381540998405, + "ods_hash": "8e1e1bea6b45a80937c484dccceeaf94", + "dwd_hash": "ff5a35df311cb221bdef40e3d606a224" + }, + { + "member_card_id": 2827777100008581, + "ods_hash": "9d8a76477f44e0e22d09da71af04d26d", + "dwd_hash": "c1c500b811d9c602ec19697f0741c6f6" + }, + { + "member_card_id": 2830546961943621, + "ods_hash": "b7eaa7ae78ba4de498fb117a3140fd5d", + "dwd_hash": "ebafa73ada57e05ce682bebaa969ec8e" + }, + { + "member_card_id": 2831769896340677, + "ods_hash": "d29aca1c31e3e75536c27e21325c0b11", + "dwd_hash": "48d940e5d0f2039a4fc542cbeb53bf28" + }, + { + "member_card_id": 2833345652100165, + "ods_hash": "8a43905c7d4ae2db074c7410c1a7c6eb", + "dwd_hash": "595b313de0e4a43c810c38663058cb2c" + }, + { + "member_card_id": 2834033032139397, + "ods_hash": "ae3ed4067dddb337f391cebe87f383b4", + "dwd_hash": "e296072ece42217fb2f89a4ddd22ee20" + }, + { + "member_card_id": 2836326463522885, + "ods_hash": "c0008efbb2b34eab3711a0fae36f1cce", + "dwd_hash": "bdc29f50c819366beebd8ca561a8e7aa" + }, + { + "member_card_id": 2837539914025093, + "ods_hash": "b44598b6c2a7114aa8aa8653a9dd08ab", + "dwd_hash": "e0a08c7aa958422188655cf15a9f1888" + }, + { + "member_card_id": 2837540289677637, + "ods_hash": "f0773aed1d040d78b11ce2b31a1063e8", + "dwd_hash": "41ba45541a2d5649ea4fd71e606b9311" + }, + { + "member_card_id": 2839012675143813, + "ods_hash": "196b60fb8313133f63d0dfc94ccaf343", + "dwd_hash": "d515bb547e4634738ce0784b85a2036e" + }, + { + "member_card_id": 2840365873727045, + "ods_hash": "fc9203211262bd2db8d2bf7a7d75ef16", + "dwd_hash": "47c8677957d8ceb3d8bf71f2255d3290" + }, + { + "member_card_id": 2840366142164677, + "ods_hash": "abe9b46d6829cb018cebaad856575e68", + "dwd_hash": "d07d8b9301ba903f413d8c39fd5ec619" + }, + { + "member_card_id": 2840366209568389, + "ods_hash": "8f8fe547ea43f0d0cb3fe7f176748ea9", + "dwd_hash": "63acc25502d409889ebad5f8084207c0" + }, + { + "member_card_id": 2844424744832069, + "ods_hash": "076ff036484965f3c46e183df3877b8e", + "dwd_hash": "12eac245b67af6e34d09745f09948b85" + }, + { + "member_card_id": 2844990190488581, + "ods_hash": "be48b43d7ccb1fde82dbf9e0e8a2cf95", + "dwd_hash": "0bfe4802d4e27dc17f5093375fbfe697" + }, + { + "member_card_id": 2844990784883781, + "ods_hash": "b0dfb54dc5b608c095ab6e0e32fc85f8", + "dwd_hash": "be4620b58a83881606d198980d983aa0" + }, + { + "member_card_id": 2846153189837765, + "ods_hash": "45d8ad0e1ab9d93a4776fe33bab23410", + "dwd_hash": "306d2e2c31d6254e2862f1991955b06c" + }, + { + "member_card_id": 2846153576238021, + "ods_hash": "a1602543b7fbc1bff0ef6a99d11375bd", + "dwd_hash": "e78e2002831577cc12c4043023cfc42c" + }, + { + "member_card_id": 2847747357248517, + "ods_hash": "4b43dc7b7a17ffb742424cff0987a140", + "dwd_hash": "303c00a6e51a9b38334647917fa33c4a" + }, + { + "member_card_id": 2847747562769541, + "ods_hash": "2cf03128d3b64a840248e0fe8fdf3688", + "dwd_hash": "b3f82fa74b44a8803e4f2a7e41bc734f" + }, + { + "member_card_id": 2848686922910661, + "ods_hash": "6eb03d2428e152a9a974890532cf396b", + "dwd_hash": "cacf0b1b31e863872f67e243b2373d20" + }, + { + "member_card_id": 2848687461583813, + "ods_hash": "3dd69c4ffde10f2c58c1fbf61efb0d48", + "dwd_hash": "f6dad020ef38f69e722b08937d0a71cf" + }, + { + "member_card_id": 2849995548871621, + "ods_hash": "c5e33c687c13aa04ec64fece20a54ff1", + "dwd_hash": "cbd968f4e2648d64f3b77e157a004d3c" + }, + { + "member_card_id": 2849995983768645, + "ods_hash": "c59092c815811c28bb23b5818fbe3e3a", + "dwd_hash": "116b298d64ded26bac81fbe3ad48c6f5" + }, + { + "member_card_id": 2852938817638085, + "ods_hash": "67140d68f8858ea040e2e77d75673be3", + "dwd_hash": "3f4f1c490917908f6255e05a0607bdf4" + }, + { + "member_card_id": 2853799025233797, + "ods_hash": "49b65362a18f556f398898ae78741923", + "dwd_hash": "65479373a9e162ecc21fcbeb0130b713" + }, + { + "member_card_id": 2853881398906245, + "ods_hash": "f435485cc595f2b836fd4a1622776d98", + "dwd_hash": "0e965c1c52563f3acede031dff2f8cb3" + }, + { + "member_card_id": 2853881757159301, + "ods_hash": "bb2218d73bba63c42e5faaf3a29cf16d", + "dwd_hash": "cf5da66c1b3ae9b8b8efd9fd18f1bc9e" + }, + { + "member_card_id": 2853882120703749, + "ods_hash": "e9e12f6de6b9f7fc881013c330c9fca3", + "dwd_hash": "9c776d7cfd027ca5c9020d7dbcbe043b" + }, + { + "member_card_id": 2853883412664005, + "ods_hash": "d5b25d1ba1e7f26bd2a69842ba36d74c", + "dwd_hash": "df37e5f1634eab2c33b0da123b257aeb" + }, + { + "member_card_id": 2854141942662853, + "ods_hash": "337d9097b00eeb098906812d71b973d9", + "dwd_hash": "01b50358ca6864ba3d1cbbfdd23053a1" + }, + { + "member_card_id": 2854163871696389, + "ods_hash": "504929be1836258d7624186bcc720a7c", + "dwd_hash": "786e444fbd6f0bad08e27b3b047adb16" + }, + { + "member_card_id": 2854164219332293, + "ods_hash": "c6527f1693a8620361625397bda8f8fa", + "dwd_hash": "ca7c406ec3638a55796a54be33f80a7d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "tenant_goods_id": 2823319050914565, + "ods_hash": "f4426796897a568385b86cc055b8cbdf", + "dwd_hash": "fa84b3ddd0ab039b664f11f3f0327516" + }, + { + "tenant_goods_id": 2825999662156549, + "ods_hash": "e631b7ac82470837b627bcd071e25df9", + "dwd_hash": "21054342437f62c5dd1b7e5631b26a08" + }, + { + "tenant_goods_id": 2826003270470405, + "ods_hash": "6ad5b263163661c028451fb00eea0219", + "dwd_hash": "54dbac857a236e793e4f24f9ea500625" + }, + { + "tenant_goods_id": 2828836270377733, + "ods_hash": "9a180ba7a6a5264b41119f60cc57cb6c", + "dwd_hash": "6515b154a7980df2e66984c60d062bce" + }, + { + "tenant_goods_id": 2834061165348997, + "ods_hash": "e1b5cf924c741b0df80b48df1561fac1", + "dwd_hash": "3cb63b1bfa8bffc6ee9571018897f3ec" + }, + { + "tenant_goods_id": 2834064312158533, + "ods_hash": "86d1e419613aecff6578298114eca4cc", + "dwd_hash": "6d354e8270f0a3e56279b32b7baa53ea" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ], + "mismatch": 3587, + "mismatch_samples": [ + { + "table_fee_log_id": 2814985972206021, + "ods_hash": "76e3813af265a92d853b13f10c0f1214", + "dwd_hash": "451ca5fa393707b952ca6e7312fbd33c" + }, + { + "table_fee_log_id": 2814998029913413, + "ods_hash": "b245299682524a9bb591b2113138abf4", + "dwd_hash": "c3230b7e5c9d2b83249022ed78992a2e" + }, + { + "table_fee_log_id": 2815007740776133, + "ods_hash": "5faf40762c950c78f670894ba143907e", + "dwd_hash": "6c25c75a34471a15010ef45104942637" + }, + { + "table_fee_log_id": 2815007740792517, + "ods_hash": "c33d9f7bce2f78ad4466efdc05f796d8", + "dwd_hash": "470224891bd0c699176b899cdd4d5a3a" + }, + { + "table_fee_log_id": 2815008603967109, + "ods_hash": "2902f8abfc2d5f2040e074b546386dc8", + "dwd_hash": "aafa01860edbeaf49601e5980a6f161f" + }, + { + "table_fee_log_id": 2815026157325957, + "ods_hash": "5d41edc38dc5264e78fb3737b635706a", + "dwd_hash": "59fabc86d48e1d02089408ed32f715c5" + }, + { + "table_fee_log_id": 2815045005807429, + "ods_hash": "1b0c7bebda4a86501756fe06e3408a2b", + "dwd_hash": "a4e4974083bde827ae5ecb59c5ceb79d" + }, + { + "table_fee_log_id": 2815049223392901, + "ods_hash": "e42ef722c7ab06b23f8f969396460609", + "dwd_hash": "df5551f9e06edb1d5cd7622116f8ba9a" + }, + { + "table_fee_log_id": 2815050753789573, + "ods_hash": "b77ec0e52a937c882a09ff9189061d52", + "dwd_hash": "3c6f2acd41d9719b319d8e5a86c7e5f1" + }, + { + "table_fee_log_id": 2815053686968069, + "ods_hash": "2ce089c20cbddbd395bf7a35b144fc60", + "dwd_hash": "8af56567ac6602166d7146f45a8173c5" + }, + { + "table_fee_log_id": 2815057361407685, + "ods_hash": "d4b57244a4e94f80dfb320cffaa6f42c", + "dwd_hash": "38215f94c24b37b657aa6c1dba6fe61f" + }, + { + "table_fee_log_id": 2815065077092165, + "ods_hash": "b53da518a3abb8cf8c5a619ab760130c", + "dwd_hash": "de2565d74a415ccc1e3738223dd5ee5c" + }, + { + "table_fee_log_id": 2815068579778373, + "ods_hash": "fb9042742f2abc4b4125393bc83a9770", + "dwd_hash": "647f8491ce811dd5207884fe90449525" + }, + { + "table_fee_log_id": 2815068925710085, + "ods_hash": "b01521ee2686b6c2879e08c338b6dab4", + "dwd_hash": "4d9eb0ecfad074d16efd161fefd95bb8" + }, + { + "table_fee_log_id": 2815080294387461, + "ods_hash": "26fc4fef1adf060c4558b43b40ffd5c3", + "dwd_hash": "5e36edceff0b0e8e8c7835f1fa062b93" + }, + { + "table_fee_log_id": 2815081796407109, + "ods_hash": "8bb222d9b4da505d27c8b312b5df64da", + "dwd_hash": "20b442e2ddddc1f24eb556f27d9eb175" + }, + { + "table_fee_log_id": 2815082742222597, + "ods_hash": "3a32f788b69cf53a5314dae98a56bbdf", + "dwd_hash": "60b1ec938f3d5eeb0b49605c09b6a88a" + }, + { + "table_fee_log_id": 2815092451331781, + "ods_hash": "17235596dc03fd1f43a7b32f51fd8fd1", + "dwd_hash": "9c9434a58bd9f7fe4c1394625ba82255" + }, + { + "table_fee_log_id": 2815117514428101, + "ods_hash": "dd66e8f360d38873c0ada5e8ee9dc7b7", + "dwd_hash": "a1852ee4604404d08de7c2291a0b62e8" + }, + { + "table_fee_log_id": 2815120860810949, + "ods_hash": "90a8c93d6979c0348318831cb2c6d7ff", + "dwd_hash": "84bc32633551b53e4b9ff271b83f9fb4" + }, + { + "table_fee_log_id": 2815157254885061, + "ods_hash": "998b36915f9ba1cd3e22893b852e2879", + "dwd_hash": "5196fb4ab7ba25dff2bd30d440217026" + }, + { + "table_fee_log_id": 2815189895171845, + "ods_hash": "d43b803e48a68b5cfccc08a2000ad6c4", + "dwd_hash": "691e2efd12eebda8d2cd5193dc3c54ce" + }, + { + "table_fee_log_id": 2815192882155141, + "ods_hash": "b951662d9d75d2254f1bfccebcccbdd6", + "dwd_hash": "f5f3803c4f584d6b3e0414075ff8606c" + }, + { + "table_fee_log_id": 2815293410987653, + "ods_hash": "09a1e60e0f91da06e8471eafa1fc5dd6", + "dwd_hash": "2d59951646a40027aa5204ad2f9838b3" + }, + { + "table_fee_log_id": 2815315341791045, + "ods_hash": "5f98dd39935952acd9ce080b88166f4b", + "dwd_hash": "4d529848eec955b7e03a40282fce3840" + }, + { + "table_fee_log_id": 2815777846021893, + "ods_hash": "e717572450b079d8ea645e0e0a2b86bf", + "dwd_hash": "24ff6f0ffd21d0ae28fd559117328f18" + }, + { + "table_fee_log_id": 2815783875481349, + "ods_hash": "4d9dfc69d2da8bf77447e11bd82ae0a7", + "dwd_hash": "98bb7c2840229448991d760f368cbcff" + }, + { + "table_fee_log_id": 2815835682541381, + "ods_hash": "acbf4bd9ea18d4ac08e03672b6e1fcd3", + "dwd_hash": "decffd69a10d9440d6d46f8944396046" + }, + { + "table_fee_log_id": 2815914438299397, + "ods_hash": "41e03b28d3153983693f7f75a0b62f8e", + "dwd_hash": "c240bec354ddc3c89d13447b49a6cd98" + }, + { + "table_fee_log_id": 2815916694834949, + "ods_hash": "a066b23255ac4ec68a21b1a48ae32b42", + "dwd_hash": "34e06c02f057869e081e992f21f6f9e1" + }, + { + "table_fee_log_id": 2815919540670213, + "ods_hash": "54c4727507d463871cc01a5af1c5ccf9", + "dwd_hash": "3a1a09ed0c8b0403ab71a67de6ff7aa6" + }, + { + "table_fee_log_id": 2815946582118149, + "ods_hash": "4a7b68dfe202dca075120fcefb092f3f", + "dwd_hash": "26f03c8a4a2cf4b33e9612d3c1e51356" + }, + { + "table_fee_log_id": 2815974002560645, + "ods_hash": "fa6d2e228494d46b002d1146ecd15227", + "dwd_hash": "af48790b9cf09096e4a575d00373f16c" + }, + { + "table_fee_log_id": 2815986131783429, + "ods_hash": "9b98298c1680f6698784b3153daec7a3", + "dwd_hash": "a85546d319d31ec656565a566178aefb" + }, + { + "table_fee_log_id": 2815994029494021, + "ods_hash": "cb4eec5723e0f284ab339353e69bde65", + "dwd_hash": "1b9e4fd8f73dff4b3be89beb8c16605e" + }, + { + "table_fee_log_id": 2816001166020293, + "ods_hash": "45041b503af34eba0021392c8a915047", + "dwd_hash": "74a263a9c0f55bfee1806d2fcba1c212" + }, + { + "table_fee_log_id": 2816030066708229, + "ods_hash": "138ce994c52ff0367f1fc4d651269d25", + "dwd_hash": "72a75b3ae0189b72e192ff84737469bf" + }, + { + "table_fee_log_id": 2816034617790085, + "ods_hash": "3cbf660aa4d414836fb1a08084a32fe0", + "dwd_hash": "4d57c85b8d50be8fa82a86d7aa1ba0d9" + }, + { + "table_fee_log_id": 2816047032813893, + "ods_hash": "735e4d39787e8aa02948b37a5e2000a8", + "dwd_hash": "709439bb0047b4752ed58f6d80e565fd" + }, + { + "table_fee_log_id": 2816053946255621, + "ods_hash": "cbc66e7cabdf8b46cc3feed47559de35", + "dwd_hash": "f22cd5bd397d406a4e9cf06a5c2ec708" + }, + { + "table_fee_log_id": 2816069549148486, + "ods_hash": "d0ab8d535a8a09e471c997cf138df502", + "dwd_hash": "eb82eef96c1ee02af1a991c99a108285" + }, + { + "table_fee_log_id": 2816070476810693, + "ods_hash": "8543f1ae383db4f2c63e38ef7166ef39", + "dwd_hash": "f47c29a81fcc38295a1412af56e2537c" + }, + { + "table_fee_log_id": 2816072417446277, + "ods_hash": "cfa2bee4503f7399ec4f8f4b23a76b50", + "dwd_hash": "a135d6d1950ab8e6e92fc002b255775b" + }, + { + "table_fee_log_id": 2816073294760325, + "ods_hash": "5e3377ba644653778c45b794078641da", + "dwd_hash": "57833ac0d3206359b0819c925a994960" + }, + { + "table_fee_log_id": 2816082352130373, + "ods_hash": "e4c750c7f4b9e7f3735accc4dc21516e", + "dwd_hash": "defcb45721a38a852d3d925eb3b565b8" + }, + { + "table_fee_log_id": 2816090994903493, + "ods_hash": "9ce31fde0382b799e197f4da6fd6343e", + "dwd_hash": "4eed84f06d6e3aaa5709599c344e08e2" + }, + { + "table_fee_log_id": 2816095192927237, + "ods_hash": "40d3e71f731ab561b6824cf4f020e6fc", + "dwd_hash": "22f656df4b9d784779556f1395df5cd6" + }, + { + "table_fee_log_id": 2816097542671173, + "ods_hash": "b26c9afd7684a9a632dd14e95deb1616", + "dwd_hash": "ef805730474d447bee4d39dd76fd1b74" + }, + { + "table_fee_log_id": 2816107865738245, + "ods_hash": "553b90946a5b841e8e0cf3229695a90d", + "dwd_hash": "28bad0d4aa9e0d565b36afddd02bfcab" + }, + { + "table_fee_log_id": 2816112411675653, + "ods_hash": "d397fa94c16b29426dbbf3ccb80b6e7d", + "dwd_hash": "7d6ac591c783ec7132fe01046f7c87f3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ], + "mismatch": 4305, + "mismatch_samples": [ + { + "store_goods_sale_id": 2814989979093637, + "ods_hash": "fa3c286285345f94e47d74ee9a8d2e26", + "dwd_hash": "ccb9467c6be12d62b029f58e5513a0fe" + }, + { + "store_goods_sale_id": 2814993035152005, + "ods_hash": "a66f0c86a9cc6b53ddb13502fbbe1f0f", + "dwd_hash": "febdea29512fe4d2f1aa0a89e8a5a778" + }, + { + "store_goods_sale_id": 2814997899349509, + "ods_hash": "c848c8d7d3380b9c11753371ddfb55de", + "dwd_hash": "d6d4d8e5cfc65c03745fc02e2e81bec5" + }, + { + "store_goods_sale_id": 2815007741349573, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741349574, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741365957, + "ods_hash": "857f85eb20bee8090041bd9a44ce55c5", + "dwd_hash": "65a54bce3024938bdbfef3f7a8b0c964" + }, + { + "store_goods_sale_id": 2815007741365958, + "ods_hash": "321b047af492099f22536597eef7dae1", + "dwd_hash": "44f6ce0b54908e76b5500c4172f51c2c" + }, + { + "store_goods_sale_id": 2815026157538949, + "ods_hash": "36d7fff34fd912cd53ee1fc77863b8a5", + "dwd_hash": "48f27bf97049d650917f1d5fe1e8cf84" + }, + { + "store_goods_sale_id": 2815031624896325, + "ods_hash": "c79ac9417886bcee03e880e5cbc1494e", + "dwd_hash": "9b5e70abcbe840edbe931ff44753d6e5" + }, + { + "store_goods_sale_id": 2815050754297477, + "ods_hash": "98e866b5d52a77ec7b7f8ce0c968cce7", + "dwd_hash": "1579a5d0b90082029e718914d81e545a" + }, + { + "store_goods_sale_id": 2815050754313861, + "ods_hash": "ccccda71619845595eb1f57303f8ea53", + "dwd_hash": "6374079d462672c7a9720ab363d41cda" + }, + { + "store_goods_sale_id": 2815053687164677, + "ods_hash": "fcca4157529b4b599f5c7c8d5960033c", + "dwd_hash": "b65787a349eee7c0ee932e60261c00ca" + }, + { + "store_goods_sale_id": 2815068580499269, + "ods_hash": "a9fcab426eb3fcb2f68db1fbb48dd6ba", + "dwd_hash": "57dbb4e659103d76e2bbaa47d6a8dc52" + }, + { + "store_goods_sale_id": 2815068580515653, + "ods_hash": "e2252c090fdfe2c3c2dcab5473f01609", + "dwd_hash": "79ff193df285f9450e76dba6d90b7b8d" + }, + { + "store_goods_sale_id": 2815068580515654, + "ods_hash": "b98606aebfca9aabc5c976ff80626131", + "dwd_hash": "99db93af70e63e00615f43122527f745" + }, + { + "store_goods_sale_id": 2815068580532038, + "ods_hash": "36c578f57753260df03adc00169edc24", + "dwd_hash": "948303a0a371960e78627ae98279bf12" + }, + { + "store_goods_sale_id": 2815068580532039, + "ods_hash": "ab797411b6ea59279b632c1bfbe73806", + "dwd_hash": "0c69d25b70be364c709b01e41973befd" + }, + { + "store_goods_sale_id": 2815068580548421, + "ods_hash": "fba6d59e174a2ddd504406e6e868b092", + "dwd_hash": "0c35eac8d838fbac8d7f6fce59d915bc" + }, + { + "store_goods_sale_id": 2815068580548422, + "ods_hash": "593df276997f242ce1a277f27ebc810c", + "dwd_hash": "bcd871eb4dc92401f70c629b6a21e1a0" + }, + { + "store_goods_sale_id": 2815068580564805, + "ods_hash": "ad68991723d07fcebf885b2a71a04572", + "dwd_hash": "87414930033c4ad25ffcf2cdcca5c807" + }, + { + "store_goods_sale_id": 2815068580564807, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581189, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581190, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580597573, + "ods_hash": "89f2a52fb6ac9f5e096efcac4e4320aa", + "dwd_hash": "3683a7e44ed3c5d01da36e6c2e758402" + }, + { + "store_goods_sale_id": 2815068925923077, + "ods_hash": "67fd3334cc096f3d7ee40951ee572dad", + "dwd_hash": "ea242d2335b83e0252fcfa460d66688e" + }, + { + "store_goods_sale_id": 2815072464981701, + "ods_hash": "60518f0bc0fd94bfa293bedb62ac53f9", + "dwd_hash": "680101aeeef29be95a847ab256eaafef" + }, + { + "store_goods_sale_id": 2815080294567685, + "ods_hash": "85c7f035b67caf8e6a066c7631ba2b54", + "dwd_hash": "fdd2c48d710bdf1618c2b551a87ec858" + }, + { + "store_goods_sale_id": 2815080294584069, + "ods_hash": "32dbc77c79263ccc5402e671c94d54a0", + "dwd_hash": "208f4a08c77ae17bc19ace6fd80a7d75" + }, + { + "store_goods_sale_id": 2815081796652869, + "ods_hash": "9f22471d2fef963a064163d793a55dec", + "dwd_hash": "1ec5607522c4feddf4f227b6e5cd8258" + }, + { + "store_goods_sale_id": 2815081796652870, + "ods_hash": "7c399348f4f8f9cf7bd42e77094edec9", + "dwd_hash": "3a437803467856747477ab5c1c992434" + }, + { + "store_goods_sale_id": 2815081796669253, + "ods_hash": "76c461ed03eeb452dfc7f0a3484e7d7a", + "dwd_hash": "2a196dbaf65f6d6136c40a5b06e6b0be" + }, + { + "store_goods_sale_id": 2815091671715461, + "ods_hash": "ac522be15de73083c43d77e916f6b77c", + "dwd_hash": "36c4d584786f30af3d0eb86779222069" + }, + { + "store_goods_sale_id": 2815117514641093, + "ods_hash": "972d33838e9d8260bcd737c41d530dde", + "dwd_hash": "e5fda81376e2032dd9c12d4ee3b44ff8" + }, + { + "store_goods_sale_id": 2815120861007557, + "ods_hash": "e34a88e57ce72843765c34a43e8e7d6a", + "dwd_hash": "44f3937db465fb8f9fc9b2af6f7471fd" + }, + { + "store_goods_sale_id": 2815120861023941, + "ods_hash": "6f79278bb8cb68e1a3c2aa9b2fb32226", + "dwd_hash": "b0a5de1f9dfc56081dbc5ed453192880" + }, + { + "store_goods_sale_id": 2815147245915845, + "ods_hash": "c7ed2e920a5c26bfacc0f40b4c77cb75", + "dwd_hash": "160a4851b4acb0f24815e1d51a7e0d0d" + }, + { + "store_goods_sale_id": 2815189895368453, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895368454, + "ods_hash": "734d41abcca0aadf14bf6ca5906d534a", + "dwd_hash": "a1e47917e84ec9913625eec0b6568151" + }, + { + "store_goods_sale_id": 2815189895384837, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895384838, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895401221, + "ods_hash": "491086a73ed90b2cbb85ae9c138c02f6", + "dwd_hash": "05a3a28c361aca7e4984fb94c2c1a0e9" + }, + { + "store_goods_sale_id": 2815189895401222, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417605, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417606, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895433989, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895433990, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815315343150917, + "ods_hash": "0815aa45bb7157886698e233bb70fe9c", + "dwd_hash": "3ae752abb2be922c918325e52c2cb37b" + }, + { + "store_goods_sale_id": 2815315343167301, + "ods_hash": "6e4be2c3b7d2b99b6ff05c1107d155f6", + "dwd_hash": "0c8a7920d46a058d04fea0862e42a4ad" + }, + { + "store_goods_sale_id": 2815315343167302, + "ods_hash": "35dc4e7db965162b4704384a4858c6b7", + "dwd_hash": "04049fa9b643a05003ba24381652800e" + }, + { + "store_goods_sale_id": 2815315343183685, + "ods_hash": "4872df3bc9d436632860d96f3f3d220a", + "dwd_hash": "c6206cd5369226ee5ec20ab3d863fb8f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ], + "mismatch": 859, + "mismatch_samples": [ + { + "assistant_service_id": 2815007740939973, + "ods_hash": "f9ce7fbcc8fc19c8161a87c44a1c12e6", + "dwd_hash": "e24ea3d86bcf1dc075f05cad49074b78" + }, + { + "assistant_service_id": 2815050753953413, + "ods_hash": "b1a557685b82aa17d919e07b0fbaeb98", + "dwd_hash": "25a3808bd9c829641c9504148e967292" + }, + { + "assistant_service_id": 2815068579925829, + "ods_hash": "7a81c04f3dcf57bf8e204b76637b1e94", + "dwd_hash": "209dd8096c6cd6c486eb82b149f7dd30" + }, + { + "assistant_service_id": 2815068580155205, + "ods_hash": "5e61a83470f06f0994c105114cc8d386", + "dwd_hash": "ac6ffa46a5c8046769ce24b618143d61" + }, + { + "assistant_service_id": 2815192882302597, + "ods_hash": "c45adff8a4715c97b581f627fa6dfda2", + "dwd_hash": "072b72f6cbd844e3a33ffa6e4f6accab" + }, + { + "assistant_service_id": 2815293411135109, + "ods_hash": "3b324c88dbf0cc963f75ffe28ec5fdac", + "dwd_hash": "cc45c3bfb8ff606fd465b45a1a7898f0" + }, + { + "assistant_service_id": 2815315341922117, + "ods_hash": "0051f623fe90ebb5f5ed050dc084cf09", + "dwd_hash": "73c484d7e5f797b9530d83485cc7ceb8" + }, + { + "assistant_service_id": 2815315342135109, + "ods_hash": "9e892b2625ebc56b7fd81201488b92a0", + "dwd_hash": "f64c6a17e155c416513452e29297bab8" + }, + { + "assistant_service_id": 2815315342364485, + "ods_hash": "050470715d70d6a824fd27522cfaeda0", + "dwd_hash": "c06714076008c3959e0074d80f2a4e0f" + }, + { + "assistant_service_id": 2815315342593861, + "ods_hash": "1a0e4994bf2573cc027908ee3f590beb", + "dwd_hash": "b1045eb5cc31df8d61cfabf99e0e2e22" + }, + { + "assistant_service_id": 2815315342806853, + "ods_hash": "4c9992a0088b01b98f592cb09855e77c", + "dwd_hash": "83f802640dd1b35ec058fae19450ee72" + }, + { + "assistant_service_id": 2815904071470789, + "ods_hash": "e5ab401ebfa552c576eee29af660228b", + "dwd_hash": "77bf04dfbd8ae3a800de36db2ebe0b0a" + }, + { + "assistant_service_id": 2815914797567813, + "ods_hash": "cf502b9ea44020f573405f8de20ac07b", + "dwd_hash": "916df74d53de51545d6501b8503ef7d9" + }, + { + "assistant_service_id": 2815944874250053, + "ods_hash": "60fee31ac98a32bf01df401fc6a0f651", + "dwd_hash": "a77e1251c004feed00c35148eb389d69" + }, + { + "assistant_service_id": 2816030066855685, + "ods_hash": "2bf9cc4469a0db29caebe85e45edc6f8", + "dwd_hash": "a2c1140d6b166820622a820280d5cf9b" + }, + { + "assistant_service_id": 2816047032944965, + "ods_hash": "da5f9de03bd3a1fee22b55dd99b3ceed", + "dwd_hash": "63fe5217681b1b401b899f48c40c120a" + }, + { + "assistant_service_id": 2816097542835013, + "ods_hash": "5cc9233ecb68eaca2a27ead046209acf", + "dwd_hash": "f7be57f64692352d195bac3c3b3861e8" + }, + { + "assistant_service_id": 2816097543064389, + "ods_hash": "eaef3de6b3d6be88c30d046dfa3f3447", + "dwd_hash": "e538d750d81ec4501ee9a2cf8efc46f7" + }, + { + "assistant_service_id": 2816112411839493, + "ods_hash": "af7c3be5c3fb270f2559d0899bf3520b", + "dwd_hash": "fc488cf75a35ebd79a8471dfa861b507" + }, + { + "assistant_service_id": 2816112412085253, + "ods_hash": "a43c8e2ff1fc185dd0188950538b0a4e", + "dwd_hash": "aa3b19dd23048684d15f11ea305d87a4" + }, + { + "assistant_service_id": 2816117998341061, + "ods_hash": "2d19ff102f3a526363a3b323a45dd7b9", + "dwd_hash": "e46dc114412a9a50a71193051f1d3dc0" + }, + { + "assistant_service_id": 2816117998635973, + "ods_hash": "1e9a6b6ba7032a538d98eb93fbca3867", + "dwd_hash": "fa085a69fab55f4cbf56933ff57f1b09" + }, + { + "assistant_service_id": 2816249127078725, + "ods_hash": "cbf2a6e55888e2ef7b6a4560d775b670", + "dwd_hash": "ce55856cb47615e05f2aecac7edb42db" + }, + { + "assistant_service_id": 2816269318032325, + "ods_hash": "7d099c5835e5e7c9c293e3da0d924c0c", + "dwd_hash": "6b8ff92fcda1c92ba053d670ecb46cf0" + }, + { + "assistant_service_id": 2816293725277061, + "ods_hash": "23c242055dfbdf6ed5ac95f4d764aa0e", + "dwd_hash": "9bdbe277075886277f876aaaae46092a" + }, + { + "assistant_service_id": 2816339174493125, + "ods_hash": "5591c0e4bc4b49d1459e92c7542e8f3e", + "dwd_hash": "86ad9f1ec4e00067594785a8e17ba157" + }, + { + "assistant_service_id": 2816344718724101, + "ods_hash": "90ba80a419ee28c7ccd8cc55ed5fcc3c", + "dwd_hash": "349c5dfa7e4b0ef7c5ea94808b95aac2" + }, + { + "assistant_service_id": 2816352675613573, + "ods_hash": "3e799052214401cec9018d44969881ab", + "dwd_hash": "28f8ba909f6eb79c4fed977d80c5ddbf" + }, + { + "assistant_service_id": 2816363071605701, + "ods_hash": "f61b73446e279bec5b142b3736bdc790", + "dwd_hash": "14a12eb1fb47a2a9e1874ba4aae0fbf6" + }, + { + "assistant_service_id": 2816378223725445, + "ods_hash": "9d3d42864197ddb3fa8c528ee48ee3a6", + "dwd_hash": "6a6879ee645e013810bdbde893f87f79" + }, + { + "assistant_service_id": 2816383976393541, + "ods_hash": "36857fb57d1d012356d4308f44d21a93", + "dwd_hash": "ee5b056799c852aacabcf022a3c404c1" + }, + { + "assistant_service_id": 2816390074338181, + "ods_hash": "f076df9329383063581c78dc19009aba", + "dwd_hash": "4f0ce10425e4bd5f33e41145e02ba490" + }, + { + "assistant_service_id": 2816390074567557, + "ods_hash": "b265275c59ab0218ec7c564c9ee90129", + "dwd_hash": "f2abe70bb88b0a6aece4ffdcfd1f82cb" + }, + { + "assistant_service_id": 2816402998315973, + "ods_hash": "387b43a62d51b05441f8797776d794a6", + "dwd_hash": "1c99984ef2384442a86d58dd18b1225f" + }, + { + "assistant_service_id": 2816435102649349, + "ods_hash": "b52c92fa4efc547d53f8aa9a673d1612", + "dwd_hash": "5139e73f86b7690b82d21bc176ba5e99" + }, + { + "assistant_service_id": 2816449614121797, + "ods_hash": "abe7c18690009457ca997d48b7c8ff96", + "dwd_hash": "f7b6fa917438fbc602ed421c0c282cb3" + }, + { + "assistant_service_id": 2816450094533445, + "ods_hash": "01627e094ec69c15ac4355de3bc946d9", + "dwd_hash": "9abd7179f4605fb01a0f34beba9a8e09" + }, + { + "assistant_service_id": 2816450094811973, + "ods_hash": "51b410beba14b4384f72524d1d5e8fe6", + "dwd_hash": "97be4007318ae9237b7d6b33c26bde85" + }, + { + "assistant_service_id": 2816456185826117, + "ods_hash": "5d424e7c407279f37aa867f5b560dcbd", + "dwd_hash": "206691651a92a995eaa61372fa136e2d" + }, + { + "assistant_service_id": 2816456774618117, + "ods_hash": "0fdb50d99ab5c91bc82942e813af7b7f", + "dwd_hash": "370c24fa68eac8144d9c5d14da474bf4" + }, + { + "assistant_service_id": 2816456774863877, + "ods_hash": "1a3c8230a827b1f6db34c08236d6b57e", + "dwd_hash": "e63c7b2ba2f2839377f60c807278573c" + }, + { + "assistant_service_id": 2816464057518981, + "ods_hash": "1488b78dabcca9bc95b26ba7f80b18e0", + "dwd_hash": "d4ff94afcd76046a9547bd19cbd780d6" + }, + { + "assistant_service_id": 2816464057748357, + "ods_hash": "44c3245fc0544009d12fbee698fd1dbb", + "dwd_hash": "263ae165f1fefc315b49250cebd45015" + }, + { + "assistant_service_id": 2816464057977733, + "ods_hash": "5082c3bd738dadfcac0954d0947c9ffd", + "dwd_hash": "4a800b57fd0c26234095d5ba3032edb7" + }, + { + "assistant_service_id": 2816482033912773, + "ods_hash": "22adf47bfda80f15b16796f6f38279b5", + "dwd_hash": "47b7b49343c69fcf90d8b16c6665c7b4" + }, + { + "assistant_service_id": 2816500336462725, + "ods_hash": "1ec51b3e541ecc3a6b53e20349b90e4a", + "dwd_hash": "bb5f00fe51db20e5022ffbf7dc45e280" + }, + { + "assistant_service_id": 2816500336757637, + "ods_hash": "7bc49eb8299bc59076bacf7ba658a929", + "dwd_hash": "9d148da2664fbb5a9c648fd214fcb584" + }, + { + "assistant_service_id": 2816500337052549, + "ods_hash": "5060b41e9bd33bf83997bcfee089a8f7", + "dwd_hash": "d6513625851b0f9891810327dc84e5d7" + }, + { + "assistant_service_id": 2816500337281925, + "ods_hash": "9d17f139b9400149ed20471df9427dfb", + "dwd_hash": "9fa44449e927c5cf32e34531f1b712ed" + }, + { + "assistant_service_id": 2816500337511301, + "ods_hash": "d539397d7c835b2544f0d8d739ce12fb", + "dwd_hash": "db2075e86e08d52cca0d1c16dc995aba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ], + "mismatch": 2850, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2814986061335237, + "ods_hash": "3888256320941db1f6ba11d8854224a8", + "dwd_hash": "fab6a8a62d492fe2ef593eaf1a186fab" + }, + { + "platform_coupon_redemption_id": 2814998145469765, + "ods_hash": "c2bdbd213544486ee2285f33209480e4", + "dwd_hash": "9654668bfd14ae0ee695ead73e2eb324" + }, + { + "platform_coupon_redemption_id": 2815038220521221, + "ods_hash": "c24fa1bce5b9386a0e2bf22ac5dda85f", + "dwd_hash": "051a473e67d78507c5f78c35fa78faad" + }, + { + "platform_coupon_redemption_id": 2815050032221957, + "ods_hash": "8fa1bddb32ce46ab37614c05732ece64", + "dwd_hash": "b936fabc032db47c3e257e70bd3309bc" + }, + { + "platform_coupon_redemption_id": 2815670259388229, + "ods_hash": "36efcc93d54d83934db122aa67aea16c", + "dwd_hash": "32617bc5d6220cd8a96919d7781ef356" + }, + { + "platform_coupon_redemption_id": 2815708950073029, + "ods_hash": "37a42453c4512c51ce94dded5274a466", + "dwd_hash": "ed2f262ac353b8cbb010e2f227c7b864" + }, + { + "platform_coupon_redemption_id": 2815714020364101, + "ods_hash": "1add4bbb06f5d06766ba3e71f5717102", + "dwd_hash": "bc701181bf4f68404579e4119abecc95" + }, + { + "platform_coupon_redemption_id": 2815763466932037, + "ods_hash": "959a26a7f7cd55277d48ca06575abf55", + "dwd_hash": "1ea4c19b9922c1b44aee6670031f9953" + }, + { + "platform_coupon_redemption_id": 2815815918718789, + "ods_hash": "9237f9c9441ad647a328b26c242b505d", + "dwd_hash": "0f2e7a9d57ee5566ebb40c237ab6441c" + }, + { + "platform_coupon_redemption_id": 2815835787415365, + "ods_hash": "3146d20bac3d95750b9a7ee2ec31a3a1", + "dwd_hash": "30293354760b5e97c70e021f439f9061" + }, + { + "platform_coupon_redemption_id": 2815857501196101, + "ods_hash": "225c01232fffcdb18becc49d1dfe9e4f", + "dwd_hash": "7e5bd6dfe32b0281f1f0973bff373fd5" + }, + { + "platform_coupon_redemption_id": 2815888248032965, + "ods_hash": "9adf560dc3bf4487214d4f0219730b90", + "dwd_hash": "d19b7958c85cb7c1b24e264cc6a48374" + }, + { + "platform_coupon_redemption_id": 2815915389603589, + "ods_hash": "50987f4f0c859a826ff933dc7045c4af", + "dwd_hash": "f18ca30636612015bdc6602ebe4c8eac" + }, + { + "platform_coupon_redemption_id": 2815924436356741, + "ods_hash": "45739a272156a5afabbcad4fb8f5c4b7", + "dwd_hash": "80d3f583a091319b9ccdae56533fd849" + }, + { + "platform_coupon_redemption_id": 2815928947183429, + "ods_hash": "44ae0fa6d5b4e12dd8f0a2138691b5d1", + "dwd_hash": "dcb54a0a2599da4199ac0b82771e057b" + }, + { + "platform_coupon_redemption_id": 2815929939775109, + "ods_hash": "cb83f3f570df93e1dea68028b809b8d1", + "dwd_hash": "4490c6a24c10bc8622b0ee018017a374" + }, + { + "platform_coupon_redemption_id": 2815934117449477, + "ods_hash": "3e120226e383ed978c313ce0f46a4f6c", + "dwd_hash": "cfb524b7c0314fab5a376ecd3e649a31" + }, + { + "platform_coupon_redemption_id": 2815942572084933, + "ods_hash": "14b10cbc11df659eb6e6b1a94db3c920", + "dwd_hash": "2ffa1f9b54e54a43ba424e38a0682c7a" + }, + { + "platform_coupon_redemption_id": 2815948326112965, + "ods_hash": "411dc014eec78ddcf2a5a522b2ba7f38", + "dwd_hash": "46d2888c307dd277ab9d8b164155c886" + }, + { + "platform_coupon_redemption_id": 2815952511684421, + "ods_hash": "d3d19ac8e44299cc18f3581887cb6328", + "dwd_hash": "3ccd8a5a9ab80b17b5fba1b6a31583c7" + }, + { + "platform_coupon_redemption_id": 2815954552934213, + "ods_hash": "3a7df6ebec1fc17ad5bd8bf3c73f5429", + "dwd_hash": "f1fd4141da918e4b5176e247ee0f0fc3" + }, + { + "platform_coupon_redemption_id": 2815957094158149, + "ods_hash": "9c3c07053f101b9ec8bb6f4e10817061", + "dwd_hash": "844f2e18a71fb921843cf00a6d82c03e" + }, + { + "platform_coupon_redemption_id": 2815968915050117, + "ods_hash": "2a3210ac10e845d0ea0db129a3b21d94", + "dwd_hash": "392bd0e6b45fe6fc825fb5d0bb906fa7" + }, + { + "platform_coupon_redemption_id": 2815987124997893, + "ods_hash": "4a4b7199e69f8fdc879c03f64c464f9f", + "dwd_hash": "d736038d1f623107546fa2a61e7d5862" + }, + { + "platform_coupon_redemption_id": 2815998670311109, + "ods_hash": "55ab64d190eb558f9397276771e9de76", + "dwd_hash": "439cc0badd2d97f77db963a5c94764d2" + }, + { + "platform_coupon_redemption_id": 2816011536912197, + "ods_hash": "7a43de88f3f2b8e0181a9b7f8ee56ec9", + "dwd_hash": "5e89c6afdd68e0347ec1dc3fe4b41539" + }, + { + "platform_coupon_redemption_id": 2816011777920773, + "ods_hash": "5cf2016c72b91e92f0343d95b218ff09", + "dwd_hash": "104231165eb6a10a72cf30036b731b28" + }, + { + "platform_coupon_redemption_id": 2816016143077061, + "ods_hash": "480c5fb78b6487f4a18101868b0ffde7", + "dwd_hash": "05f226eab6ece2ba44f505bcf1ff3221" + }, + { + "platform_coupon_redemption_id": 2816023900737157, + "ods_hash": "10281a653600d80285ad3b6f7d4a93bf", + "dwd_hash": "28a980d1e5fb408d3692fd64703e80cc" + }, + { + "platform_coupon_redemption_id": 2816024269786821, + "ods_hash": "a68ef68891e3a9ac8eb80d6ec5b79e56", + "dwd_hash": "c4250a21e350a4a140cf62b6aa7a5972" + }, + { + "platform_coupon_redemption_id": 2816036284845701, + "ods_hash": "413a2e31f6535d6be3a3db25ad981b79", + "dwd_hash": "05e105f80780f6fe807a66cbf1a00e24" + }, + { + "platform_coupon_redemption_id": 2816057573902725, + "ods_hash": "a6e6f2009d3b0ff5a7959f80eaf037a7", + "dwd_hash": "9cbe17739bd92fd31571330a4a052691" + }, + { + "platform_coupon_redemption_id": 2816067471591877, + "ods_hash": "1903e655014e868f8a6205debc115c66", + "dwd_hash": "417a99057dff8e92276d2b57814348f5" + }, + { + "platform_coupon_redemption_id": 2816069306780101, + "ods_hash": "fd7568620240fdaef5fb1d4a9f381461", + "dwd_hash": "1dc1e84f9cc6330f1c8e6aedc5cbec7b" + }, + { + "platform_coupon_redemption_id": 2816071852886405, + "ods_hash": "976903d2166ad46b8cb84ecaf5c3af35", + "dwd_hash": "fd826931f5480bd3388b4f57da37fde2" + }, + { + "platform_coupon_redemption_id": 2816091699940229, + "ods_hash": "5b8bcb5a54e4c0bd69666aa7b5c1e2b0", + "dwd_hash": "ddaf1d902e25bf8e0ba7cfd4d2eacdbf" + }, + { + "platform_coupon_redemption_id": 2816102986648453, + "ods_hash": "b6abe2a922a07412e7458e7fa0f4d205", + "dwd_hash": "5d8f93c546f7c097dd51aaf96eb1f549" + }, + { + "platform_coupon_redemption_id": 2816109543607109, + "ods_hash": "9c72dafd11f45c66b8aa5974b26f5b63", + "dwd_hash": "cc8509b52672303d76e7f3ea7c08d5cd" + }, + { + "platform_coupon_redemption_id": 2816118965668869, + "ods_hash": "6da932393e17ad05f7448d7bc51e130d", + "dwd_hash": "ba74782281b7cadb563c97e0beed86a9" + }, + { + "platform_coupon_redemption_id": 2816129503628165, + "ods_hash": "277616cd7089578e8a4cdca886c05471", + "dwd_hash": "a484b9bbbe6181dffae2ef6ac97cf3c2" + }, + { + "platform_coupon_redemption_id": 2816131384724357, + "ods_hash": "986806f535c32084a8d7d2b36b7362c6", + "dwd_hash": "0b847adc3565e2e03e2d1a051aa34ace" + }, + { + "platform_coupon_redemption_id": 2816133827038213, + "ods_hash": "d630e70d062bc0b9f91204d91bb1fdc6", + "dwd_hash": "a0a7b85fae9f3218ee949f1ee18fd258" + }, + { + "platform_coupon_redemption_id": 2816138340240389, + "ods_hash": "db360e2fa44735bfdfeec81ee1cf738c", + "dwd_hash": "37acb9679c95f33471f95b03cc984289" + }, + { + "platform_coupon_redemption_id": 2816144492645317, + "ods_hash": "86f6780b11bf05c666a8d8faf0be1838", + "dwd_hash": "1ae044dc19a3f5707a6435f1a172032a" + }, + { + "platform_coupon_redemption_id": 2816150533196613, + "ods_hash": "109e306422a7e2b51474dbc94ab853e5", + "dwd_hash": "f30d0acf1e953a3460bf14d7f4d061df" + }, + { + "platform_coupon_redemption_id": 2816151252011973, + "ods_hash": "7c583b05d3aa7a86f55441066f3b600c", + "dwd_hash": "141f0de3c13a932f3173667d4292cdcb" + }, + { + "platform_coupon_redemption_id": 2816156159249285, + "ods_hash": "7ade0eb0077538810a1f99cb696da883", + "dwd_hash": "1eda86d74e9e37b7ee0363875398896e" + }, + { + "platform_coupon_redemption_id": 2816160355093509, + "ods_hash": "cadc9e9e052c4b4c5c7970f03b999c10", + "dwd_hash": "c4a11c04ea23f01f9ccb1638288e48c7" + }, + { + "platform_coupon_redemption_id": 2816163721071621, + "ods_hash": "72410ef6ca8ddeece0c4cfc9c6783f34", + "dwd_hash": "24463093c5bb4a5e63a4c1e1036dc64e" + }, + { + "platform_coupon_redemption_id": 2816175656422341, + "ods_hash": "1bd76394747e1e1c33f1373ed8d6baff", + "dwd_hash": "a5d5b97b4ec110b3dffff8a6f797acc5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ], + "mismatch": 4763, + "mismatch_samples": [ + { + "payment_id": 2814985970502085, + "ods_hash": "c50be1c89775292425df05286485eebb", + "dwd_hash": "6256ad399f94538bda1e63c6200b3d35" + }, + { + "payment_id": 2814989977602693, + "ods_hash": "3f708b93cba1775c2ed773dfc8ef373d", + "dwd_hash": "888beaf9f13c92474ee523d97a287f85" + }, + { + "payment_id": 2814993033726597, + "ods_hash": "db9f1440aeb29ec385da55cc6d5afbfe", + "dwd_hash": "f0210389f6d7785aef8f515071f83f5b" + }, + { + "payment_id": 2814997897989637, + "ods_hash": "f2287bc74ffa966d962543aa3b30b2be", + "dwd_hash": "68e2d1106ef11e7deeb0bb80af868056" + }, + { + "payment_id": 2814998028193093, + "ods_hash": "3e9df3f6510c23e4244c4f698422fb04", + "dwd_hash": "ab4c8afe8b1a2cd0f529e521582d09d5" + }, + { + "payment_id": 2815007737417413, + "ods_hash": "ed84bfc5560fda937796bdd1f6d23fba", + "dwd_hash": "9c99074518bceeee6fb8884570247893" + }, + { + "payment_id": 2815008601984645, + "ods_hash": "92c5bc2c46dc3e2299465fc1b08f1eb3", + "dwd_hash": "026ea05be0df682601918b4e2c957735" + }, + { + "payment_id": 2815026155277957, + "ods_hash": "68a6558ecf151b4407671be33ab9f1fe", + "dwd_hash": "6c0c6dab582ed102d73c4a8091ec841d" + }, + { + "payment_id": 2815031623470917, + "ods_hash": "66b2a77a82462afae88f00b7c75665e2", + "dwd_hash": "cf09749b9948ab17f8c29c6acd24bef9" + }, + { + "payment_id": 2815045004054341, + "ods_hash": "72196564a81b1f1e4d186efd3fa9cadf", + "dwd_hash": "8b152cc2e100d3a93a226d83f5d544b9" + }, + { + "payment_id": 2815049221656197, + "ods_hash": "6e1e5724eaac9cdbf4d95e3ff3390b17", + "dwd_hash": "56aff7a721276973899c613989a30ea3" + }, + { + "payment_id": 2815050751610501, + "ods_hash": "f5169b7031106fd22742479b17fe227a", + "dwd_hash": "40e1f49ea83959e4870db51e54cca731" + }, + { + "payment_id": 2815053685149445, + "ods_hash": "bba416b66c14f96c301cb287f844430b", + "dwd_hash": "e6dd4ee5b631e9cc372be9b37722a50b" + }, + { + "payment_id": 2815057359802053, + "ods_hash": "399e7d37faed4c6d8fa040c553fd5a08", + "dwd_hash": "bd902ca3aa8180ade7f1a0ff8013f18a" + }, + { + "payment_id": 2815065075126085, + "ods_hash": "db21d1532a9b849080dcb8027b2c9971", + "dwd_hash": "e1b01155f94e6e071293cda1aa5d0d49" + }, + { + "payment_id": 2815068576862021, + "ods_hash": "5f5c7852a984ec339b7fafc69c10f654", + "dwd_hash": "4fdb936142af519d3e2a6d34bfbd8180" + }, + { + "payment_id": 2815068923612933, + "ods_hash": "9f7787973fb275bfb0202277ec704c3b", + "dwd_hash": "205d58a2a910cf38afd5603814a26529" + }, + { + "payment_id": 2815072463474373, + "ods_hash": "e098c24d37883cb9d1518a9484f5b7c5", + "dwd_hash": "a322e15458837c47e3fbd1eac083af4e" + }, + { + "payment_id": 2815080292683525, + "ods_hash": "fb3998b45f48d687d7493058a17a2498", + "dwd_hash": "f02b959c6c5a1a4856b58b8611fafa17" + }, + { + "payment_id": 2815081794539333, + "ods_hash": "f8437e0d7e5692a9f4270d5b01edad77", + "dwd_hash": "1dd7d0afbf3eb8da57968c6204dd5057" + }, + { + "payment_id": 2815082740518661, + "ods_hash": "2ec129fc60b63a9a522dc234432801e4", + "dwd_hash": "6c2917764532a8794c24094738e42b67" + }, + { + "payment_id": 2815091670437509, + "ods_hash": "64e0643e24dacc0b4d5d536eb46edaae", + "dwd_hash": "b6df36012a9dc9161f9fbe347138675d" + }, + { + "payment_id": 2815092449660613, + "ods_hash": "7253c40eb25a68594cd9aebccb55363f", + "dwd_hash": "00ae18e0e01432ba6ac0120a8da9b5d8" + }, + { + "payment_id": 2815107865972421, + "ods_hash": "e2a7f1c0bf1c41fa6bd1f823941e0e4e", + "dwd_hash": "1e2fb8f61bf894c4ebd6de7ad98f5456" + }, + { + "payment_id": 2815117512658629, + "ods_hash": "b54cf1e6f3aaf61ec933722d21e615e4", + "dwd_hash": "15de86cc122b68740540f44442ee4f4d" + }, + { + "payment_id": 2815120859041477, + "ods_hash": "54ec949fad7b3c0d0566ef81447352f5", + "dwd_hash": "c202551fcf0d8bcbab29cbc6e3aa8da3" + }, + { + "payment_id": 2815147244654277, + "ods_hash": "a0b297d1a6adf10a2a9c23ad4aad1c6c", + "dwd_hash": "9fd038e38af8d6a7269535c274187ecf" + }, + { + "payment_id": 2815157253148357, + "ods_hash": "20cbc3291edab7a318c095fa962bf345", + "dwd_hash": "971097851faedfdd2fdb66f1ce32f436" + }, + { + "payment_id": 2815189893582597, + "ods_hash": "45c65c8ea04c4b22754deb4a1e87963b", + "dwd_hash": "a374a0fc8cbed35d32a9b84b1ff3a912" + }, + { + "payment_id": 2815192880057989, + "ods_hash": "a95706200dd2c2a025d93fbd46e2c1e5", + "dwd_hash": "f0c4a56bb3f7d3336570adf1a54c2d37" + }, + { + "payment_id": 2815293409152645, + "ods_hash": "f959aea4cc9f31ad4d140eaca4ed8a22", + "dwd_hash": "da502e9d5afc29fdba78a23171ed8826" + }, + { + "payment_id": 2815315338366789, + "ods_hash": "a6ff0db853fecb14845fd9e7d134df4f", + "dwd_hash": "4d6120b649bd3bc184be6a3462155cd5" + }, + { + "payment_id": 2815321450139333, + "ods_hash": "240500f364d60cc356a097217e40b7d0", + "dwd_hash": "72044f0114ee628081b7ca2aea0f5342" + }, + { + "payment_id": 2815715901181573, + "ods_hash": "511f0309aab6a0dbd827d1b3e65e85c1", + "dwd_hash": "4f91ea47a1c418e9525b882c7f9f4a5d" + }, + { + "payment_id": 2815716522757957, + "ods_hash": "67719a485a90ca1ea8177c0f373a0740", + "dwd_hash": "1f7f5c47b18a3f5ed1b1bfb9b7acf6cf" + }, + { + "payment_id": 2815728942829381, + "ods_hash": "89d0929d0e9fef5e6eba04169cbbfad1", + "dwd_hash": "4d63a711c4b7ec027177bb83f7a5cd17" + }, + { + "payment_id": 2815777844334341, + "ods_hash": "93ab71f685d08d2316775825a72ee761", + "dwd_hash": "e970eca04fd348130f55d27b9c0bc7f0" + }, + { + "payment_id": 2815783873875717, + "ods_hash": "4f55761ef392aa0a2c44ef18b556ecd3", + "dwd_hash": "b1951b5dc16746dcd22a768531a9a40c" + }, + { + "payment_id": 2815808178769541, + "ods_hash": "59ada987d823cab0fbce3b5df33e8059", + "dwd_hash": "4505417bc6c88b9028b69d3ceefabbd3" + }, + { + "payment_id": 2815835680689989, + "ods_hash": "d50100129666ad36039417f9c601bef6", + "dwd_hash": "faa806409279e90c527fc9d2a672beba" + }, + { + "payment_id": 2815904070012613, + "ods_hash": "8950c432bcf84ee40ce2e0fa60161f2d", + "dwd_hash": "d0b8bf6ab0037abe45c1d7b4896e6522" + }, + { + "payment_id": 2815911087017733, + "ods_hash": "55f1660861e7a3d057a9d909cca25563", + "dwd_hash": "3beb253150050a7e1e36dde0dfe4ad9f" + }, + { + "payment_id": 2815913389248197, + "ods_hash": "badc831db99d7dfa23d441e11e308405", + "dwd_hash": "4c3a55cd420d6bb88ffefb1bf4610210" + }, + { + "payment_id": 2815914436546309, + "ods_hash": "e3c6f7d60963b03a646ea9dacf57ce4f", + "dwd_hash": "bb65046f1b871bc8390861c025222e93" + }, + { + "payment_id": 2815914796060485, + "ods_hash": "ed1943483c5e0fbd6291ade8155852fb", + "dwd_hash": "e5d41043552e2298e44688bb4e16137c" + }, + { + "payment_id": 2815916693098245, + "ods_hash": "0001e5c339cf81575c80ad076c6e734a", + "dwd_hash": "ad4dcf64388b3bc9b81c01f2b02c92c0" + }, + { + "payment_id": 2815919539179269, + "ods_hash": "8b2b17fea5296cae77f0280ae93a203d", + "dwd_hash": "233c64df9928d275d0bf7cc7aaa858b0" + }, + { + "payment_id": 2815944872595269, + "ods_hash": "deebfebba9294c54a6746c09f7715ed6", + "dwd_hash": "c732e8f2ddc994dfe82914820a276ed5" + }, + { + "payment_id": 2815946580381445, + "ods_hash": "82bd075aa0aba34961c9bdac0c4aabb5", + "dwd_hash": "3b87223bd39c4510befea513773d9000" + }, + { + "payment_id": 2815952265891589, + "ods_hash": "6be85d999a06db1ddf98996bb6cf532b", + "dwd_hash": "b44edde7c3e01d2117f1d3c08d48c0a9" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23817, + "total_mismatch": 52699 + }, + "generated_at": "2026-01-31T22:09:39.839189+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10193, + "records_with_pk": 10193, + "missing": 11, + "missing_samples": [ + { + "id": 3075332074964421 + }, + { + "id": 3075332010886789 + }, + { + "id": 3075331958277765 + }, + { + "id": 3075330793899461 + }, + { + "id": 3075330213840517 + }, + { + "id": 3075330153760197 + }, + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12019, + "records_with_pk": 12019, + "missing": 15, + "missing_samples": [ + { + "id": 3075332072293829 + }, + { + "id": 3075332008330885 + }, + { + "id": 3075331955967621 + }, + { + "id": 3075330791523781 + }, + { + "id": 3075330211300997 + }, + { + "id": 3075330151024069 + }, + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17368, + "records_with_pk": 17368, + "missing": 1, + "missing_samples": [ + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8314, + "records_with_pk": 8314, + "missing": 7, + "missing_samples": [ + { + "id": 3075332075652549 + }, + { + "id": 3075332011574917 + }, + { + "id": 3075331959015045 + }, + { + "id": 3075330794440133 + }, + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "d2f2a097718965b87f5131d9afe54be6a590806c277a04997cb8f49cd8a2c701" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "918a235240f46ef2bdfedd9509f4ccb0f60bd61b0231c2e4ab55433f48912685" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1b0a80e00f278ac29f86b019387578b2606ee83bd6119ad6edb34a7b69be696e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "47e2bc55acc0f750dd258979d9da4611558c972d85f7104dbc8ed00e7e354745" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "b7ccfeb2596775d7d5df412279e738df719792074ae854d8eec75fbed9a95a19" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "d0395a340cb626ba57ac4ff57cfc5acf8a12bd6626d9f256ccea453bd2e8d759" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "0ee61f12c483f390ea00c57ba414f9fc01f2e960f8f683f1705bc002354bc899" + }, + { + "id": 2793012902121605, + "content_hash": "1598f548e57874116e40e53e026a649316d03ba95d3970180bedf1f57cab753b" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "97ce03c192b3299f0179b87cf2a76598f2a149389b9af0e3db21d1d5657801ce" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "f54d17f31fab57a0c7bfb4720a0ef6b5b60ac9ea455c9f4333abfefa1291e4c5" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "c165c4fae1f8f8c1254f8e9bb035f1333372a1c9ca6eb6fccdb12ed897400e12" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "0f9a0cc093051f55c8e9aeabda93df76e06e51b0ed4f5139225ec8539ccaad6c" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 41, + "total_mismatch": 98, + "total_errors": 0, + "generated_at": "2026-01-31T22:13:16.021728+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [], + "mismatch": 11, + "mismatch_samples": [ + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "7978b181e1813e2661feef48298acaad", + "dwd_hash": "10214fc034f209e9268eb403108994d8" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2860039721438277, + "ods_hash": "a1a38e307560d38aa8497c1a3c4f9e54", + "dwd_hash": "ff979b1149a289d17f89026ed24cc6b8" + }, + { + "member_id": 2860045549128837, + "ods_hash": "a37e540dc7961b1ce47fa2f20002dbd8", + "dwd_hash": "ce587d64c55c31569aa5ebd2df9d40ed" + }, + { + "member_id": 2878376367018757, + "ods_hash": "8426041ae5079cd76ca57aaf35b59245", + "dwd_hash": "ec041392cb620e306821a1738248aa5b" + }, + { + "member_id": 2880000482366213, + "ods_hash": "cd1d546ecd5c0fb4fdfc972be628d139", + "dwd_hash": "58e7d781e3fc6dc13dd6ec3be41a6d7e" + }, + { + "member_id": 2881216340641797, + "ods_hash": "1954b0f568dca2f32bddfaaf9b6fd14b", + "dwd_hash": "14ea6d232676bddb0d8b8e54aeb7cc34" + }, + { + "member_id": 2896726929361669, + "ods_hash": "c9f9768694d9da6db0add62971e5d3a1", + "dwd_hash": "a2c750d2a6f119b533430d142dfec278" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 10, + "mismatch_samples": [ + { + "member_card_id": 2860039721946181, + "ods_hash": "3eabe16d72ba7ef7177356cc97f560bf", + "dwd_hash": "02b7be99128f8e213f1158a0d9d3b699" + }, + { + "member_card_id": 2860039882673285, + "ods_hash": "81ece0f90d6287c1faa1f0ac09ebfcd2", + "dwd_hash": "caffd1ac152f811a9c7fa37913dee2cc" + }, + { + "member_card_id": 2860045549603973, + "ods_hash": "5948f84abd215bfcf14a7c3bb2da86c8", + "dwd_hash": "6d087039b107aa409bd5f45b3337a682" + }, + { + "member_card_id": 2868694674264133, + "ods_hash": "575d0eb987c73a450890b476857f2481", + "dwd_hash": "db9ba2a553e6c08cc6a12f15bf521389" + }, + { + "member_card_id": 2878376367297285, + "ods_hash": "5306efdd2facff9c47596032b4f87b70", + "dwd_hash": "b61e578229bcc7e96c8fae3371a7610d" + }, + { + "member_card_id": 2880000482644741, + "ods_hash": "2ff26e86b708caca395819ef96d13149", + "dwd_hash": "4debb84c02d4ded0abb3aef5e7303ecb" + }, + { + "member_card_id": 2880001639385029, + "ods_hash": "97284e94aebc5e9572918c5e76f42197", + "dwd_hash": "843dde010291d2b11c44a1d9e72c4cbf" + }, + { + "member_card_id": 2881216341149701, + "ods_hash": "7427d9ee34ceecd66bac74df58a87753", + "dwd_hash": "065ee10b28f2ec16cd2e43a46c51b758" + }, + { + "member_card_id": 2886024745945541, + "ods_hash": "3742196a475e4972c218ae0d81243ec0", + "dwd_hash": "ff08b9425a29eec0b71778c19cbd8f23" + }, + { + "member_card_id": 2896726929672965, + "ods_hash": "59a4881ce8762e85c2ca1b5fa42ef896", + "dwd_hash": "e8087813e09921dad35fe39eebc23225" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [], + "mismatch": 2, + "mismatch_samples": [ + { + "tenant_goods_id": 2868227554610821, + "ods_hash": "7e73a7a3a8b678a2f59cf40e19ce93d5", + "dwd_hash": "94324959021d51cad98ce0255d9a29cf" + }, + { + "tenant_goods_id": 2878390970471173, + "ods_hash": "c69df2a4dbed64c1bb5df0d673538260", + "dwd_hash": "9a3770d65f62d7e3bef19498841f2e81" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ], + "mismatch": 1264, + "mismatch_samples": [ + { + "table_fee_log_id": 2883738007719045, + "ods_hash": "fb9dd4cee69d5698e6c1fafb797dab1f", + "dwd_hash": "864a9e90630756e3900e1bdd121a520b" + }, + { + "table_fee_log_id": 2883783941360773, + "ods_hash": "9e3d6ada7afb68cc1d7e7b8ff52227f7", + "dwd_hash": "f0eaf2b51ee297a158757c984416f042" + }, + { + "table_fee_log_id": 2883842833550469, + "ods_hash": "3587d9b5174c1a22e19f3fe8675784ec", + "dwd_hash": "3b6f09eed8ede9fec3f60f6d4e231a00" + }, + { + "table_fee_log_id": 2883913640562117, + "ods_hash": "67f6b281bb20869f178fac552c487b59", + "dwd_hash": "ba50bcbbdbe25a880230d2486aea8aca" + }, + { + "table_fee_log_id": 2883925552795141, + "ods_hash": "b4b7a413184b6d648b1999641ce625aa", + "dwd_hash": "bf32a2ed18305522cb6aa0680329ce24" + }, + { + "table_fee_log_id": 2883936115772805, + "ods_hash": "217da08684f425c32f64fdf5e2c26a60", + "dwd_hash": "d90b72f0a709e9aaa89af8cf671c3571" + }, + { + "table_fee_log_id": 2883967682006405, + "ods_hash": "92d0c4e989b1712d8cf79e931b64bf0d", + "dwd_hash": "5ac5708666e89b01d7ec15f251f1ecd2" + }, + { + "table_fee_log_id": 2883972314320389, + "ods_hash": "b5c73967257af950fa5a17a52e8dac5b", + "dwd_hash": "ede1be33418809215766b6136947a6f0" + }, + { + "table_fee_log_id": 2883995919437253, + "ods_hash": "645106b07e943e4a446d1f4622d2efee", + "dwd_hash": "7546137eb7a78b2340b2e9a98632bf92" + }, + { + "table_fee_log_id": 2884035527724421, + "ods_hash": "132d77ddf5a54fb92e2ea39676e8e51c", + "dwd_hash": "5722bda672842a9e81d0d3c8285e2c83" + }, + { + "table_fee_log_id": 2884038344576325, + "ods_hash": "702e04af43efe57006d57827c84e4c98", + "dwd_hash": "ac1a82af95f92c46948f740a39ca6994" + }, + { + "table_fee_log_id": 2884039651315141, + "ods_hash": "25469e1b29ac0b9cf7996637ee9ee131", + "dwd_hash": "760698b4ff3ef5f26aced2309edc76d4" + }, + { + "table_fee_log_id": 2884073990655301, + "ods_hash": "84f978920438351a3eaee4f3e0871b1a", + "dwd_hash": "01886b135ef5168a14a310d13d6142ab" + }, + { + "table_fee_log_id": 2884075079552453, + "ods_hash": "b5aae6a8e4ea21cb73c2fd1a98b97aa2", + "dwd_hash": "bc8918da623a50561d4ccc111d16af06" + }, + { + "table_fee_log_id": 2884084162039173, + "ods_hash": "69f65a6419459c00f9cc6e26fefee3e2", + "dwd_hash": "b183984bb35b92bc3dedcf8ab8363621" + }, + { + "table_fee_log_id": 2884084805455301, + "ods_hash": "2e84fa7b8569b0957792e2c51b60f354", + "dwd_hash": "8b2ad1d21bbc9789ddfeb425ed147267" + }, + { + "table_fee_log_id": 2884102524226949, + "ods_hash": "72b173f1156841a9be459d24fde212ac", + "dwd_hash": "df1e3c764267af56174665dbe32ca761" + }, + { + "table_fee_log_id": 2884112822406533, + "ods_hash": "08eb519571572da3bca154f27ef26940", + "dwd_hash": "b67d538c1475c39acaaada2104ba4098" + }, + { + "table_fee_log_id": 2884113768140293, + "ods_hash": "dc922af02a01f8a217ce90ab40309672", + "dwd_hash": "e4a1c4f913f4b88cbe7c49d760f40a5e" + }, + { + "table_fee_log_id": 2884133674716485, + "ods_hash": "8539580ebdec38d1408b15af1e5c6a5f", + "dwd_hash": "95badeb2bbfb26ee9b6bd7e959243a39" + }, + { + "table_fee_log_id": 2884134140857669, + "ods_hash": "6ee48e53cc27ab671c61ed7fa52c4870", + "dwd_hash": "d419c2cbcdfbcc7cbf446237b021d0a6" + }, + { + "table_fee_log_id": 2884144797437317, + "ods_hash": "5054827ab3c0b4ad85b7d5209f98ad77", + "dwd_hash": "0432a33571d60ee375b314ef1aa34db8" + }, + { + "table_fee_log_id": 2884146733534725, + "ods_hash": "d559b7325d167c11fcdd85aa21669660", + "dwd_hash": "242433d89782cf0e05eeb2298056433c" + }, + { + "table_fee_log_id": 2884146919738821, + "ods_hash": "23982d16002e0c3534709e97fc5dd675", + "dwd_hash": "8e411b6b548a96fe3e121050947bd774" + }, + { + "table_fee_log_id": 2884159167745413, + "ods_hash": "da2d6bc2e509241077826f1ec5841c23", + "dwd_hash": "475085fc91d6fc081f3d16194ed29ec4" + }, + { + "table_fee_log_id": 2884167223102789, + "ods_hash": "69e0fb3662c525c8fb6c22875ae374d4", + "dwd_hash": "3cffb7b4ba1d5488e0d135c1fc288651" + }, + { + "table_fee_log_id": 2884169189674501, + "ods_hash": "15596adb3878f3f4306c7e594b5774af", + "dwd_hash": "955e1874ac1f5e58832f8e66c3d5d081" + }, + { + "table_fee_log_id": 2884176832663045, + "ods_hash": "9cb2644a960586b3c3ade6c236318a5a", + "dwd_hash": "41dcb0dc15b68dc331015c0e0ebb2dbd" + }, + { + "table_fee_log_id": 2884182426881413, + "ods_hash": "d3d4ee0df53ddc473cac3b13f1949ccb", + "dwd_hash": "a028ec8d170218e71215a55b849444ea" + }, + { + "table_fee_log_id": 2884183893658949, + "ods_hash": "218ca627dcacf4a7c3c1a23f5ac7bc13", + "dwd_hash": "f60ed62205aa75e56776faee5d94256d" + }, + { + "table_fee_log_id": 2884187077086725, + "ods_hash": "b8f3628d3e95409605e7911c465a81c8", + "dwd_hash": "5385fe2011965fc3ea63f26a5984b3ec" + }, + { + "table_fee_log_id": 2884192656428549, + "ods_hash": "09146ee3072c01b267182394d07f723f", + "dwd_hash": "09f5630fa5dd8642584848edd5dfb29d" + }, + { + "table_fee_log_id": 2884197687758149, + "ods_hash": "b3d24d4e50873d1b994ddb7c6642d3fb", + "dwd_hash": "36689f6fb530c04ba40740b0d5ae26e6" + }, + { + "table_fee_log_id": 2884199480249861, + "ods_hash": "bd851e9acc6b32dfe946cc3135a3656f", + "dwd_hash": "376c9277cd135eabbc616e56575bdd1b" + }, + { + "table_fee_log_id": 2884199528287621, + "ods_hash": "7b8bcf425dc209ebd300e7d47fa1e31d", + "dwd_hash": "a02d357c50f71f94722c88fe75028887" + }, + { + "table_fee_log_id": 2884206911147525, + "ods_hash": "bbc1b5fa2269e9a0f43309d5be6528a9", + "dwd_hash": "7e3ce036643f5caf03fb879cc8d7c71b" + }, + { + "table_fee_log_id": 2884206979304773, + "ods_hash": "7e8c8d1d6449a1e16ed6ed3c12be57c6", + "dwd_hash": "4e99e1bcea32be42f32601bed5647ef3" + }, + { + "table_fee_log_id": 2884219169066437, + "ods_hash": "a1999cf68000e600bb3e6c1b8ac0211a", + "dwd_hash": "4212c2f914e47082a5b99ddf457ebb94" + }, + { + "table_fee_log_id": 2884226569899333, + "ods_hash": "0cb546dd0eaafbe0354d518acf96b9ca", + "dwd_hash": "b366e734962b9587194631a756223373" + }, + { + "table_fee_log_id": 2884229269982597, + "ods_hash": "f88974799ddb3d389df69084f9ddd369", + "dwd_hash": "32b191fa498b84febcdf1eb50a57313b" + }, + { + "table_fee_log_id": 2884243554258245, + "ods_hash": "1ab802a71bbb484c19751a9fed7a07af", + "dwd_hash": "9aae17c72dc2e9dd7078b7590811b641" + }, + { + "table_fee_log_id": 2884243669323205, + "ods_hash": "c92ad5701a6743a716aeedafc345407e", + "dwd_hash": "1d432244312366d1da469aacd4c8a568" + }, + { + "table_fee_log_id": 2884243721096645, + "ods_hash": "5ccfe315e4918958a679f207b63b7477", + "dwd_hash": "0c4486ec719159c12ece0478adf4d8b5" + }, + { + "table_fee_log_id": 2884244935298501, + "ods_hash": "a07481bf180b6d3a0b2ee9ce673d9ed3", + "dwd_hash": "37b832a29b2736f353176504423fb878" + }, + { + "table_fee_log_id": 2884271138639301, + "ods_hash": "a90973f31a766e25bf64e79524493e54", + "dwd_hash": "d18f634643de88cf9d3e038bc3c42893" + }, + { + "table_fee_log_id": 2884274545347973, + "ods_hash": "ab52f5c147676cb439ece8f3ce918f29", + "dwd_hash": "44588b8e978266779347a01a8d35d539" + }, + { + "table_fee_log_id": 2884276476464645, + "ods_hash": "95fc3a21c24d06c43a330db6261bd288", + "dwd_hash": "9e34f76b94f69f1c137b16c1a7ecb0b6" + }, + { + "table_fee_log_id": 2884278030454149, + "ods_hash": "5a8429d74f20755e09ad7b5573a5aed6", + "dwd_hash": "48ced2afc3a08158982b4b78713c3302" + }, + { + "table_fee_log_id": 2884281067752837, + "ods_hash": "0f22bbf61dac1a8c6d1c9a15d284a5b8", + "dwd_hash": "d93c3b0b5b221a173771ab8ea445b81c" + }, + { + "table_fee_log_id": 2884282419072453, + "ods_hash": "0bd5a3c027857d1e89ad2ed225858bf3", + "dwd_hash": "1bb664720b8de0eae55d42aed510f070" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ], + "mismatch": 1449, + "mismatch_samples": [ + { + "store_goods_sale_id": 2888365943277893, + "ods_hash": "ae551548528929e46cc60f613c423bcf", + "dwd_hash": "c9f394e53a606211cb31b08eff35343a" + }, + { + "store_goods_sale_id": 2883719457049669, + "ods_hash": "a91b64d7fe769cc0f269ddc530b0ba1e", + "dwd_hash": "8d7244d0b526aa59584c42ea20a09918" + }, + { + "store_goods_sale_id": 2883719457049670, + "ods_hash": "5ba96663a0def9f5909a7fbba37ceb3e", + "dwd_hash": "6301817448b64bed6906957c38435d9b" + }, + { + "store_goods_sale_id": 2883719457066053, + "ods_hash": "28f45646fbfe9d68b3edc9a29b631e09", + "dwd_hash": "6401e62de708e347bd78cc2c942ab5d9" + }, + { + "store_goods_sale_id": 2883783941704837, + "ods_hash": "c189bdbccfc5db6cd86f7e422b2ab197", + "dwd_hash": "bc44abd80acd10f7ebc472e9948b5e57" + }, + { + "store_goods_sale_id": 2883783941721221, + "ods_hash": "6cbf93d555eea63b3d4939c9e6080a75", + "dwd_hash": "45b0eff2fa1396d231e6c0e06c78a1e8" + }, + { + "store_goods_sale_id": 2883783941721222, + "ods_hash": "0e0c57748031e56538f99a5cf89eb037", + "dwd_hash": "bc5658a0b35c59935adcea72a62b9e19" + }, + { + "store_goods_sale_id": 2883783941737605, + "ods_hash": "a7359b682225f1dc9da3ac7f74511ee1", + "dwd_hash": "bcf1622ef85aee478496042e79ab9fc6" + }, + { + "store_goods_sale_id": 2883783941737606, + "ods_hash": "106c88898916312a37b8d89320638bf5", + "dwd_hash": "1160e657ee1912714a41dce5b80bddc2" + }, + { + "store_goods_sale_id": 2883856965274757, + "ods_hash": "c3273833abda5351077d27d6e1d4341d", + "dwd_hash": "917b8d16ac8ee609972d60141952e2c3" + }, + { + "store_goods_sale_id": 2883856965291141, + "ods_hash": "584c7d1a3ac154f5f013df1c04415934", + "dwd_hash": "463482d525813f30915dcc169e899ef8" + }, + { + "store_goods_sale_id": 2883856965291142, + "ods_hash": "ef750e65cd14c02c528cc15bbc8b15d0", + "dwd_hash": "938e9d8073e5d660abeb5f52636d4c57" + }, + { + "store_goods_sale_id": 2883924157975877, + "ods_hash": "75b1d10570a40b392f860bd3ab2a930b", + "dwd_hash": "2958e3d456da9c8d5aa944afe79a8e99" + }, + { + "store_goods_sale_id": 2883925553204741, + "ods_hash": "6cc412c799dd4667fb0fbb06f1a64b41", + "dwd_hash": "5306e942404138ad75da2291d1097823" + }, + { + "store_goods_sale_id": 2883925553204742, + "ods_hash": "e10985368e8c75255284de033aa2cdf1", + "dwd_hash": "b29413f78b1e3ae09269c812d778289b" + }, + { + "store_goods_sale_id": 2883925553221125, + "ods_hash": "b5a448d0fada4358be7881d03b73ed1b", + "dwd_hash": "bb0a16bc75665255f6f59971c28429e8" + }, + { + "store_goods_sale_id": 2883925553237509, + "ods_hash": "a68931864e24dba44dd01997c60a1c8b", + "dwd_hash": "705efd4eed87345570f5da9ea0de50e7" + }, + { + "store_goods_sale_id": 2883925553237510, + "ods_hash": "86897dbec65405fe8b786f7e270fb766", + "dwd_hash": "9035e526a4549a35c047f7de7a122ab2" + }, + { + "store_goods_sale_id": 2883925553253893, + "ods_hash": "211e6850ad3cbc00155def5c8ab0fbde", + "dwd_hash": "90c339157e60e57c4899339ff3c99109" + }, + { + "store_goods_sale_id": 2883925553270277, + "ods_hash": "72b25698330fdc84960e4f22884feea9", + "dwd_hash": "02f4ad7d0a5ed0c52b6e42a92878c49c" + }, + { + "store_goods_sale_id": 2883925553270278, + "ods_hash": "6c80b802caf401b58807876d66426e2c", + "dwd_hash": "c5724a5eb045f3c535a3fc19f077b776" + }, + { + "store_goods_sale_id": 2883925553286661, + "ods_hash": "bf255a3e7d53ba761f6e7873a35ed935", + "dwd_hash": "663199a7b6903dba7927d62842c6f201" + }, + { + "store_goods_sale_id": 2883952992161221, + "ods_hash": "4b03de7c8f1ee9aa1a74181aaf9d400a", + "dwd_hash": "db372dc18ad8d2da3aa5aa6e1c859c95" + }, + { + "store_goods_sale_id": 2884028546698693, + "ods_hash": "7018f987e18bcd5c1b78c20e9bf22f56", + "dwd_hash": "167821c747f2cb0b403bb994c46041f9" + }, + { + "store_goods_sale_id": 2884028546715077, + "ods_hash": "81575dc7f561cf3b5d0f605b1901c6ac", + "dwd_hash": "fab2ffce0dbb1de7be22da44f5186b96" + }, + { + "store_goods_sale_id": 2884035528134021, + "ods_hash": "af919ba5ff0e4112a4dd5e4e2aa3dfb8", + "dwd_hash": "4c5cbf148fa99ba2cf8710aa517a0ae5" + }, + { + "store_goods_sale_id": 2884035528134022, + "ods_hash": "d08ef32d2f49c27caeb8090a0486a07b", + "dwd_hash": "4b5b8a78b6e104ffae84a4d63fe76aad" + }, + { + "store_goods_sale_id": 2884035528150405, + "ods_hash": "31165ae7133ba2cea89179aad9745427", + "dwd_hash": "38d4b6e87b087278da88008ce7721c23" + }, + { + "store_goods_sale_id": 2884035528166789, + "ods_hash": "a7675b58bd639867e7f0dbd7e62dba32", + "dwd_hash": "b49f87851e9d273e582c5829df90bcec" + }, + { + "store_goods_sale_id": 2884035528166790, + "ods_hash": "23fc156783e0b243e62430ed4eb03d08", + "dwd_hash": "98a291a4e927cd2de76450eceb9b1b28" + }, + { + "store_goods_sale_id": 2884035528183173, + "ods_hash": "5a3022c5a1dda76f44cdde8d015a6506", + "dwd_hash": "b31e11cc410b23a32740a295ccd90631" + }, + { + "store_goods_sale_id": 2884073991015749, + "ods_hash": "8df8368b42997814a1825e522255fa81", + "dwd_hash": "da501c4fac916f0d858dd16e1ea43225" + }, + { + "store_goods_sale_id": 2884078411140549, + "ods_hash": "cb7a3624485a4fdd2af2b4d9cbdee70f", + "dwd_hash": "ce37fca008859a723cf90392d1a8a695" + }, + { + "store_goods_sale_id": 2884084162399621, + "ods_hash": "754128a8da0760f1fc329ea73ac52c10", + "dwd_hash": "ca6c85e9645964a16e67a5a5a60a1eb7" + }, + { + "store_goods_sale_id": 2884084162416005, + "ods_hash": "bff7f382b16a21304be0a97db123f4ca", + "dwd_hash": "fa5d96a8dc210dd18ab744bd492378f8" + }, + { + "store_goods_sale_id": 2884084162416006, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432389, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432390, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162448773, + "ods_hash": "70b158141c0619a54c1c13acfa9d2d48", + "dwd_hash": "6b449cd166371bfb45866fa259df2e61" + }, + { + "store_goods_sale_id": 2884098831977797, + "ods_hash": "c7b7ba710418e7941da40f9ce2f66fd6", + "dwd_hash": "5f204ece2bbc12c5781dbe6c5fd78753" + }, + { + "store_goods_sale_id": 2884102524636549, + "ods_hash": "9c33cde00e86e171831deee4cf68461c", + "dwd_hash": "4a06c420add98d40fdaa2dae9b1a8248" + }, + { + "store_goods_sale_id": 2884102524652933, + "ods_hash": "1bc93482f3f018b6ea14580d88fd0112", + "dwd_hash": "12331a59520c8db205dd4f5d965836fb" + }, + { + "store_goods_sale_id": 2884102890245445, + "ods_hash": "fde5c30494e2da3f7e17054d48a0f0ee", + "dwd_hash": "9db910f3ba8141084dfe40e8d909ebc8" + }, + { + "store_goods_sale_id": 2884102890245446, + "ods_hash": "1a0ac5832c8b012fff1f9ff845aeef5f", + "dwd_hash": "3d3b9d08393e5e07d10ebafeda6aa598" + }, + { + "store_goods_sale_id": 2884133675044165, + "ods_hash": "be361bca6dff3f43aec6b2675253f9e3", + "dwd_hash": "b4c32c2c3398bbdaf6fa3d1a11229fab" + }, + { + "store_goods_sale_id": 2884133675044166, + "ods_hash": "d52d925c896fca712697acd73f593e44", + "dwd_hash": "3c94ba7089bca3a231447d834e44efbb" + }, + { + "store_goods_sale_id": 2884144797764997, + "ods_hash": "e8656e1b065de3f00822779934c12d3b", + "dwd_hash": "f39fe3f945d77878009a89c7c6381f56" + }, + { + "store_goods_sale_id": 2884144797781381, + "ods_hash": "3c17f17227601424eed5b14e5c87af2c", + "dwd_hash": "9c7a3945f74793135b2be1b77e12e257" + }, + { + "store_goods_sale_id": 2884144797781382, + "ods_hash": "661b0c51cb67b13f44f7f3cf3194509e", + "dwd_hash": "aa7723e85083b6be4526203a98cb56d1" + }, + { + "store_goods_sale_id": 2884144797797765, + "ods_hash": "f7b12d5d10ed0f1003e5753d0f70b3e6", + "dwd_hash": "b80167dcb9346eb517561e795802f1ba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ], + "mismatch": 654, + "mismatch_samples": [ + { + "assistant_service_id": 2859875717614661, + "ods_hash": "fa7b13f743689f91e11ab203bf427a5c", + "dwd_hash": "d099b28ad1a10e462ae753685d9eba6c" + }, + { + "assistant_service_id": 2859875718089797, + "ods_hash": "53843650e53786a55f710b1b9ea85837", + "dwd_hash": "879e73a5d9721c983284ec5a5ef1a38c" + }, + { + "assistant_service_id": 2859890845551685, + "ods_hash": "34e4fc00e77657d1a496e4158515d5c4", + "dwd_hash": "1fe15d3db83ec5df5cec783812894980" + }, + { + "assistant_service_id": 2859919577582725, + "ods_hash": "ef07ea5514697fa6d02a9313cfc0464c", + "dwd_hash": "1923bc7c623f96f7a3693e1d25085cdd" + }, + { + "assistant_service_id": 2859934271933637, + "ods_hash": "d37543700f79b556cf764c58e27f3ed8", + "dwd_hash": "6e5a12638cd1143aa217df1a11a2515c" + }, + { + "assistant_service_id": 2883857218604037, + "ods_hash": "d26a532bfb9c327e3f4ac97f41380ef5", + "dwd_hash": "396cd43c0a4d774a8a782c20e8fda66b" + }, + { + "assistant_service_id": 2883967682317701, + "ods_hash": "9def797dc289e17f5039f2d585bb394d", + "dwd_hash": "957f9a705b8eccce80a52c57af4fe884" + }, + { + "assistant_service_id": 2884112822701445, + "ods_hash": "a1a0b49f0ef316687460de0b4334742c", + "dwd_hash": "ea833b3b513415f97c7ca98d3de2a762" + }, + { + "assistant_service_id": 2884113768484357, + "ods_hash": "2704526d1f560e95279096d3d85b58b6", + "dwd_hash": "75cc09bd6782db5e0d2058366d985327" + }, + { + "assistant_service_id": 2884278030765445, + "ods_hash": "f7c94496409c43c2f5b9e508c12eccac", + "dwd_hash": "cd10b3103ad55ccb8469df38f34ab4fe" + }, + { + "assistant_service_id": 2884299272243205, + "ods_hash": "3ad9d0e8d07220b43595b2774c9cec05", + "dwd_hash": "e33acfecefd734b405c5893de801c0c2" + }, + { + "assistant_service_id": 2884369534961733, + "ods_hash": "dd0bf2b777a37712928b9e0701a31c25", + "dwd_hash": "73bf81ce305e2b1d9937f57cc952a7b9" + }, + { + "assistant_service_id": 2884406405122117, + "ods_hash": "6fdcb0bb6a237c2c1040bab7f2b82ffe", + "dwd_hash": "362edb6447740aee95d1314ae8013710" + }, + { + "assistant_service_id": 2884406405400645, + "ods_hash": "22e6fa5bd194d5cb2cbd692aa84b6b71", + "dwd_hash": "e9a8a52adc2da7a47422c57515920e49" + }, + { + "assistant_service_id": 2884406405662789, + "ods_hash": "d0f360c09d526301c7bd4193dafadc77", + "dwd_hash": "0946a10bec0b8097a172d8c93180f631" + }, + { + "assistant_service_id": 2884406405924933, + "ods_hash": "2e17e68e4ab082d11b6a61509b5c95bd", + "dwd_hash": "d91f464711999ee9a0b5729f75cfa867" + }, + { + "assistant_service_id": 2884406406187077, + "ods_hash": "3114efe09a86fe4a1f2f0a6b3a3c6375", + "dwd_hash": "95e6602ca0696eb84073c6cd4cc9b82a" + }, + { + "assistant_service_id": 2884406406449221, + "ods_hash": "e5113f5bde66585fd8c878c1fd292dc3", + "dwd_hash": "fcc1445a6f6dcfd2de343f6ce8f20838" + }, + { + "assistant_service_id": 2884456168458437, + "ods_hash": "e9f22640f66fdf298685dcaa79799504", + "dwd_hash": "5692e01622cc96cc98f114f3fa9de429" + }, + { + "assistant_service_id": 2884458957047813, + "ods_hash": "be957a1d756656caf62552ec764b5c8c", + "dwd_hash": "dac69c2c8e3248a3303392187f500bdc" + }, + { + "assistant_service_id": 2884477325625541, + "ods_hash": "93c4cfcf34c523a8fb8528c72cc06c2b", + "dwd_hash": "61bdde6bcdcbfce840b707cc51ec9cd4" + }, + { + "assistant_service_id": 2885318693456389, + "ods_hash": "4ecff5e77539115d8efe54ef9fff866c", + "dwd_hash": "03bcfbc2ceed85cabc12ba2753334e87" + }, + { + "assistant_service_id": 2885343969364357, + "ods_hash": "1c281c3b08d05de00a2e0d6335c61895", + "dwd_hash": "d752338048b27f6219cb9cc7d930ee3c" + }, + { + "assistant_service_id": 2885384116226437, + "ods_hash": "095ee4b561bd38d57c6e2c88e839d56c", + "dwd_hash": "8cf48092871cc5f87148d4a4dfd4fc60" + }, + { + "assistant_service_id": 2885409492076869, + "ods_hash": "1ab66eab0458896d70b7b55ba92d44a4", + "dwd_hash": "9d445572e168a5be2d8b60e2505477ee" + }, + { + "assistant_service_id": 2885409492388165, + "ods_hash": "ec1420acad43b65be7073c70e2e1fa78", + "dwd_hash": "6bec50742325277c19f5b7ed9568817e" + }, + { + "assistant_service_id": 2885409492732229, + "ods_hash": "576bd882a5da12c9630e655e40d61218", + "dwd_hash": "5cca314b15ddb7b4a11d5d4e9287eeaa" + }, + { + "assistant_service_id": 2885485592906117, + "ods_hash": "3dc3bc09b291bdacd37c3e260fd9f3c4", + "dwd_hash": "d8ee4d04cc5638de108dd0b6851cda60" + }, + { + "assistant_service_id": 2885491390826949, + "ods_hash": "3510b182200a58e9ac296c809a125809", + "dwd_hash": "563a02874c05472ca66f69bc9093efdf" + }, + { + "assistant_service_id": 2885515567352133, + "ods_hash": "9279f808835fab81649df54c097eef81", + "dwd_hash": "4089a7ab4d4512393a090739f777f30f" + }, + { + "assistant_service_id": 2885677653199365, + "ods_hash": "42d3ba27daa505f7eb899cab83b1604a", + "dwd_hash": "5c776d41f3bbf8bd0c79b6064a11968f" + }, + { + "assistant_service_id": 2885710579550533, + "ods_hash": "8e84155306056401d09e9625aaa5a7a3", + "dwd_hash": "9f3fe106520d68d4b179c4f2572e608b" + }, + { + "assistant_service_id": 2885719805823365, + "ods_hash": "50c018838b728b7fb4bb68adc30db739", + "dwd_hash": "4d7d537a6aef797cc01059a7ed98128a" + }, + { + "assistant_service_id": 2885740978555397, + "ods_hash": "751b1d5025244e01c34e450969cca5b6", + "dwd_hash": "2b74156f7b2f9f8f839a80b2df3db9c4" + }, + { + "assistant_service_id": 2885754168068485, + "ods_hash": "d422a9d2ba5d7f4732629ef4e11b1f76", + "dwd_hash": "e272fafccf5bbee367d16f808a5b49c9" + }, + { + "assistant_service_id": 2885813118175557, + "ods_hash": "c47bc0b1879af2992c29095673549eb0", + "dwd_hash": "6fe62c32640f23950d224fa9406eb21f" + }, + { + "assistant_service_id": 2885814037268869, + "ods_hash": "16720386bb0f6b3cf6576e82fe082144", + "dwd_hash": "90f5b40153b0413aa9c122090bac95dd" + }, + { + "assistant_service_id": 2885816260626885, + "ods_hash": "49c9c38f925e132d6c1370f4dbd7679b", + "dwd_hash": "881527a4dc9a398027258a56f2706e6f" + }, + { + "assistant_service_id": 2885816260905413, + "ods_hash": "a5e28e565f615769e7c5833f1f371c6d", + "dwd_hash": "47e47f4d4de11c5dcfffd2c10d95a14d" + }, + { + "assistant_service_id": 2885816261151173, + "ods_hash": "e44105242583f3188e21c66aa524e37b", + "dwd_hash": "1a45cdd68ecdf29dd4e1c85b2021d063" + }, + { + "assistant_service_id": 2885816261462469, + "ods_hash": "ba2a1cfd2d7dd1973f2aa8fb388191d0", + "dwd_hash": "59959ab9a9f17c2e4347c2cdd63ab9df" + }, + { + "assistant_service_id": 2885824614811973, + "ods_hash": "e47fd1904bcb191a2049265e0450eec2", + "dwd_hash": "62236f1d2ede0c1a243e9fe50bcc3b05" + }, + { + "assistant_service_id": 2885877690354117, + "ods_hash": "ea66b348acdbf6a7873c381e27805a3c", + "dwd_hash": "c2daf181af40b00060de8797e5255b70" + }, + { + "assistant_service_id": 2885912249895237, + "ods_hash": "b3aebdd1746f46fab9cb078b1daef4c7", + "dwd_hash": "b76511cd4e0a1c496947b9bd251d92fb" + }, + { + "assistant_service_id": 2885912250173765, + "ods_hash": "7f0f7cf0488a0ad650bb9d548866018e", + "dwd_hash": "dd4921f18273c16e8da748a0b5b01258" + }, + { + "assistant_service_id": 2886025942993221, + "ods_hash": "713fa40a0ad7d9a89f146d13baca726e", + "dwd_hash": "3246f114e4405535e3ffa1d1d9da11fb" + }, + { + "assistant_service_id": 2886025943238981, + "ods_hash": "00973f7c346335ceba7a431125e60da0", + "dwd_hash": "5a66c1b894541dbcde94df3630226368" + }, + { + "assistant_service_id": 2886705296197957, + "ods_hash": "72a29b3cae317ebc24e585371e601565", + "dwd_hash": "82a84fc0e4412647d0ef2d52c710ec5e" + }, + { + "assistant_service_id": 2886719222434181, + "ods_hash": "4dd9b10254ae61ceaaedf03a51b597a5", + "dwd_hash": "72abe14789e064a5f75ca17b7d1cab92" + }, + { + "assistant_service_id": 2886745517099461, + "ods_hash": "2f59d2ebeb0efc4c2a3eba7294a7dc9b", + "dwd_hash": "e4b8e5e208ebef936a8a1937a680e34e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ], + "mismatch": 1173, + "mismatch_samples": [ + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2858900465764101, + "ods_hash": "d555647afea36b1045bc43b3ccc7d6f7", + "dwd_hash": "2d758521312690898acce8bdfd25d170" + }, + { + "platform_coupon_redemption_id": 2858902528526085, + "ods_hash": "d8ace7028679afbe461f0973f26fe57c", + "dwd_hash": "64b0368be845eab6fbc57643fce33374" + }, + { + "platform_coupon_redemption_id": 2858905827919557, + "ods_hash": "bf8e469b41ca3f40043e214df01aeea6", + "dwd_hash": "a87d128a0794b2cd9c2c5b1a82a9c534" + }, + { + "platform_coupon_redemption_id": 2859637215972485, + "ods_hash": "4f32056c11e10fbcbd72a0663c55c0a7", + "dwd_hash": "40db5725164b8f81cb5aad9737f61eaf" + }, + { + "platform_coupon_redemption_id": 2859655212764293, + "ods_hash": "735efffa0ff2fd1bdd7fd725393db6e9", + "dwd_hash": "e7fb277498dee35d7523315612342ab3" + }, + { + "platform_coupon_redemption_id": 2859688383368325, + "ods_hash": "184203ec8995c558a8027f879b9139d3", + "dwd_hash": "f85e5feaf45c6ad06252ef1197c3b1c3" + }, + { + "platform_coupon_redemption_id": 2859741772532933, + "ods_hash": "8a796e30769df7ad1e9968e6bff7da04", + "dwd_hash": "fddc65abfb0a151f9339322c42e219e3" + }, + { + "platform_coupon_redemption_id": 2859741894511813, + "ods_hash": "f03c962a56e7ac2af3abb46c2a053ddb", + "dwd_hash": "98151bd5840e7b53e413b1ff4658eecc" + }, + { + "platform_coupon_redemption_id": 2859771195280453, + "ods_hash": "ab7417ab9e058402d961012bba7f1cbb", + "dwd_hash": "09d3f39fd51730130d87fee7c485021e" + }, + { + "platform_coupon_redemption_id": 2859778292075653, + "ods_hash": "4c681f914d10da481a18c0275db1d068", + "dwd_hash": "2eff2af48e5c5e5fc36aa0ddea2ce1a7" + }, + { + "platform_coupon_redemption_id": 2859807207804421, + "ods_hash": "8a095d41183919964ab7d27cbd12ef34", + "dwd_hash": "cceb4e6c14629cd8b38111c09dcd1518" + }, + { + "platform_coupon_redemption_id": 2859807207804422, + "ods_hash": "e692877ace6c3f8ec2a94258e003baf0", + "dwd_hash": "d42e275d306448c6c1275fe4488d2200" + }, + { + "platform_coupon_redemption_id": 2859811957050437, + "ods_hash": "d74013e55a936ebabbf64719fd4bad7c", + "dwd_hash": "cb4941bbea5198477d5d6d9ba718d0af" + }, + { + "platform_coupon_redemption_id": 2859842889370821, + "ods_hash": "434deb48c705ee2f2559de0e15bd1c9e", + "dwd_hash": "464494f5421bde6666651db2fb01c0cd" + }, + { + "platform_coupon_redemption_id": 2859850500115525, + "ods_hash": "a22473680ff5f5e8f8180135d9eede64", + "dwd_hash": "50361ee1335dff3226b9469a25fad668" + }, + { + "platform_coupon_redemption_id": 2859853566774341, + "ods_hash": "14d1dcc581f41d8621699254662f4d4b", + "dwd_hash": "29b6f300ef63640ed78674b52b214689" + }, + { + "platform_coupon_redemption_id": 2859855025409541, + "ods_hash": "fbfb1b8f3627e182b61359b6547cc467", + "dwd_hash": "01fee07409afbfda1c7777ecae5efee3" + }, + { + "platform_coupon_redemption_id": 2859861867760837, + "ods_hash": "a14f860bd15257bb9aa7399531279bee", + "dwd_hash": "711fd50819c612eb13d8c01599179f3d" + }, + { + "platform_coupon_redemption_id": 2859879443746309, + "ods_hash": "034a57fc03970e95edf48e63dc62bcbe", + "dwd_hash": "94ad6a9a23b2275dffdddce0f1c475a4" + }, + { + "platform_coupon_redemption_id": 2859898180799685, + "ods_hash": "a6c5e23132b504656aa2301d463f19ba", + "dwd_hash": "4f0a46dbafe5a6772f05aae2274bd2fd" + }, + { + "platform_coupon_redemption_id": 2859920996765189, + "ods_hash": "c5935d7b396ab312f4bffc6703b32cb7", + "dwd_hash": "ff6216230529882b0da5a370a3a8078c" + }, + { + "platform_coupon_redemption_id": 2859922909432901, + "ods_hash": "4dc19a0ea7c41978b63b4fdb99537ee4", + "dwd_hash": "b5b8ce8814d6a62b1531df8a2ee685c2" + }, + { + "platform_coupon_redemption_id": 2859946841754757, + "ods_hash": "d6bde963982c9b9010768576c29ab37c", + "dwd_hash": "c9396b60aeb789f551495fc3ba30dea3" + }, + { + "platform_coupon_redemption_id": 2859959157771333, + "ods_hash": "14452109227517616e49aeb334de619d", + "dwd_hash": "558e0ab9c372e589a5557c1a0ba91ddd" + }, + { + "platform_coupon_redemption_id": 2859964348763333, + "ods_hash": "c19024172f8816cd32b2515e15d6fa16", + "dwd_hash": "139c9dd3066f49b23b77aa1c8d3b9a1c" + }, + { + "platform_coupon_redemption_id": 2859978577710149, + "ods_hash": "1a697cde03c97a8645a111b866f5f2a8", + "dwd_hash": "69f334db9e2f60d469f998752ae43873" + }, + { + "platform_coupon_redemption_id": 2859981422775365, + "ods_hash": "4a9f3ee5b60ed38305159279ee7a24b5", + "dwd_hash": "45e242ff6e1a23ed5e896207878355f0" + }, + { + "platform_coupon_redemption_id": 2859989505625285, + "ods_hash": "f09877961b68117702d6383e48956b27", + "dwd_hash": "4ea5c5e90ffec70b5f9766ec148fc3b3" + }, + { + "platform_coupon_redemption_id": 2859999214816389, + "ods_hash": "9b5476bea591a00ac0444f474f1018e2", + "dwd_hash": "ca043ffcc6fa47cfc786356594e9d552" + }, + { + "platform_coupon_redemption_id": 2860002674592965, + "ods_hash": "4731c915f4ccd5b08b3500e9341f51b0", + "dwd_hash": "d8cf49c5b4f423a05dd0cb0aea650ce4" + }, + { + "platform_coupon_redemption_id": 2860014098402373, + "ods_hash": "192ab9bd1e390a9e3d9b20817bc5367b", + "dwd_hash": "e959479a2d64cc71cf68aab8c7709f41" + }, + { + "platform_coupon_redemption_id": 2860014268681349, + "ods_hash": "7fdf46fa401690b2da85c5a692f84fe6", + "dwd_hash": "e2d11054e5de96d5e624cead751a5caa" + }, + { + "platform_coupon_redemption_id": 2860018764319941, + "ods_hash": "c2501354329cee675f5455a2d94fded6", + "dwd_hash": "c7875e9bce6460ee6b0c398b9cda89a6" + }, + { + "platform_coupon_redemption_id": 2860024155819141, + "ods_hash": "aa8079ce3300aeac185edb2d2c1e99a8", + "dwd_hash": "46f592e265005a476441886fe9a2aeda" + }, + { + "platform_coupon_redemption_id": 2860029915352197, + "ods_hash": "2c7db6cea4dba60190f3715a64355912", + "dwd_hash": "1970245ebb1c5f2c1e5688f83b689866" + }, + { + "platform_coupon_redemption_id": 2860042074574021, + "ods_hash": "2864d4087d74073726c00b87f58e0cab", + "dwd_hash": "466799966511952b387fbd770738fdb4" + }, + { + "platform_coupon_redemption_id": 2860058566053061, + "ods_hash": "4eebac273dc9ec57b9812990bf36e6e3", + "dwd_hash": "45ea7927dea6eeac77bbfc16bb7e64f5" + }, + { + "platform_coupon_redemption_id": 2860058705628677, + "ods_hash": "c6b8ccf03331ed6ef8597d9174e0c2b4", + "dwd_hash": "07899e3cf3bf59de51ad577a3a6d808e" + }, + { + "platform_coupon_redemption_id": 2860060060929157, + "ods_hash": "8b4925546789553df80f9977aa16c7be", + "dwd_hash": "8c133122aa8d18378b3c6cea74c0cb06" + }, + { + "platform_coupon_redemption_id": 2860065915669637, + "ods_hash": "1857f033be553f05b09fe508bcb4cfa9", + "dwd_hash": "2bd7b0c300f84121c0c1529e30247b2b" + }, + { + "platform_coupon_redemption_id": 2860071105891397, + "ods_hash": "d0d2e7a4b508af5dd7a09de517afe966", + "dwd_hash": "e7346a284e6c1e45b6176aa8a18b5e53" + }, + { + "platform_coupon_redemption_id": 2860076217486405, + "ods_hash": "e35bc228c7e3f510779be6fad292f9ea", + "dwd_hash": "9694ccbc45b92db21a68eff90bebf088" + }, + { + "platform_coupon_redemption_id": 2860080730885317, + "ods_hash": "017e2f1df29fffc2f3fe13254724b753", + "dwd_hash": "0286c0e1856de4230f89e9290bc47b67" + }, + { + "platform_coupon_redemption_id": 2860083772001797, + "ods_hash": "e4752b06d19a0577ad3ae046977089fd", + "dwd_hash": "c3e6d01a6103bf791598d984c446f995" + }, + { + "platform_coupon_redemption_id": 2860105864302085, + "ods_hash": "31ea606c2b3901317f291ca97da40951", + "dwd_hash": "1331bc5d89e64b0abe096d757a153d56" + }, + { + "platform_coupon_redemption_id": 2860106446048389, + "ods_hash": "be76a73a2658631eecbdbdd77b2ba3ef", + "dwd_hash": "8519c81bed346e8d58ad4c373e62ee8e" + }, + { + "platform_coupon_redemption_id": 2860108627217605, + "ods_hash": "81cc07ace8897f6c1f9dc39df46c6eb3", + "dwd_hash": "2c85c073e1a12234a1792a9b2784488b" + }, + { + "platform_coupon_redemption_id": 2860108627217606, + "ods_hash": "9f5add8b31a19413605013cd0f178578", + "dwd_hash": "522ff74c628291719d27e3f74995cef9" + }, + { + "platform_coupon_redemption_id": 2860108627217607, + "ods_hash": "476a0484f8479af9699a532cd4e4ec38", + "dwd_hash": "a8202a4cb5db90da17f2123308c68515" + }, + { + "platform_coupon_redemption_id": 2860109314755781, + "ods_hash": "6c66f77074b0dbe56e98aa8428200803", + "dwd_hash": "0c691f172c57701b8b4836babd23a8c4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ], + "mismatch": 1544, + "mismatch_samples": [ + { + "payment_id": 2883719454805061, + "ods_hash": "db29d711a8f52a74b74d3a46fd52fdb7", + "dwd_hash": "bd5089bff6ef546cb5dedf636dab6f63" + }, + { + "payment_id": 2883738005671045, + "ods_hash": "d359776dcf5d7f4a816e8fb8877ec639", + "dwd_hash": "26c43e37075c17147aea9dcba250399a" + }, + { + "payment_id": 2883783935298693, + "ods_hash": "1de35716b5924a913781698a90a487b9", + "dwd_hash": "339c63bf54669a6b8352b90b291ddb6e" + }, + { + "payment_id": 2883842831355013, + "ods_hash": "7d1414973661db64a77f626664f03f16", + "dwd_hash": "8770a499dc0be9ee7bb7f0ac0a60e8a7" + }, + { + "payment_id": 2883856962980997, + "ods_hash": "88829b0d95694a241e3896191465f83f", + "dwd_hash": "a0906b99049194eaf90a10b3779fe9b2" + }, + { + "payment_id": 2883857216539653, + "ods_hash": "ee24d77354fa25876f3c47f4f3d897d1", + "dwd_hash": "758c531ecf8c03fa3067d8f65f268244" + }, + { + "payment_id": 2883913637645765, + "ods_hash": "0425cac0f5e536e25591a0fa9e74d88c", + "dwd_hash": "600ff4af30ceb4f25dad06c1a595a64b" + }, + { + "payment_id": 2883924155026757, + "ods_hash": "6282f091cb30ecd1d7ab5858961f8bdc", + "dwd_hash": "2a8c550a1cd4373a2094efa0516403b4" + }, + { + "payment_id": 2883925550419461, + "ods_hash": "a347176d0ad310f8ce659d9cec4d309a", + "dwd_hash": "78c0a8cbb58a84afa3e29d180fe188ae" + }, + { + "payment_id": 2883936113675653, + "ods_hash": "ff8cfc391b6f9ce7550f40b325f39fcb", + "dwd_hash": "5fdd664a2a6901aeff73093353e2b43a" + }, + { + "payment_id": 2883952989851077, + "ods_hash": "3b36506c0cf4121112db4ed958341502", + "dwd_hash": "f06f68cbecd14149873952dfbea6e487" + }, + { + "payment_id": 2883967678762373, + "ods_hash": "2e1abd7f2b4b88fb966622e8eb26e507", + "dwd_hash": "4ddbc2f570ee07dc3c125274e76f58a6" + }, + { + "payment_id": 2883972311879173, + "ods_hash": "a43553ffbf2f8eb27c082c8fef2b8cae", + "dwd_hash": "dfc8c4c9ff84faed0703b2e9d69d20fd" + }, + { + "payment_id": 2883995917241797, + "ods_hash": "162fcb9526578314738d939aaecb9c7b", + "dwd_hash": "7189485c7a5e5a444abe0a0b571c88b0" + }, + { + "payment_id": 2884028544519621, + "ods_hash": "a36fc70e9086d90db1d7f8e1184937ef", + "dwd_hash": "69a3be0ff298c07f49f70dccc26be2df" + }, + { + "payment_id": 2884035525496197, + "ods_hash": "2422c67fcd46e1ae3c508b2e161dbd6f", + "dwd_hash": "3572341b4659d068cec4ecb3cfa2052c" + }, + { + "payment_id": 2884038340742469, + "ods_hash": "b8e81a15ee4050a1221c5eb1bd32ac23", + "dwd_hash": "3b29b4b8c93af5f8258c3cdfa7c34409" + }, + { + "payment_id": 2884039649119685, + "ods_hash": "1a030c9108af7ee2c049c3ddeaede361", + "dwd_hash": "a06547f1dcf620afbd257f40a9c72e31" + }, + { + "payment_id": 2884073988427077, + "ods_hash": "6d9d4e073db89185ad6aa0bad0c00026", + "dwd_hash": "986cfe082f8d1fc2e6d52988ae9818f8" + }, + { + "payment_id": 2884075077127621, + "ods_hash": "15570acc7df32f8e9478c2caa457fd03", + "dwd_hash": "70531878fcabb9fa43c77aa4e22798ab" + }, + { + "payment_id": 2884078408879557, + "ods_hash": "f98f93992faf261d0ae79b6a537c645c", + "dwd_hash": "b0fcac30acd8a208dd3a1d46b6f1d5ce" + }, + { + "payment_id": 2884084159712645, + "ods_hash": "02ca22b3779fda6c56e17330dc34287a", + "dwd_hash": "c2866394126041ea0c631b9d5590dbe5" + }, + { + "payment_id": 2884084803308997, + "ods_hash": "bbe3302e3bb95eda51d00325e4afb310", + "dwd_hash": "4129397feb281c75ad675a5b7961849d" + }, + { + "payment_id": 2884098829208901, + "ods_hash": "c375e399e2680b407cdac4b0600df1e0", + "dwd_hash": "7dc32dd8e84fcc2a5ede4802d7627e39" + }, + { + "payment_id": 2884102521851269, + "ods_hash": "29c5ed749b8c8d1d7a137603df39a3e1", + "dwd_hash": "9976e6c99b169a2ee830be83177be3e6" + }, + { + "payment_id": 2884102886477125, + "ods_hash": "5767a133de8f2b33956bc331b58ffc53", + "dwd_hash": "a374b2ca40b6bb72fe69e7dee7f54602" + }, + { + "payment_id": 2884112819178885, + "ods_hash": "709f76d3291eb749f0075c61594e88c9", + "dwd_hash": "5b015a813c32a1d33decee333cb61426" + }, + { + "payment_id": 2884113765338629, + "ods_hash": "826426c17e9abf441469069380d92872", + "dwd_hash": "56d544d7ce03738d063ac7a63d2eae59" + }, + { + "payment_id": 2884133672586565, + "ods_hash": "6c5e7164a4b75ad1ee6435d9dcf8705f", + "dwd_hash": "7d9e3a8cb2bcb49df18615eab572d69a" + }, + { + "payment_id": 2884134137826629, + "ods_hash": "9fac04f5a4dafe20f1cd40702abf4858", + "dwd_hash": "905d5b3e8bad8571a50efa6377e862ad" + }, + { + "payment_id": 2884144795454853, + "ods_hash": "81668fb7f0ab54c123c52337f36ac4d9", + "dwd_hash": "68ec003b76a0f3517689886902fe21e4" + }, + { + "payment_id": 2884146731175429, + "ods_hash": "aba6964ceef015c01153e5722ed917d9", + "dwd_hash": "646501374ae915b90ca0e0b5de6bd53f" + }, + { + "payment_id": 2884146915184069, + "ods_hash": "e80384fb6c10bb14f3980cf1846c9b7b", + "dwd_hash": "3cec4b56f5e91d5d7cbf9ca569ebd36f" + }, + { + "payment_id": 2884155505954245, + "ods_hash": "07709b5877a814f2f1aba2e10077a685", + "dwd_hash": "e6bdd9726e08455a53f7584b5e106504" + }, + { + "payment_id": 2884159165369733, + "ods_hash": "34b1b7af2a6dd4e96452719c25acbb67", + "dwd_hash": "eee3740851cd35d497e9ebf3019512f1" + }, + { + "payment_id": 2884166277008773, + "ods_hash": "0aec5901c1f895220105ab5ea8467205", + "dwd_hash": "478994c4c3e5db4adffc5b2cc6c659af" + }, + { + "payment_id": 2884167220923717, + "ods_hash": "2a5a6d2afdc6ab21fb5d3da852df3102", + "dwd_hash": "ee69ec3e778275b053cd26fdf7b70e9e" + }, + { + "payment_id": 2884169187347973, + "ods_hash": "656caadf404f38959f30d1febf4809bb", + "dwd_hash": "4e91e051ed961d61e88a1945b50e08c9" + }, + { + "payment_id": 2884176829632005, + "ods_hash": "b9c71bab2a4c5c809efdd44d8fcad056", + "dwd_hash": "b7ace515731e2dd1a8ebcc9eb31fa043" + }, + { + "payment_id": 2884182420262278, + "ods_hash": "3a8cd03afae7435ab318dbbd8ac114ae", + "dwd_hash": "e35a56cd4d14548c20cb15be6ef78f10" + }, + { + "payment_id": 2884183891086661, + "ods_hash": "879972fdef940d60bc5e0f3370fde784", + "dwd_hash": "4fb2e2ea5bfbd084e57e1004ec4d3a78" + }, + { + "payment_id": 2884187074792965, + "ods_hash": "65310fbe3009e55d22f228198bae4026", + "dwd_hash": "839e76b29d15b7ac2fdb6dd67376048c" + }, + { + "payment_id": 2884188922285573, + "ods_hash": "c3520766e8cfe513156c0603160c6e97", + "dwd_hash": "4330b71d9ff375184cb4a28e4e21d181" + }, + { + "payment_id": 2884192648351237, + "ods_hash": "68020e75de25ee8db54efbb2b3e17c14", + "dwd_hash": "7cc82b1d30fb241215dd1f9e0d7324ac" + }, + { + "payment_id": 2884197685284165, + "ods_hash": "ff0e8405f850d6e6249c60e5285bc1b4", + "dwd_hash": "5dba2135c1b27c545547c2b7ee92ffcd" + }, + { + "payment_id": 2884199477906949, + "ods_hash": "0bfbba25d94537c8f2fd9527b1b32136", + "dwd_hash": "7006c06ebe5017cfd9555cc720c64e15" + }, + { + "payment_id": 2884199525830021, + "ods_hash": "f32fff56832782d63960e6a3824dc53b", + "dwd_hash": "89e44ef5850f547114c9dd81b8dfedad" + }, + { + "payment_id": 2884203093233029, + "ods_hash": "5dc3f47209626bfcdc82a497e45696c9", + "dwd_hash": "2ca54fc1186b7c1fd1bb6b354ec1c262" + }, + { + "payment_id": 2884206904872453, + "ods_hash": "d91e2d99f008dd4ad5d11c7ec01d136c", + "dwd_hash": "88e4b1e3cc2bebfa293df4179332a37d" + }, + { + "payment_id": 2884206976929093, + "ods_hash": "fa8a962ce21f666d0ebd0cff9cccf7e6", + "dwd_hash": "e53bca2bbb5f732fffdde576feacb1ed" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21494, + "total_mismatch": 45218 + }, + "generated_at": "2026-01-31T22:13:34.459141+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 203, + "records_with_pk": 203, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10193, + "records_with_pk": 10193, + "missing": 11, + "missing_samples": [ + { + "id": 3075332074964421 + }, + { + "id": 3075332010886789 + }, + { + "id": 3075331958277765 + }, + { + "id": 3075330793899461 + }, + { + "id": 3075330213840517 + }, + { + "id": 3075330153760197 + }, + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 41, + "records_with_pk": 41, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12019, + "records_with_pk": 12019, + "missing": 15, + "missing_samples": [ + { + "id": 3075332072293829 + }, + { + "id": 3075332008330885 + }, + { + "id": 3075331955967621 + }, + { + "id": 3075330791523781 + }, + { + "id": 3075330211300997 + }, + { + "id": 3075330151024069 + }, + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17369, + "records_with_pk": 17369, + "missing": 2, + "missing_samples": [ + { + "id": 3075335458195013 + }, + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 5, + "records_with_pk": 5, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8314, + "records_with_pk": 8314, + "missing": 7, + "missing_samples": [ + { + "id": 3075332075652549 + }, + { + "id": 3075332011574917 + }, + { + "id": 3075331959015045 + }, + { + "id": 3075330794440133 + }, + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "d2f2a097718965b87f5131d9afe54be6a590806c277a04997cb8f49cd8a2c701" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "95c2d7312dd170717b54fe57c01b11f89767c1e621e6dceceda7af9b3bc06c33" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "0242e5d2630dad59cbae9244726d11f193f573ede0b4ebdeddcfa34a803851d3" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 332, + "records_with_pk": 332, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "47e2bc55acc0f750dd258979d9da4611558c972d85f7104dbc8ed00e7e354745" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "b7ccfeb2596775d7d5df412279e738df719792074ae854d8eec75fbed9a95a19" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "d0395a340cb626ba57ac4ff57cfc5acf8a12bd6626d9f256ccea453bd2e8d759" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "0ee61f12c483f390ea00c57ba414f9fc01f2e960f8f683f1705bc002354bc899" + }, + { + "id": 2793012902121605, + "content_hash": "1598f548e57874116e40e53e026a649316d03ba95d3970180bedf1f57cab753b" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "80cb3550fe1d1a7f99a4a4438eae45dbbedc67818b425b7ae9ec4811c26bd9dc" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "e65abc7f818f0646d54b654464795b7d5b4059b168121545a5f347b13a906397" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "0ac82ce3c80764f020ca7bc2137a39bd78c79ed7f64a77d5f254a481f2e3af45" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "0f9a0cc093051f55c8e9aeabda93df76e06e51b0ed4f5139225ec8539ccaad6c" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 208, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 208, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 42, + "total_mismatch": 98, + "total_errors": 0, + "generated_at": "2026-01-31T22:16:59.588073+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "e5e15050ade8138c71b21ea8909e48a3", + "dwd_hash": "25b221661fcdafdcda2756fb6cb5c996" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 2901526704180613, + "ods_hash": "aca5a9e67beb1017f97adfe6f73be1ad", + "dwd_hash": "041dbfe0fa2d29d37a7b751fff0a5046" + }, + { + "member_id": 2919518015802181, + "ods_hash": "44c68cbb7007c99a597cf49e70271721", + "dwd_hash": "b6a052437c60029e0b289614b598bc2d" + }, + { + "member_id": 2924186553484869, + "ods_hash": "1e846e736d8d0f8665c2e8b701bc9261", + "dwd_hash": "1c54307e62ff44ed6efb4a3435543228" + }, + { + "member_id": 2929237914683013, + "ods_hash": "2599895d90466e12516eccda0a2d9250", + "dwd_hash": "bedd7f571988568a23605da7ebca5540" + }, + { + "member_id": 2929254989743493, + "ods_hash": "acdf38cf5c017f14fb07562b4cda760f", + "dwd_hash": "c6d3bafe4ebb05976976bd027eda5218" + }, + { + "member_id": 2933647801731013, + "ods_hash": "8400169709f39e03d95311c5abab652b", + "dwd_hash": "ee81f6402de8aa7c9dd836821fdad525" + }, + { + "member_id": 2935271033079557, + "ods_hash": "5fc1b355aababc83c31ed123d94f70c5", + "dwd_hash": "a9b1582473d510e716c0a63db37115e3" + }, + { + "member_id": 2938228399917253, + "ods_hash": "99a46f4e7ba9f5bfe3ab88a0040e9e29", + "dwd_hash": "8ead3b3f9a6402ef9838ab268605a02b" + }, + { + "member_id": 2938229628340421, + "ods_hash": "ea2e215a39521ce8ea0b4bb3fb048bac", + "dwd_hash": "e17db344660168f187e1f52e7efcc746" + }, + { + "member_id": 2939339802315269, + "ods_hash": "564d3f1e999fe4939a414ff7fe07ef71", + "dwd_hash": "ab1b39885fadbd0fb3bfa61eabbd1d4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 21, + "mismatch_samples": [ + { + "member_card_id": 2901526704655749, + "ods_hash": "6e13e5e44bf4f76796e7bf54137a783d", + "dwd_hash": "75ebeb0e553dfa2b5c778086db77d679" + }, + { + "member_card_id": 2911305241249157, + "ods_hash": "40837a84eba1e9366f960f4769d28f48", + "dwd_hash": "2b9be7cd27f0ac9959f684727c7f419f" + }, + { + "member_card_id": 2913393474192965, + "ods_hash": "caa950d833c9b7dafc7f57b828cde836", + "dwd_hash": "8ca788765d427e2e5448e12285c39166" + }, + { + "member_card_id": 2915510109228037, + "ods_hash": "66b63bdcc2d270771eeb1ce4efddedfc", + "dwd_hash": "0cc6e2026f86ffe818307f16ab17c268" + }, + { + "member_card_id": 2919518016211781, + "ods_hash": "4339cef63e8877e507e3a7caa2d81463", + "dwd_hash": "6813ab54cfc2000a8e6ed5eca591a096" + }, + { + "member_card_id": 2919519875682053, + "ods_hash": "94a07b5b402dbe32a7c6a4beb5199a90", + "dwd_hash": "d6758dd91322bdd286037f85ba61ad61" + }, + { + "member_card_id": 2922551501882949, + "ods_hash": "dd082469db1e2e5f849dc4948ac9f6b3", + "dwd_hash": "8c188a31d76a686dec76ed68bd8b3916" + }, + { + "member_card_id": 2924186554041925, + "ods_hash": "8155303f91a9c5c6f88e50c4e3cc3848", + "dwd_hash": "727487784a5e5f19a5881f6032f2b4b4" + }, + { + "member_card_id": 2929237915010693, + "ods_hash": "ad1250205648854d9e478952aef9767a", + "dwd_hash": "9d90c4a852196da6c9448ef36761d49d" + }, + { + "member_card_id": 2929239052289797, + "ods_hash": "a8db59fa094c6fc51c37c1d1b218dd78", + "dwd_hash": "3d35a14429fd052738fe09af3a266e8d" + }, + { + "member_card_id": 2929239275980421, + "ods_hash": "6d30967821fdc18dbd1211ae0fb58816", + "dwd_hash": "4f8f87db60d98fad827633674b5c5343" + }, + { + "member_card_id": 2929254990054789, + "ods_hash": "31334a374b571b8683ff91e68abef016", + "dwd_hash": "d83be957e098a228be59432137330f78" + }, + { + "member_card_id": 2929255974028997, + "ods_hash": "d07d11162eba5ca468faa17d86de78f2", + "dwd_hash": "c5729a20b12388daed1bda05a54542d2" + }, + { + "member_card_id": 2933647802009541, + "ods_hash": "f4ca8a4af73f8d5c2266b1097805c128", + "dwd_hash": "a670cc8a442005026a2641af3809d352" + }, + { + "member_card_id": 2935271033390853, + "ods_hash": "4652c80ffc4c3975796219889e7d1161", + "dwd_hash": "ef200b08ec0df31021ff4801b4fb4bbb" + }, + { + "member_card_id": 2935271252707077, + "ods_hash": "5b254655d7dd4fb5e503c1f2a707f4d2", + "dwd_hash": "872ef459eca10507aa08469aace0d160" + }, + { + "member_card_id": 2936491814488453, + "ods_hash": "07d571f682e7c0b53b3e855154e862a4", + "dwd_hash": "f752775a45a2af5c647461ffcc35060c" + }, + { + "member_card_id": 2938228400277701, + "ods_hash": "35d24bb8a540ad7e753750fd55ba37e7", + "dwd_hash": "f4c58572b950cd2e16bc2b7f6ffecd58" + }, + { + "member_card_id": 2938229629700293, + "ods_hash": "2219ee13d7d8cb322097b48dc8af903e", + "dwd_hash": "87826a895180e3af5f49c554c6b807ae" + }, + { + "member_card_id": 2939339802626565, + "ods_hash": "f17d89ad33f04f3a1a0c790c40dbdb89", + "dwd_hash": "c9643925b00384806f53139321a174ac" + }, + { + "member_card_id": 2939340099193989, + "ods_hash": "ae5ab419342c1759f3ee164f7c99ef02", + "dwd_hash": "0337bb3e51f363ab5602e033c6b5c8ad" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "tenant_goods_id": 2906982633310085, + "ods_hash": "425bf96a2b4d4797f0751e712cb48304", + "dwd_hash": "083f84f2d028cccb9e3e4135f1e867c7" + }, + { + "tenant_goods_id": 2915207513196869, + "ods_hash": "497700730975e280e85e63811b75c774", + "dwd_hash": "f3a662d65b095901ffaf76864b382095" + }, + { + "tenant_goods_id": 2919621323754309, + "ods_hash": "f4248bdf2754227b77e657d300704192", + "dwd_hash": "ed0ba64e5d96cdd5b5252f24a4780fe7" + }, + { + "tenant_goods_id": 2920522145123141, + "ods_hash": "1173332f58bdd2102160f8bd0d8a6376", + "dwd_hash": "d7281161800917e06a09ed3f259c1fe9" + }, + { + "tenant_goods_id": 2940641058311237, + "ods_hash": "dd738933f19f3a95da79fc6d7b12ad66", + "dwd_hash": "dc898f579d9a8f923ddf821603e6d50a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 114826.12, + "diff": 1567.25 + } + ], + "mismatch": 2824, + "mismatch_samples": [ + { + "table_fee_log_id": 2901329636068741, + "ods_hash": "24653d9a5caed209228fb291d55f3ab7", + "dwd_hash": "bfc8a4e160f3a99b3fd97bb2d932bb38" + }, + { + "table_fee_log_id": 2901330304994501, + "ods_hash": "b64fc739c121a07e2366052bb00337e3", + "dwd_hash": "0b2b755d9866065e496d1be1ffc6b8ae" + }, + { + "table_fee_log_id": 2901333642955717, + "ods_hash": "9070add4b1698845e3112d8c27cc0f85", + "dwd_hash": "0bef163529fd7cf2b6d6770afec2b385" + }, + { + "table_fee_log_id": 2901341571255301, + "ods_hash": "5fda69a2cfa454c81c113768e7b89f9b", + "dwd_hash": "ad7cd6ed9ba4258165edd9077209d59f" + }, + { + "table_fee_log_id": 2901348568435909, + "ods_hash": "8eac5231d66df54ef252cbdc1c728e27", + "dwd_hash": "f9740389d7bb9e02da87be18fc0889cf" + }, + { + "table_fee_log_id": 2901348568452293, + "ods_hash": "6b141d148599bf3277302c18773e95c7", + "dwd_hash": "dde30b3ee6e83f6f9651fb83edf21a8b" + }, + { + "table_fee_log_id": 2901348568468677, + "ods_hash": "2a19370ff5a52400e26091fca63b9c2e", + "dwd_hash": "3a6240979eaff7844ad805d9ff5c6121" + }, + { + "table_fee_log_id": 2901349057154245, + "ods_hash": "2d506008683ae74f08caa87e363b4acc", + "dwd_hash": "6c2ddf5b76991a186473a6bc308e8bf0" + }, + { + "table_fee_log_id": 2901349057170629, + "ods_hash": "7a98356278e36e696b1c0e1af79a7605", + "dwd_hash": "594dfd25542b78db349d0b988cbb2538" + }, + { + "table_fee_log_id": 2901349432953797, + "ods_hash": "4cd032731db8aa0302eeae681350c86c", + "dwd_hash": "91721b5afa030e1b880e36d93a4cb11a" + }, + { + "table_fee_log_id": 2901349811358725, + "ods_hash": "b9c2bb84dec142bb3b532e5bd56f6c44", + "dwd_hash": "315ee6854a542ea614eac83702b36e32" + }, + { + "table_fee_log_id": 2901350930369925, + "ods_hash": "e8b9eca56934b02939f5d7f909b1ffde", + "dwd_hash": "9ae4a5384c6b1a8f067600f457bf71f5" + }, + { + "table_fee_log_id": 2901350930386309, + "ods_hash": "b0b496302ca39246bcab961646267773", + "dwd_hash": "d0803fe50ff42f50947c821342410c0b" + }, + { + "table_fee_log_id": 2901350930402693, + "ods_hash": "9720ec9add0576fc4f399a46e1b46953", + "dwd_hash": "2198f726a3907588edfcde0ebc06d78a" + }, + { + "table_fee_log_id": 2901351261457349, + "ods_hash": "b17c67bde4a692fb7fe85480aff6bfac", + "dwd_hash": "375c243d97f21d3145f046f729a1fcff" + }, + { + "table_fee_log_id": 2901351578340549, + "ods_hash": "193a3664869705b3fdac288288ff6f4b", + "dwd_hash": "29b58690cb938bb0aa88e4991a9f7a3c" + }, + { + "table_fee_log_id": 2901352975944645, + "ods_hash": "955440ddf4b50db850e751835b5b5ab7", + "dwd_hash": "c2e93e7a2c8d8bc68a93e450048823ae" + }, + { + "table_fee_log_id": 2901354532801477, + "ods_hash": "da284ef0baedecac8c14d232100856df", + "dwd_hash": "2943610a6cefa5719b73b388b898fc2b" + }, + { + "table_fee_log_id": 2901358843087813, + "ods_hash": "e3b1e224b3ee8663e4421d320c7c8cf1", + "dwd_hash": "d1dbf77fd5d2805572002030901dca92" + }, + { + "table_fee_log_id": 2901364622691269, + "ods_hash": "9c32d00f35ac1b7e53ec4559d752a162", + "dwd_hash": "3b49ed8fd230bf47e5d2f9fad64c4aa2" + }, + { + "table_fee_log_id": 2901367869672453, + "ods_hash": "90859b9f0e9f188516acd106f6921c52", + "dwd_hash": "6aa88c324aeed1b23abb64b61b258c42" + }, + { + "table_fee_log_id": 2901368987651077, + "ods_hash": "32ba5eef7d37e42f09b6e5e4cec83c94", + "dwd_hash": "8b585a446fb9b33b540babd17857d953" + }, + { + "table_fee_log_id": 2901376493538693, + "ods_hash": "d5b34dcff3764f494a6f46bafdcf9a3d", + "dwd_hash": "82ee1cd8d197105bac30f38142a211c0" + }, + { + "table_fee_log_id": 2901385079393477, + "ods_hash": "e34e452aca8a21b6d953a78d5a5855dc", + "dwd_hash": "1175fd5df885e76af7788e23f9e3c676" + }, + { + "table_fee_log_id": 2901395066031109, + "ods_hash": "63345efabefc312a6940a4227c024ed5", + "dwd_hash": "5ca588040fdd4e592885a48e811cd875" + }, + { + "table_fee_log_id": 2901423311916037, + "ods_hash": "bd92b9bb4814b2500d7ee4188fd19143", + "dwd_hash": "0b77023a4ba0419404e7aeab39087e75" + }, + { + "table_fee_log_id": 2901423311932421, + "ods_hash": "a0d33159b10f3c518bfc367d5284cb8c", + "dwd_hash": "90685a2d8f3cebbac7c50d7897898c28" + }, + { + "table_fee_log_id": 2901427659050373, + "ods_hash": "1a93d4e3fcfbcd00bf10f3058c7d78b5", + "dwd_hash": "306676ae22c903f3932c8b80742890bf" + }, + { + "table_fee_log_id": 2901440631753669, + "ods_hash": "25c74521f521b129453db50693c5f170", + "dwd_hash": "14bdad86164784f24bcc38f1c3a08204" + }, + { + "table_fee_log_id": 2901471274601413, + "ods_hash": "25d04d40028ba3efa56f9cb932c04c44", + "dwd_hash": "be512b42b83b14ec4aebce2576ad8046" + }, + { + "table_fee_log_id": 2901509433068933, + "ods_hash": "06e05e3c24472a9485e3a8b5d7e30b91", + "dwd_hash": "a151c0a37229fff5977b88c2809e67c1" + }, + { + "table_fee_log_id": 2901592644783301, + "ods_hash": "82bdf8a23ebf31a5d45347d8f5f8d9b5", + "dwd_hash": "bf02a70c0a9462ab7e0a6fb717724cfe" + }, + { + "table_fee_log_id": 2901680241315013, + "ods_hash": "144bd1311f2aeb1cb62ad6086f153964", + "dwd_hash": "a44e956e23eb9df0ec8357acaafe39bb" + }, + { + "table_fee_log_id": 2902138924682437, + "ods_hash": "d8ab5e0de98e96025bf2a51fa1ad2a35", + "dwd_hash": "31d381bc27a4fd67c8ac493751ea4cb0" + }, + { + "table_fee_log_id": 2902155496803269, + "ods_hash": "1e2321f1770daeaad0afec4b8d5fa931", + "dwd_hash": "7e65dac1837057e82b304f7da9b2c3d9" + }, + { + "table_fee_log_id": 2902214881807301, + "ods_hash": "34884300c2ba8867c8603ad672f481c0", + "dwd_hash": "68499db227795a3f754afbab010b1ffa" + }, + { + "table_fee_log_id": 2902215452560773, + "ods_hash": "3ecc8c623b01142f6d9e7655b20a6848", + "dwd_hash": "bbf8fb01c128f7a8d3ead9bfeb55495f" + }, + { + "table_fee_log_id": 2902216724007877, + "ods_hash": "87abb58b2ed2ea9b65fcf000a4fdd19b", + "dwd_hash": "84845ce035bd7d82b0b2b29288ad77e4" + }, + { + "table_fee_log_id": 2902251205512133, + "ods_hash": "4591ad3fee547044c1c869a406f08bae", + "dwd_hash": "21458d5ea08fdf9694e860976c2a5561" + }, + { + "table_fee_log_id": 2902263457451205, + "ods_hash": "e72df00b9c3eb677cc7bb08da005c892", + "dwd_hash": "00a21de9e2ee3f0d852132d32a744ff2" + }, + { + "table_fee_log_id": 2902274872757637, + "ods_hash": "35cdc77c33de9fb1c5ec8705b38f09dc", + "dwd_hash": "9a238200896fdb47af3d2b90316aa8c2" + }, + { + "table_fee_log_id": 2902278578670533, + "ods_hash": "4f6edfbf9bd7343dca8fb85879feb2b1", + "dwd_hash": "161d2df7cfde980291688f49afe82c29" + }, + { + "table_fee_log_id": 2902280718110085, + "ods_hash": "cdb7f61a22bb0069c766354ef2f0702a", + "dwd_hash": "7fce706b8dfb08d51ae27b02433acfd3" + }, + { + "table_fee_log_id": 2902280786873285, + "ods_hash": "e0f44f6adea8bb2714b940d8734d52a9", + "dwd_hash": "8a3ab8302736c4844b26674c8931508e" + }, + { + "table_fee_log_id": 2902280856702149, + "ods_hash": "77266121377a7b29d4618fa18669e3cb", + "dwd_hash": "76adcbd2c38feb5bf83f940d8bfeca07" + }, + { + "table_fee_log_id": 2902285699665285, + "ods_hash": "15bd1281c3c3adcd928936cf2ea42565", + "dwd_hash": "1ac0875f3585df6f4b7bd94272b5e80f" + }, + { + "table_fee_log_id": 2902298297027525, + "ods_hash": "f1a6a35c8164b15a98386cb1371155e9", + "dwd_hash": "3e8d0a214d54f1d2f0278f85d11a1e55" + }, + { + "table_fee_log_id": 2902301531655365, + "ods_hash": "a39d36a189c2c38a8ea1d7c35e9bb01b", + "dwd_hash": "05c9cd25ee53796e8aa6ee21991932c3" + }, + { + "table_fee_log_id": 2902306129120645, + "ods_hash": "0ad2977ab2c771b70c8de4fcbf09dbaa", + "dwd_hash": "c07e6202c5f1532b0a73368cd26df7b6" + }, + { + "table_fee_log_id": 2902315882384581, + "ods_hash": "5dfcefe1cf5d4d4aa6484d8f7d761a63", + "dwd_hash": "afd24877b5bbeb93595250244a8c875f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ], + "mismatch": 3475, + "mismatch_samples": [ + { + "store_goods_sale_id": 2901329637117317, + "ods_hash": "dadcc183f14e4a03587b8758d8c4f81d", + "dwd_hash": "3a9d42510b39273d867b3391028c3a17" + }, + { + "store_goods_sale_id": 2901329637133701, + "ods_hash": "fc349beb21008caf7766d582b675e9e1", + "dwd_hash": "442d28a2a1c405dcee913a87fb889090" + }, + { + "store_goods_sale_id": 2901329637133702, + "ods_hash": "d168b3d4a618363fc249a0d0f9990086", + "dwd_hash": "becaa131e4f72e374f815d7cb5c33d81" + }, + { + "store_goods_sale_id": 2901330305371333, + "ods_hash": "dd935e5cb8bb22fcd64ef5cca63ccdc7", + "dwd_hash": "14f0ecace53138c84dc89fbad6051fc4" + }, + { + "store_goods_sale_id": 2901330305371334, + "ods_hash": "b6379cbe5723d9fb805813ab7225412f", + "dwd_hash": "b46efb4aadd2f9c30d1b9163e98bab91" + }, + { + "store_goods_sale_id": 2901330305387717, + "ods_hash": "3a22df1d804db1ca134513fe57b9b1de", + "dwd_hash": "cd8475589625c24f44a7549d5d2a3a00" + }, + { + "store_goods_sale_id": 2901330305387718, + "ods_hash": "b723eac7dbffbdfbdc00c7de15e2efe9", + "dwd_hash": "bceb0d825ba0289203f3b919f22ef93b" + }, + { + "store_goods_sale_id": 2901333643365317, + "ods_hash": "18bc0e22defdc64ab530c4b1cdf76f7c", + "dwd_hash": "ea14526a25169c7de90776b26aa5fca3" + }, + { + "store_goods_sale_id": 2901341571730437, + "ods_hash": "ccc9104cc24782430e80f093dd3bc2d4", + "dwd_hash": "44ea8e12fc819c7cdeabcc9a94baaf78" + }, + { + "store_goods_sale_id": 2901350931484037, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931500421, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931500422, + "ods_hash": "97201488b5b027c0e7475ff043afd827", + "dwd_hash": "12499fb2b6e2c9fb1b8d91da33e59433" + }, + { + "store_goods_sale_id": 2901350931516805, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931533189, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931533190, + "ods_hash": "672f772a342293773bd2b351b9acf10a", + "dwd_hash": "dbfcbb2e8bdec6e189e1f75bacfbf824" + }, + { + "store_goods_sale_id": 2901350931549573, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931549574, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931565957, + "ods_hash": "0025646e169f5c52e2506d651e0fc8b0", + "dwd_hash": "0cd60c93f6843f7fc46253b2875a7c3d" + }, + { + "store_goods_sale_id": 2901350931565958, + "ods_hash": "87f88ddedea664407e764c8b42b6a9be", + "dwd_hash": "6305a14cf5f888276e4bcb357b53d75a" + }, + { + "store_goods_sale_id": 2901350931582341, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931582342, + "ods_hash": "2020a69877d6ec6ecb25261fa4ecab35", + "dwd_hash": "76de1d889ea882aebcaef69e480a86d7" + }, + { + "store_goods_sale_id": 2901350931598725, + "ods_hash": "098656a191a408d2b740389b2cc3fcb0", + "dwd_hash": "5125023943b8f688ca9480019f70516c" + }, + { + "store_goods_sale_id": 2901350931598726, + "ods_hash": "d8146cb5ac5b41626c7e89b11054dded", + "dwd_hash": "610363f67218029dfc7d16616d839f21" + }, + { + "store_goods_sale_id": 2901350931615109, + "ods_hash": "5549dfb968b584f93c2aff42961d502c", + "dwd_hash": "5f70975058d4ece661e7a6f26c3a5b90" + }, + { + "store_goods_sale_id": 2901350931631493, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931631494, + "ods_hash": "8c8c7ed76e68f2469e581e322f2ae3a8", + "dwd_hash": "bb10f3ec3e8b9eb126e406af17cb0bc5" + }, + { + "store_goods_sale_id": 2901350931647877, + "ods_hash": "45a8868360fbc41e191f0204073cb85c", + "dwd_hash": "3d35b0667de97acadc37285c6c64c636" + }, + { + "store_goods_sale_id": 2901350931647878, + "ods_hash": "fdfe9966e645a9364b69f6a5f32abc6e", + "dwd_hash": "cb4dd417ee11f04a04c24c92fc86f118" + }, + { + "store_goods_sale_id": 2901350931664261, + "ods_hash": "c4a4d26f46af2c68878d559e4f865115", + "dwd_hash": "5de51c5ffe91a233fe03c7cd56ada049" + }, + { + "store_goods_sale_id": 2901350931664262, + "ods_hash": "fc7e626e8787f1f2bbb7936cf96af6e7", + "dwd_hash": "4fcf2ef4f5744ccebf17958a1aae0dde" + }, + { + "store_goods_sale_id": 2901350931680645, + "ods_hash": "2c3a8ef739419f3cd4722e6b679299b5", + "dwd_hash": "900a846ecef7744a0b75d8e0cc74e901" + }, + { + "store_goods_sale_id": 2901350931680646, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931697029, + "ods_hash": "52b262a5a00ae302b48c61474590a765", + "dwd_hash": "95100136165402ea419d3228d50e4dcd" + }, + { + "store_goods_sale_id": 2901350931697030, + "ods_hash": "a101679723f28ee11f9ce75008cd6cd5", + "dwd_hash": "5de8752efb0234052684abf3a5078943" + }, + { + "store_goods_sale_id": 2901350931713413, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931713414, + "ods_hash": "5a49b3441aa9bd71333c2f4531afcd59", + "dwd_hash": "48826061dda031f40ba131e18ec8ffc8" + }, + { + "store_goods_sale_id": 2901350931729797, + "ods_hash": "875e3f8537a47009b2673da40fac8600", + "dwd_hash": "693f8289d9affb7fcf910bd58ef1ce3f" + }, + { + "store_goods_sale_id": 2901350931729798, + "ods_hash": "c95e59bdf4cf690b27cf5e2ad1a5eac5", + "dwd_hash": "817fdcec3fd572602e820223b931b905" + }, + { + "store_goods_sale_id": 2901350931746181, + "ods_hash": "bd9b100ab620aafdd0c64026b76e6e6c", + "dwd_hash": "dec28b24b539191e9e578df8318d536f" + }, + { + "store_goods_sale_id": 2901351579569349, + "ods_hash": "2a8fb9ac54be4f3413f54e2277fe534f", + "dwd_hash": "c6fe620589469cfdae2f35e3f7a5788c" + }, + { + "store_goods_sale_id": 2901351579569350, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579585733, + "ods_hash": "8c9d17115d4a690f86adcd0db77823f3", + "dwd_hash": "bb18d302fc730b97a2976299a09bd1f3" + }, + { + "store_goods_sale_id": 2901351579585734, + "ods_hash": "a0a093fe0a8d7dd79985eb0b737adcca", + "dwd_hash": "78b051e428a6ac90d188d8e605b738ea" + }, + { + "store_goods_sale_id": 2901351579602117, + "ods_hash": "2fb85fde9f7fb8ea939aedfafab9ddb5", + "dwd_hash": "12c1dd0e1abee301aece3ff2d72f29e3" + }, + { + "store_goods_sale_id": 2901351579602118, + "ods_hash": "605d2b229cbf06dc7b8d480509061046", + "dwd_hash": "98553b9751de5ffbafac780d9e7ba796" + }, + { + "store_goods_sale_id": 2901351579618501, + "ods_hash": "13266c269eec2c3cb1810318ee35812d", + "dwd_hash": "a4745ab4b55e1b672adccd885fda9bb1" + }, + { + "store_goods_sale_id": 2901351579634885, + "ods_hash": "ef905b0a5036c5160c2ab510fcfa0479", + "dwd_hash": "2c67edbf77a26698f2d7c3933b69d003" + }, + { + "store_goods_sale_id": 2901351579634886, + "ods_hash": "e8011443016fdf8a52b448b4ce978772", + "dwd_hash": "c779e0d6ed7dce9301d68160af2ade5c" + }, + { + "store_goods_sale_id": 2901351579634887, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579651269, + "ods_hash": "0ecf3c79f92c976d769725ad0814e08e", + "dwd_hash": "d085acb3f3e648006bc6a3d6d7251b18" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ], + "mismatch": 573, + "mismatch_samples": [ + { + "assistant_service_id": 2901329636363653, + "ods_hash": "3a76612f38d720adfc067fdeacb20747", + "dwd_hash": "1ea4886f32d53860a0aa029f53498e2f" + }, + { + "assistant_service_id": 2901329636674949, + "ods_hash": "52ae46cd58b8f74300451900f9ad7a43", + "dwd_hash": "7fdd43db264ad50edeab4a86766e87c4" + }, + { + "assistant_service_id": 2901348568796357, + "ods_hash": "ce745258d3cd14b5336c384298677441", + "dwd_hash": "23fe621a5c688482c5efca3dbc941697" + }, + { + "assistant_service_id": 2901348569091269, + "ods_hash": "93e1e729b788dfe20f173071726fa5eb", + "dwd_hash": "f9df81e6c194aef8c8a5096e33d83ae7" + }, + { + "assistant_service_id": 2901349057465541, + "ods_hash": "30ed3bb8e0de8a6e78400f204ba86988", + "dwd_hash": "c6ecf62d9e3af988da167c2548d22ce0" + }, + { + "assistant_service_id": 2901349433248709, + "ods_hash": "494d34d64e12bbfe2295273fdec15884", + "dwd_hash": "69f68f5225b9c46b1ac8c7fe0bce9d66" + }, + { + "assistant_service_id": 2901349811719173, + "ods_hash": "f8e6c43d56cabf6cc03e7dd82d17debe", + "dwd_hash": "b1389441c3539be7ce7fa4a2ad2d1bec" + }, + { + "assistant_service_id": 2901350930713989, + "ods_hash": "8f0beaf77b30ba65586a5c4a89e999d5", + "dwd_hash": "ce82753e60462549c85f9926d439b9d6" + }, + { + "assistant_service_id": 2901350931008901, + "ods_hash": "d086eede481a39042408b8ec7edfd00e", + "dwd_hash": "3c3e2f824d9c7d3d24426fc12cd3fc6c" + }, + { + "assistant_service_id": 2901351261768645, + "ods_hash": "16624f768093c4d90150ef0b062efb65", + "dwd_hash": "22ab2043624f9c53850bcd89a29d7faa" + }, + { + "assistant_service_id": 2901352976272325, + "ods_hash": "e20a902adb8d293129969a1c0947e91a", + "dwd_hash": "c4205f5da84adabaab307c4d9d4a2018" + }, + { + "assistant_service_id": 2901423312276485, + "ods_hash": "676da8a281b14c4ef4a5bfae475505bd", + "dwd_hash": "2f16d891e4bb6a771379a51c11e9375f" + }, + { + "assistant_service_id": 2901423312587781, + "ods_hash": "37fefaca070537ff6b72405c2f058db8", + "dwd_hash": "29d1dc8130bdf657bc873114c18f66c1" + }, + { + "assistant_service_id": 2901471275027397, + "ods_hash": "27f28c0334a115ea4f226e2331f3c366", + "dwd_hash": "35f63ed5d99292f290e11c010312ceb1" + }, + { + "assistant_service_id": 2902624284445893, + "ods_hash": "8e7c047fa05f13298f8bfccd7e304265", + "dwd_hash": "4552fe793bcf81b441527d55466e9435" + }, + { + "assistant_service_id": 2902713764203909, + "ods_hash": "8f54b5b50c2c3b0423971e335635bd85", + "dwd_hash": "0b5c76fa12008d23711e858f8f84b6e4" + }, + { + "assistant_service_id": 2902715522616517, + "ods_hash": "215ee92ee24c8d054a68dbbba11a56e3", + "dwd_hash": "691140add0767cb751d3a14eaa0c7110" + }, + { + "assistant_service_id": 2902715522927813, + "ods_hash": "e2bf687f2a59836c3a0362a2d4c1b9b9", + "dwd_hash": "a4f2ab18c89439e61bcdec616678094a" + }, + { + "assistant_service_id": 2902744042458053, + "ods_hash": "97501baed1ed0f78e2d83c1f073e8975", + "dwd_hash": "4399ea42e4bccf3e1827a6b3271d780d" + }, + { + "assistant_service_id": 2902750865149125, + "ods_hash": "c4cb6cbf2a47a119dd02d294c9ebd32f", + "dwd_hash": "3eff3059157c6fdb5dd6b68144506ca9" + }, + { + "assistant_service_id": 2902782670130373, + "ods_hash": "005be52c7b2f1e8283b29d4dfe4b35c7", + "dwd_hash": "998b0af30e22994b4b8d40af7f091718" + }, + { + "assistant_service_id": 2902804684213189, + "ods_hash": "5abfebdac734b1c04c12c78b911b2054", + "dwd_hash": "0c7ead1f5c017e2c7ab4e6b7879f3dd4" + }, + { + "assistant_service_id": 2902804684508101, + "ods_hash": "9950e52ed6e706ecc8b5d4b20bbeb02b", + "dwd_hash": "bbe56bba5815c2f854d7b135d47d8eaa" + }, + { + "assistant_service_id": 2902848282840453, + "ods_hash": "f3e2be4c212ebb0cb0dd2aa4ed5f29fd", + "dwd_hash": "cb1bdc199c7df31eddb0a47196a32f64" + }, + { + "assistant_service_id": 2902848283102597, + "ods_hash": "31c541a256e2c9fb00c39f78ae1dbdab", + "dwd_hash": "5da716d6318949b6a502c40be4f84202" + }, + { + "assistant_service_id": 2902848283381125, + "ods_hash": "b96278026e99745f5acc8dd5580676d6", + "dwd_hash": "0e0d2c372805c5ca8eea9577357a81ef" + }, + { + "assistant_service_id": 2902848283643269, + "ods_hash": "761e97fd555ea400fff71a922cea988e", + "dwd_hash": "72ae117a806323dbe82fcc583c60053f" + }, + { + "assistant_service_id": 2902886167645381, + "ods_hash": "69863e01e5d1bb81249205a4649bfe93", + "dwd_hash": "c7bb76765ec12bd5c46d97e1bd334e0f" + }, + { + "assistant_service_id": 2902956589452229, + "ods_hash": "7549c50e510290bde013baf843c820f8", + "dwd_hash": "eeb6500c533f9c7c8de996dfa1eca1dc" + }, + { + "assistant_service_id": 2903002831424709, + "ods_hash": "accf5f05a9530aff574a361bb70390d5", + "dwd_hash": "5e3f894660ffc9029df7b2a7901a49ba" + }, + { + "assistant_service_id": 2903002831703237, + "ods_hash": "a62cf201d8f5b37206442c4c5a5e4e0a", + "dwd_hash": "dee24c4f51927ce59ff9e84a931737dd" + }, + { + "assistant_service_id": 2903002831981765, + "ods_hash": "ce7cced27db0cc6fc79ae9d14c016371", + "dwd_hash": "60b79bad7de23dacd7bfd1dcd3cb0b49" + }, + { + "assistant_service_id": 2903002832260293, + "ods_hash": "b3a47665e11ce32ba9819615f6eb756f", + "dwd_hash": "ade2812624bc13875b0be975dd9ae163" + }, + { + "assistant_service_id": 2903677044182213, + "ods_hash": "c831622d03073af5be50186dcb8ee13e", + "dwd_hash": "0496967269c13a827ab11a0477811fe2" + }, + { + "assistant_service_id": 2903677044509893, + "ods_hash": "da804dd35252b540a8e20b01c17c4997", + "dwd_hash": "8231f616abbafca65897c2a7deeec8db" + }, + { + "assistant_service_id": 2903677044870341, + "ods_hash": "62e4af4bb0ecb8717a445e94d1139991", + "dwd_hash": "873ded60fb93fefaa5011117caa5a9bf" + }, + { + "assistant_service_id": 2903740383038469, + "ods_hash": "8588373539537ccf49691b50b19cbebd", + "dwd_hash": "e933e99e70591a1ad96e81f2906af207" + }, + { + "assistant_service_id": 2903740478279045, + "ods_hash": "ee81f00364ef9fe0a51ba3a431872451", + "dwd_hash": "24d6ba5863118498095a803f200d6f6e" + }, + { + "assistant_service_id": 2904045994593669, + "ods_hash": "ec8fe156a31af519ba1d6bf504ab6a2c", + "dwd_hash": "1d20fa499384935b9d7cb0393622237e" + }, + { + "assistant_service_id": 2904045994970501, + "ods_hash": "649956f53fca878e0717ea1ac4569b3e", + "dwd_hash": "65898b221b5a637c8086b1e6881f4ad7" + }, + { + "assistant_service_id": 2904049053339013, + "ods_hash": "de286f19e8eaeafcc54e79f6c5faad72", + "dwd_hash": "e455e81199f93ab776e1eb8ef95ea324" + }, + { + "assistant_service_id": 2904116728990917, + "ods_hash": "b393a76882e6c4c743f0c3838fb9782c", + "dwd_hash": "72de3caab1326d0b8d45a3cdb8ed90bb" + }, + { + "assistant_service_id": 2904205160041413, + "ods_hash": "3a0e8b776516a0166b6c6546a23c734f", + "dwd_hash": "f9ce1064376a5b0fac474012501a01df" + }, + { + "assistant_service_id": 2904236312677317, + "ods_hash": "c7fa2195f039c9eb11d21173049c1b11", + "dwd_hash": "9c42971a40bcc246897218fd32d29191" + }, + { + "assistant_service_id": 2904236312955845, + "ods_hash": "839949eb16b850848398d33c8383037f", + "dwd_hash": "5501f72d4c34a3e6102200fd29fc7e73" + }, + { + "assistant_service_id": 2904236313512901, + "ods_hash": "dcd61dcf9f0f6e1bec348fbcf4b74c99", + "dwd_hash": "8fa85210481b965aeb4df4537f072ff7" + }, + { + "assistant_service_id": 2904285454240773, + "ods_hash": "224bb6808f320bb715e5c692560e3b92", + "dwd_hash": "eff5c0b818c805b7b2e2877da5b4c102" + }, + { + "assistant_service_id": 2904285454519301, + "ods_hash": "85a29574ca4bfe44537488f1e6ce244f", + "dwd_hash": "3160deabcbcc8a3a65c9d074f752cb45" + }, + { + "assistant_service_id": 2905207501260421, + "ods_hash": "4adcc4d1baa25b4ba9ecb687c3dc8109", + "dwd_hash": "dcf09bda755f9ae897cf19f76bf97525" + }, + { + "assistant_service_id": 2905216769426821, + "ods_hash": "ebce395e2cf5567b306e759f6e0578dd", + "dwd_hash": "6af1c3e7062708f2a07557b374aa3b1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ], + "mismatch": 2490, + "mismatch_samples": [ + { + "redemption_id": 2901341571795973, + "ods_hash": "2e5107d3fc4c3ccb9a1511f9204c30fd", + "dwd_hash": "ee862366fbdd40a96aa8b91896243aed" + }, + { + "redemption_id": 2901352976747461, + "ods_hash": "b42bb657275b1102da91b879d5493f7b", + "dwd_hash": "2fdb2ae2b6f0ef472b1d61246eb15fc5" + }, + { + "redemption_id": 2901354533161925, + "ods_hash": "82f9d4e19161955bb49ae093f45a6269", + "dwd_hash": "0e30da4f668dba55dd8bb7178733fca9" + }, + { + "redemption_id": 2901358843481029, + "ods_hash": "e270ca28a74f01747b95c51fdfed6da9", + "dwd_hash": "a4e50aba086374c884b0027bacbb81e2" + }, + { + "redemption_id": 2901358843481030, + "ods_hash": "ddb72fb5f3ae80c94e5fd8e542ac4f00", + "dwd_hash": "858f9b63478fef25fde7c13d761ecd6a" + }, + { + "redemption_id": 2901364625198021, + "ods_hash": "59c4ba11565a4ead6a98d61d450c8711", + "dwd_hash": "1c24ec75ad5fa74f68ba084c1bf20696" + }, + { + "redemption_id": 2901367870131205, + "ods_hash": "18874d164ed1aeb39b8dfb7b59045114", + "dwd_hash": "b638b62b19633385aad2971de0f3f3e9" + }, + { + "redemption_id": 2901368988306437, + "ods_hash": "c0a77579b58454beb8da3b8e0a93157b", + "dwd_hash": "9564fd9f187bffe545c7c131b54f18c7" + }, + { + "redemption_id": 2901376493931909, + "ods_hash": "6ccffc5a155749e90f33c7a49082d02f", + "dwd_hash": "d712c20b807101fd5e12a7ca5238bd1d" + }, + { + "redemption_id": 2901376493931910, + "ods_hash": "45499809c4f9e387c1776222ff0c70b8", + "dwd_hash": "38dba49b701373f23c0bc950dca7e96f" + }, + { + "redemption_id": 2901385079753925, + "ods_hash": "8eec1431fd17d4760251d4c347a7ee3c", + "dwd_hash": "ea66fffbe42c7d53f69f864fc32a53ff" + }, + { + "redemption_id": 2901385079753926, + "ods_hash": "d1a845ebf5afb63edecdc6aedaa27ebd", + "dwd_hash": "f64f8e3a54f14b16e308004c83f9ee5d" + }, + { + "redemption_id": 2901395066424325, + "ods_hash": "6c230d7e6d1883aa305ee79f870535d4", + "dwd_hash": "cabc6c7a6a92cde6d508fd259760484a" + }, + { + "redemption_id": 2901423313177605, + "ods_hash": "6a9ffdd83df41a470d6b2fa494f48c85", + "dwd_hash": "8e531f44d49e5c42d0cc8fd4c012fc31" + }, + { + "redemption_id": 2901423313177606, + "ods_hash": "c4b82f5dd3ebf365ead94a7fc05e5617", + "dwd_hash": "e89d3a253b97399cb94a26459658762d" + }, + { + "redemption_id": 2901427659410821, + "ods_hash": "5810f71243bd1493ab2a156f6f21f2c0", + "dwd_hash": "b2653899425437457af2a0c144968457" + }, + { + "redemption_id": 2901427659410822, + "ods_hash": "6cb8bd61cf5f40af84d9d77f97752999", + "dwd_hash": "cc1e4e6842a0acdf7c5da2334d99d67f" + }, + { + "redemption_id": 2901440632982469, + "ods_hash": "0677a628a1d3008b426c7861411c4d70", + "dwd_hash": "239e25b298031f162bce2d66cfd28994" + }, + { + "redemption_id": 2902138925026501, + "ods_hash": "aab96b14e3464121b551457b3f3ef2a1", + "dwd_hash": "203a8ef757a52d5c4e6763b524d4d8d9" + }, + { + "redemption_id": 2902155497130949, + "ods_hash": "151eee6d22747cba6b63f1ce610dd503", + "dwd_hash": "698433cba33ad1d3e16977b0ba979f8d" + }, + { + "redemption_id": 2902214882200517, + "ods_hash": "17b867727cbf93d555ecc54b4970e8b2", + "dwd_hash": "68cb8b0e868f01e5f9b994344cf5268b" + }, + { + "redemption_id": 2902215452953989, + "ods_hash": "ad5ed4cf9725b2b97f4c8d68784989a5", + "dwd_hash": "5ad9317677a9c29d37739e74f82017f3" + }, + { + "redemption_id": 2902216724401093, + "ods_hash": "6f8e509f765cf770ec434e45f27aaf39", + "dwd_hash": "68058edee86f3f192e7702e119761701" + }, + { + "redemption_id": 2902263457828037, + "ods_hash": "385b98bb095a994afbac0566b979c984", + "dwd_hash": "06d1237b213abe04dacdebf6dae1b6c2" + }, + { + "redemption_id": 2902274873134469, + "ods_hash": "7205c58c052ce921b3da6f98e866d260", + "dwd_hash": "09c0644689dc4051eca79b8c6ba7a8c7" + }, + { + "redemption_id": 2902278579129285, + "ods_hash": "5a79771693eeb652b55a24d6f65a61c2", + "dwd_hash": "6b0d8b11b4f9b550036dc4ff5a671e94" + }, + { + "redemption_id": 2902280718503301, + "ods_hash": "e145b3e47f14ddacb0785653cbde0b55", + "dwd_hash": "dc93733863884ee79452d8eb66d5e837" + }, + { + "redemption_id": 2902280718503302, + "ods_hash": "ffee25f6bbb8807002e519b8644e866b", + "dwd_hash": "fe59b86ca8e8ec54cd520ada4779b60e" + }, + { + "redemption_id": 2902280787282886, + "ods_hash": "9e5d8730f883cdb41070867ab30e924e", + "dwd_hash": "8401f4919e4317f6e7a87693649aca1b" + }, + { + "redemption_id": 2902280857046213, + "ods_hash": "fe4c7a8bef643234018007815bb5db0f", + "dwd_hash": "e5495b3859c74f55d109cb6fbb8a36b5" + }, + { + "redemption_id": 2902298297404357, + "ods_hash": "694f771ad6977bea59368c0c917b7170", + "dwd_hash": "4a20a286e6e0cb89f9f5a3258c1c1fc9" + }, + { + "redemption_id": 2902301532048581, + "ods_hash": "a6948697a6e068f09920cc199f792070", + "dwd_hash": "cbd919ee0bf81cf3566b4811ca5f6dca" + }, + { + "redemption_id": 2902301532048582, + "ods_hash": "3866fc81f0c91e7595b1f42025b9715c", + "dwd_hash": "a904ca34c89147587365f0aa4fa44e79" + }, + { + "redemption_id": 2902306129563013, + "ods_hash": "02d79bdaec015ea1e21f95142f2a8e58", + "dwd_hash": "fb1b31011f2d8d4618d37b83705a9051" + }, + { + "redemption_id": 2902306129563014, + "ods_hash": "9ebe1441b947b97aa00ec0fac9b4c148", + "dwd_hash": "e0d0aba2f7a79e2ab98c80029a5425ae" + }, + { + "redemption_id": 2902315882761413, + "ods_hash": "c683a80896a146330eed78bbcb995899", + "dwd_hash": "d4303e9f56585da8878bb510e88a8717" + }, + { + "redemption_id": 2902323382045701, + "ods_hash": "7372871447fe93ea0ed12cedd53d28c7", + "dwd_hash": "0d2d6642f3eb809fbd4a51990ac19590" + }, + { + "redemption_id": 2902325857521029, + "ods_hash": "d1015265bd002a646670d65805f48ec2", + "dwd_hash": "8c891e8fd1f9acee0b271bb029b1cfb1" + }, + { + "redemption_id": 2902332836547525, + "ods_hash": "1fb0fc094d97f7cdce70ebed15e49d94", + "dwd_hash": "b507fce8dce9c33e139239c9db207d96" + }, + { + "redemption_id": 2902343277972869, + "ods_hash": "3cd9dc7d5940967d64f187929ee97fec", + "dwd_hash": "fbea010ce9db7d839475405cfe036975" + }, + { + "redemption_id": 2902343330778117, + "ods_hash": "d627feaf2238b8f7ef540b8e6f25163b", + "dwd_hash": "7d32b123577dfd4e1e13ca0619754400" + }, + { + "redemption_id": 2902356349554053, + "ods_hash": "64d0bf47ad98cf4393f744a432493cbd", + "dwd_hash": "ec1a0c469e2f0d42c0339255108d6075" + }, + { + "redemption_id": 2902356349554054, + "ods_hash": "3f574bbef83f8365e9e3806f5b525837", + "dwd_hash": "6b2c0ffb5d7c673ffe96e9dd96cc496c" + }, + { + "redemption_id": 2902357537459397, + "ods_hash": "23694cd7a92cbaa7b66f5187bd983667", + "dwd_hash": "829f62f9542ca6b3494222d24506c35b" + }, + { + "redemption_id": 2902357537459398, + "ods_hash": "20d08bde0822e4c1646fc574525a2b94", + "dwd_hash": "9f9f4d2c7ba895942cedc4328ae48047" + }, + { + "redemption_id": 2902358470282245, + "ods_hash": "6cf336e0436b2374cb856378dd2a4d4a", + "dwd_hash": "870137571cfd70fbccb8d5d086f16cd4" + }, + { + "redemption_id": 2902358470282246, + "ods_hash": "6833147ce540e590c3d47321b64c5f45", + "dwd_hash": "38e276dd4932aea99103d8eb99008f24" + }, + { + "redemption_id": 2902375367904261, + "ods_hash": "264bb4479593cc754416180e1ab35d59", + "dwd_hash": "990dd0af32329ccfb469aad8dc95360b" + }, + { + "redemption_id": 2902384447540165, + "ods_hash": "fa23525c975350c368f35774ebd48704", + "dwd_hash": "020d030eb2bd68cea8c0fd0f0f74b105" + }, + { + "redemption_id": 2902384447540166, + "ods_hash": "d7519ef77ad0f288eb300e53d3508903", + "dwd_hash": "f86e440be45bc6d4cd824032097f6c5e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ], + "mismatch": 2489, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2901367628860805, + "ods_hash": "f1c06655146f3b02219166be9be1ebd1", + "dwd_hash": "81bbb2be6f62c18f407fd545732fa152" + }, + { + "platform_coupon_redemption_id": 2902088137772037, + "ods_hash": "af0eda0aa077e1a419b065c8f1419185", + "dwd_hash": "c2012ccd9a7f49bf5e75623d87fcac58" + }, + { + "platform_coupon_redemption_id": 2902113205193733, + "ods_hash": "1b8c33998cd2d28dc5fecf954514a89c", + "dwd_hash": "3c79f32bc7cdbff65d94137b8d2f3716" + }, + { + "platform_coupon_redemption_id": 2902128667512197, + "ods_hash": "2359d424f227bfa93912a38c74c1bc96", + "dwd_hash": "996b182390c3c30edcae886654d3fece" + }, + { + "platform_coupon_redemption_id": 2902148701817797, + "ods_hash": "26c2f157681b6cd6403fa3e3ed4697da", + "dwd_hash": "51b8ba13a8f4cd6dfb76de469074827b" + }, + { + "platform_coupon_redemption_id": 2902155668999109, + "ods_hash": "2c1d8984fd23e98ea9e45323b5e75d60", + "dwd_hash": "4d9a9cb2a2561342b4dd7f2ee449d2e9" + }, + { + "platform_coupon_redemption_id": 2902156307909573, + "ods_hash": "6731d318c0dc6b7ea354e413d4fd3d78", + "dwd_hash": "02529e59c46da1be8f878237736f25e9" + }, + { + "platform_coupon_redemption_id": 2902157707152581, + "ods_hash": "c390db75714143e8faf4599cf2cde122", + "dwd_hash": "09f7a6305d7bfa5e4be423b772822e5f" + }, + { + "platform_coupon_redemption_id": 2902161494904005, + "ods_hash": "2920322e66dd181a2ca6a3f424254b9a", + "dwd_hash": "082be41dd3467b5f6d309d2e7de2f04a" + }, + { + "platform_coupon_redemption_id": 2902176789580997, + "ods_hash": "145dac0022c3f2eba6dd20271ad018ce", + "dwd_hash": "2520e0e59acd8efc8d5b3295bf148d25" + }, + { + "platform_coupon_redemption_id": 2902189166562501, + "ods_hash": "7fa855b9114e267f68533c39114d9d22", + "dwd_hash": "255d5c8f71476402804902d2604fbafa" + }, + { + "platform_coupon_redemption_id": 2902196975553733, + "ods_hash": "a6b45772ac37c4d7697f0f8b92ff74cb", + "dwd_hash": "a04c72d920531af347e4813ec630f125" + }, + { + "platform_coupon_redemption_id": 2902204132920517, + "ods_hash": "41871dd9b8fd3b6312f1e567d5b41e6c", + "dwd_hash": "822abdc97ce77265b4413d502a9a3440" + }, + { + "platform_coupon_redemption_id": 2902214514183557, + "ods_hash": "fd9b827ce83f719f2a599d1072985e4e", + "dwd_hash": "13199b8504854dbdd1f59dcf969675fc" + }, + { + "platform_coupon_redemption_id": 2902215716867269, + "ods_hash": "7055622bb91fc75aa86840ffac713488", + "dwd_hash": "82976e78aa88a4363ca04b3a21ea9dbb" + }, + { + "platform_coupon_redemption_id": 2902217978416069, + "ods_hash": "adafc1da595ddc52fa6cf310f6bc442a", + "dwd_hash": "3e6a01f8aeb85a5aa6e922392c4a6e92" + }, + { + "platform_coupon_redemption_id": 2902221416532933, + "ods_hash": "283645d6f173b2b89a3655c8b97e4f59", + "dwd_hash": "b8541fccf259f79dd9c22efcf66838e9" + }, + { + "platform_coupon_redemption_id": 2902221638651077, + "ods_hash": "1e560d1f843cc83dace2d5d374f3a7d2", + "dwd_hash": "dd400a820c8e1eefc3b90479b1c0287a" + }, + { + "platform_coupon_redemption_id": 2902226555997381, + "ods_hash": "ac0d845d635c1e163751ca4812ce1ad9", + "dwd_hash": "d5f30a8e7a7a03d1dc084b1f48cc0976" + }, + { + "platform_coupon_redemption_id": 2902237571337221, + "ods_hash": "4e686e6aebcc912d02fb7843db95c76b", + "dwd_hash": "20f4d8aa3c5aafbfb0e70376cf98561a" + }, + { + "platform_coupon_redemption_id": 2902238584622021, + "ods_hash": "706e1dca0e49478e6aebf4369468d836", + "dwd_hash": "a101780af2cf9f61ffe8b2f123ff1a12" + }, + { + "platform_coupon_redemption_id": 2902240655379845, + "ods_hash": "865f63fb8b79dfca70ceb5baea24fce6", + "dwd_hash": "572a4b871ed79ced43bc9c8571b8db44" + }, + { + "platform_coupon_redemption_id": 2902241126714757, + "ods_hash": "0a03ee7e93abe16ce300d5a051776147", + "dwd_hash": "e2f0c5bf2396108a45de3d87ec29027a" + }, + { + "platform_coupon_redemption_id": 2902243482963333, + "ods_hash": "13e8169cac55984a7d1ec5b8dca330cd", + "dwd_hash": "c05217d24bcc780a282ca534e97a4ad3" + }, + { + "platform_coupon_redemption_id": 2902246805474501, + "ods_hash": "aaebe1bc84cf564b1cb04178d824ca83", + "dwd_hash": "23e6f488fdbf37ade31aeac07a057222" + }, + { + "platform_coupon_redemption_id": 2902249617280197, + "ods_hash": "19939d7ad57192615fea95932656aff1", + "dwd_hash": "4ed785f37ed7e50292bd393fa96f61f6" + }, + { + "platform_coupon_redemption_id": 2902252697652229, + "ods_hash": "160628ece8fae6158f8f41f160fd803a", + "dwd_hash": "7eb7393c3640c35be8fbe7d87cbe80d7" + }, + { + "platform_coupon_redemption_id": 2902253075631493, + "ods_hash": "e24a145f8fb512bce5f44fff34a91ed5", + "dwd_hash": "26156ed47d6dc801e12a777fd81a71f1" + }, + { + "platform_coupon_redemption_id": 2902256480128197, + "ods_hash": "f330b7740cf8354e5377f85622cca27b", + "dwd_hash": "e564aa810a4fdf2288fd05c6df85e8c0" + }, + { + "platform_coupon_redemption_id": 2902262676524229, + "ods_hash": "571028025b21039174fd19d2c7e95f6b", + "dwd_hash": "f90f1ac1d12bd279b6a5f46f5b588552" + }, + { + "platform_coupon_redemption_id": 2902265221811589, + "ods_hash": "cb0961e516e3d5619181d7b8102c0d50", + "dwd_hash": "0947c89b3f05234394bd2709fbee5766" + }, + { + "platform_coupon_redemption_id": 2902270535535621, + "ods_hash": "35bc51ce1e6deb67bbc9a818c9f169c1", + "dwd_hash": "9559f933160c9125cb639e732a853436" + }, + { + "platform_coupon_redemption_id": 2902273000492421, + "ods_hash": "c27a475e7fee5e05d40cac4d547f269b", + "dwd_hash": "1951b3fcf5be5dddb0ecf4cb2401ddef" + }, + { + "platform_coupon_redemption_id": 2902273258998789, + "ods_hash": "ed9557c9f26c855eee763620956333c0", + "dwd_hash": "84228639ccdadd8a996748e8ceeae3b2" + }, + { + "platform_coupon_redemption_id": 2902278702042309, + "ods_hash": "bd39f28a2b7faf3afaf6c8213c1b698d", + "dwd_hash": "194c012f3225e4ae414884d21d1a6979" + }, + { + "platform_coupon_redemption_id": 2902281462353285, + "ods_hash": "1968fb597f753f6745060af438b82187", + "dwd_hash": "b35cedc607bce12c090be170b35e9c0e" + }, + { + "platform_coupon_redemption_id": 2902284193483973, + "ods_hash": "803e7a6804ce9c37751435eb820c4f40", + "dwd_hash": "f350a4959af7d9368aa5a8fa9010c53a" + }, + { + "platform_coupon_redemption_id": 2902286766951621, + "ods_hash": "8301c5747b0894179ae91f7ab442a9f6", + "dwd_hash": "511d2eaa58209e4729d21321ffcf8934" + }, + { + "platform_coupon_redemption_id": 2902299175259525, + "ods_hash": "076030d20936947d02963d69cdd53f04", + "dwd_hash": "23de7c04364c56544ee709ad14fba888" + }, + { + "platform_coupon_redemption_id": 2902303531387909, + "ods_hash": "b8462a60d7d5664b7474d1572839a1ed", + "dwd_hash": "e4010412768300bc5380e8cd8f305339" + }, + { + "platform_coupon_redemption_id": 2902306926546117, + "ods_hash": "9c879f8dfcd58ed378108abb61831dfc", + "dwd_hash": "545b571fcdc6955be6e07159ed7ad6a7" + }, + { + "platform_coupon_redemption_id": 2902310724701381, + "ods_hash": "a7b0d0474372268e49689b76872e333b", + "dwd_hash": "3d2918792aed27c7638f31713d11827a" + }, + { + "platform_coupon_redemption_id": 2902314367339909, + "ods_hash": "3cdd19760844a270633a897b401e61ba", + "dwd_hash": "bcab3712490f965e9916f88031d81801" + }, + { + "platform_coupon_redemption_id": 2902325542423749, + "ods_hash": "4fe09ba3944baae6c753de839940ef8f", + "dwd_hash": "8c10508799bc8795dc7576365c932ee9" + }, + { + "platform_coupon_redemption_id": 2902325747699077, + "ods_hash": "729beace889c969336c6d1b66f25c3a0", + "dwd_hash": "8f165b33af02f8149cbd3ad636565b30" + }, + { + "platform_coupon_redemption_id": 2902335580376005, + "ods_hash": "70b78d93f25311a6999de4797b8f3f48", + "dwd_hash": "ab460d72ded5ab1080df88b58a4ecb61" + }, + { + "platform_coupon_redemption_id": 2902352671542277, + "ods_hash": "9a90ac2713b543b4ceb893cdbed254a7", + "dwd_hash": "377a5bda53cf6211b030b9fe7a8893d7" + }, + { + "platform_coupon_redemption_id": 2902363868777669, + "ods_hash": "79161b8f6d76edb71822968862f2b7e6", + "dwd_hash": "0e4b7f694d803ada2dafab30a4851cc3" + }, + { + "platform_coupon_redemption_id": 2902392764976325, + "ods_hash": "0f7ebcb2fbff3f1667a58346b449b80f", + "dwd_hash": "d109f3fe596240fc7a720ab19c844a9f" + }, + { + "platform_coupon_redemption_id": 2902401247677445, + "ods_hash": "b03b4018abd42f20c5370401721f0ef7", + "dwd_hash": "b17f9fe486c19ba956c4ef26d43d3af5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ], + "mismatch": 3616, + "mismatch_samples": [ + { + "payment_id": 2901329633332613, + "ods_hash": "a17b541a1bf24c373109c9191e1cd74b", + "dwd_hash": "042293e2f0a2bd1d9aa6c7f675981668" + }, + { + "payment_id": 2901330301783237, + "ods_hash": "8da7463f462d765c1a5b5efdd67d229b", + "dwd_hash": "fb8e61db1aa96ccb0361a86201cfd7c1" + }, + { + "payment_id": 2901333640383429, + "ods_hash": "220dc6b4ca853aedeac6db07c4eb252e", + "dwd_hash": "efca71ec5a4660b5c23f98bd0bcd53b0" + }, + { + "payment_id": 2901341568650245, + "ods_hash": "4ad31937f9004a8e70a7627c95850afa", + "dwd_hash": "b6ae7559f7dcf7e903b172d2713555a1" + }, + { + "payment_id": 2901346036419781, + "ods_hash": "0c317b2acbafc03b8261cedd8113e2e5", + "dwd_hash": "1d79f890ddfac44c5b2b35d8aabf28ef" + }, + { + "payment_id": 2901348563930309, + "ods_hash": "8051ffcc096ca9331906c59b0012b07f", + "dwd_hash": "35326c9e59e21542a09ae73b0f203f09" + }, + { + "payment_id": 2901349053779141, + "ods_hash": "7165faadfc1411bc16e70473916a0fad", + "dwd_hash": "0012b440777d1ec47b8da97cfacbc81f" + }, + { + "payment_id": 2901349430414277, + "ods_hash": "e3c487b0652e42b528e0769c024381cd", + "dwd_hash": "481d7db3edcef1babe4a6c710c8416dd" + }, + { + "payment_id": 2901349808704517, + "ods_hash": "6fb1e2386d7690ef155acc4047e93f80", + "dwd_hash": "f1ad376cbb3d1591cc2642dc26a5c30c" + }, + { + "payment_id": 2901350925766021, + "ods_hash": "521a9c7eb218331a0e38507ba21db4e0", + "dwd_hash": "a052054ecad365ac91ebf9151b14b46e" + }, + { + "payment_id": 2901351258606533, + "ods_hash": "6ee9bbaf198a4cdbb36c3580390c0b0c", + "dwd_hash": "88ae7e806754cc200a3688da3579a60f" + }, + { + "payment_id": 2901351575882949, + "ods_hash": "0ba80c72ff417d1e5ffacdc630fe02bf", + "dwd_hash": "c61dd852b4cb09c9c736378957fba43e" + }, + { + "payment_id": 2901352973208517, + "ods_hash": "6469de441d9627b6ed98e846adef67e3", + "dwd_hash": "b93606f0048dc13a84880d11de33aee8" + }, + { + "payment_id": 2901353633533125, + "ods_hash": "26bf9f88df4efbf060e871321806bbcc", + "dwd_hash": "0000142e9cf31279eb3d9fdd7edcd23c" + }, + { + "payment_id": 2901354530589637, + "ods_hash": "4b172a2dcacf4dbc64c6d2a6be1402b9", + "dwd_hash": "f5a4d818ce7e7f891e4f4b77853e1b22" + }, + { + "payment_id": 2901357005196293, + "ods_hash": "a4700931ee5c6e108f49b119977b6056", + "dwd_hash": "a166f4c19e7f1227c10034dd58fff618" + }, + { + "payment_id": 2901358840712133, + "ods_hash": "a00460e5b13d8b6a337b687bcb84e0a9", + "dwd_hash": "ddc94830d07e22a746aa49cb4b232821" + }, + { + "payment_id": 2901362041473989, + "ods_hash": "14c05f2fd8f556f51d6d7dfcf492065b", + "dwd_hash": "7d6b2b022ee45aab4d2e6471831c7fe6" + }, + { + "payment_id": 2901364620659653, + "ods_hash": "1da2d9f291c8a47874cf77f5e2b656a9", + "dwd_hash": "d71e80af7e9875200adc9150a5dfe0fd" + }, + { + "payment_id": 2901367867280389, + "ods_hash": "a1e11bcb74d7fd16e36ada8033d02011", + "dwd_hash": "1351f782baaa8d9770d900b9f7850bff" + }, + { + "payment_id": 2901368984980485, + "ods_hash": "6be0343a4e44d757e106752bce53a309", + "dwd_hash": "bcd7f17d493c817289b4ef7d7cd600ee" + }, + { + "payment_id": 2901374239755653, + "ods_hash": "1f1a376e50aedd383532e96e2e52726b", + "dwd_hash": "720b34cddcdf96c396121b658d15eea9" + }, + { + "payment_id": 2901376491163013, + "ods_hash": "d2f31184e79773f3520c998cd7614717", + "dwd_hash": "6b437743b00a6ac74386d976a5dcd313" + }, + { + "payment_id": 2901377168264133, + "ods_hash": "0f5e8c6ed0089085d0ed21f4ddf35ccc", + "dwd_hash": "bc656b14f7b6e43c6f6196016a9870a2" + }, + { + "payment_id": 2901385077017797, + "ods_hash": "4b7401c2897634f0d872fdc5d3bad243", + "dwd_hash": "79a86cbe14b7ee1fa7d0bd030b626179" + }, + { + "payment_id": 2901395063671813, + "ods_hash": "537ec8448ea455628d9c1cbfd853cc6a", + "dwd_hash": "f8df7b3e33958fe8ed5e2ade4ca45151" + }, + { + "payment_id": 2901396410961093, + "ods_hash": "d213feb8936d3f6a0f6bd2d01ced6216", + "dwd_hash": "dc45d2bb6ad0bd432e4e18ac10a725ee" + }, + { + "payment_id": 2901406233447429, + "ods_hash": "2964dbdc2a9e1c0da383559b9e0eb29a", + "dwd_hash": "d1ee0fd4f4d2f6f5e31403e0f0120d27" + }, + { + "payment_id": 2901414643305477, + "ods_hash": "3b9b5d734f3f6acaf6926486baaec79e", + "dwd_hash": "3491f3c98a659c55f9b417256a290939" + }, + { + "payment_id": 2901419209477317, + "ods_hash": "d9c12f7868f10c3a26bd57a47da0b0d9", + "dwd_hash": "d127cb2c03d4b8a0cfb476875cb8f7e3" + }, + { + "payment_id": 2901423307967493, + "ods_hash": "f4abd15d1d832fe798be75870cf48f37", + "dwd_hash": "0ef9dd994f842de8dbc5cb4aeca5faf8" + }, + { + "payment_id": 2901427656805765, + "ods_hash": "1e9d4f33bfc96aadbfcd4bcf53fb84e0", + "dwd_hash": "68c049d7ef3209e865f8f5ab0e90b06d" + }, + { + "payment_id": 2901433679514821, + "ods_hash": "4b80121771d13238f8c6a98a7588261c", + "dwd_hash": "12f8bab6e4bf6d8c6dd1c3dba346ed72" + }, + { + "payment_id": 2901438573956101, + "ods_hash": "37b74917eeb20ec20d3619af99ebbfda", + "dwd_hash": "66b76ebbfa20ebb6390645a2ee732746" + }, + { + "payment_id": 2901440629345221, + "ods_hash": "2b51f7f88c9846b209756c87e7a199df", + "dwd_hash": "39aa0ab3a6dd218537133ae56a95052f" + }, + { + "payment_id": 2901452813487301, + "ods_hash": "c2e271c24597739fabaec1c82f085e5d", + "dwd_hash": "3455fc793116ec27f23f7c7a9e869d96" + }, + { + "payment_id": 2901463567436741, + "ods_hash": "a7ce0c729de0733c40db038ff8b04843", + "dwd_hash": "eede6a5d2ed33f5214ac2229380c4e31" + }, + { + "payment_id": 2901469448358853, + "ods_hash": "09d2b1bb30b554b35e16c993ca25d836", + "dwd_hash": "b52e4a4fcbcb57c6a1eb3030db8c2e8e" + }, + { + "payment_id": 2901471271865285, + "ods_hash": "79fd7c8e45e5eabddbcff63062f91505", + "dwd_hash": "2d23928c62878558b705688f0eb16236" + }, + { + "payment_id": 2901475700133061, + "ods_hash": "fcb5d09c5ef8ce79fe9a052794fc0360", + "dwd_hash": "d633cc2a9afaef8030fb86304a79bd2b" + }, + { + "payment_id": 2901509430791557, + "ods_hash": "2b58383ae2dd5c041c0c60663f3906b9", + "dwd_hash": "e32172925a5a63cb4778283fbbbb2f1d" + }, + { + "payment_id": 2901510516870341, + "ods_hash": "5fee8d604d267ad3ce2f7aeee9ca848a", + "dwd_hash": "c2f107e0ebccf2ededcffc1508f37afd" + }, + { + "payment_id": 2901523906268165, + "ods_hash": "e3a3e772412ab50423255bd3e253401c", + "dwd_hash": "df76333fe3ad506df6e2d15ea458e470" + }, + { + "payment_id": 2901535958945157, + "ods_hash": "32aef665b683c0fd0e212f2dc82654b4", + "dwd_hash": "cf39184ecac7c86c4a5ef9538aa4bcfc" + }, + { + "payment_id": 2901592642587845, + "ods_hash": "48e58f8cf4d74d75b10ad014e6a9b929", + "dwd_hash": "2de107c0581530a7c69f13de9f0a736f" + }, + { + "payment_id": 2901680239348933, + "ods_hash": "971a0c4494f3b1da49400f28398df9ba", + "dwd_hash": "dd3bfccc8091a571d97069023d46b741" + }, + { + "payment_id": 2902079562812613, + "ods_hash": "1146e8032439b0e68b441b634fd55d3f", + "dwd_hash": "8a6a091764f603dd593245d4b1fba26f" + }, + { + "payment_id": 2902088275250181, + "ods_hash": "114db5dc689ab41dabee8f23d2f065da", + "dwd_hash": "66ab2989639ea160e527f43efc5fe48c" + }, + { + "payment_id": 2902118401379717, + "ods_hash": "bf38fa4e9fd73b1aeb877bff45f45b17", + "dwd_hash": "54fec9c8b429d00282584992e6ed86b6" + }, + { + "payment_id": 2902128928755077, + "ods_hash": "d9ea8705db9f035dc2b384df615b6e70", + "dwd_hash": "33baa2de6cbe80a234fa26c165549b42" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ], + "mismatch": 5, + "mismatch_samples": [ + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23054, + "total_mismatch": 51766 + }, + "generated_at": "2026-01-31T22:17:17.949224+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10193, + "records_with_pk": 10193, + "missing": 11, + "missing_samples": [ + { + "id": 3075332074964421 + }, + { + "id": 3075332010886789 + }, + { + "id": 3075331958277765 + }, + { + "id": 3075330793899461 + }, + { + "id": 3075330213840517 + }, + { + "id": 3075330153760197 + }, + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12019, + "records_with_pk": 12019, + "missing": 15, + "missing_samples": [ + { + "id": 3075332072293829 + }, + { + "id": 3075332008330885 + }, + { + "id": 3075331955967621 + }, + { + "id": 3075330791523781 + }, + { + "id": 3075330211300997 + }, + { + "id": 3075330151024069 + }, + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17369, + "records_with_pk": 17369, + "missing": 2, + "missing_samples": [ + { + "id": 3075335458195013 + }, + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8314, + "records_with_pk": 8314, + "missing": 7, + "missing_samples": [ + { + "id": 3075332075652549 + }, + { + "id": 3075332011574917 + }, + { + "id": 3075331959015045 + }, + { + "id": 3075330794440133 + }, + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "d2f2a097718965b87f5131d9afe54be6a590806c277a04997cb8f49cd8a2c701" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "95c2d7312dd170717b54fe57c01b11f89767c1e621e6dceceda7af9b3bc06c33" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "0242e5d2630dad59cbae9244726d11f193f573ede0b4ebdeddcfa34a803851d3" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "f4f5dc6aa6bb279ba2879e9a761b4f4a899bd9b9bda7a55567381d8f5f4327ca" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "b7ccfeb2596775d7d5df412279e738df719792074ae854d8eec75fbed9a95a19" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "d0395a340cb626ba57ac4ff57cfc5acf8a12bd6626d9f256ccea453bd2e8d759" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "0ee61f12c483f390ea00c57ba414f9fc01f2e960f8f683f1705bc002354bc899" + }, + { + "id": 2793012902121605, + "content_hash": "1598f548e57874116e40e53e026a649316d03ba95d3970180bedf1f57cab753b" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "a076ad7eeb954420f67d2c821ec57c1758059782dfb0701d9d63c3b6b81f7d57" + }, + { + "id": 2793020259897413, + "content_hash": "80cb3550fe1d1a7f99a4a4438eae45dbbedc67818b425b7ae9ec4811c26bd9dc" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "d6ef6da3be3b8e65059e39922bea0530770e23f5611e293c4e35b65eaff82acb" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "e65abc7f818f0646d54b654464795b7d5b4059b168121545a5f347b13a906397" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "0ac82ce3c80764f020ca7bc2137a39bd78c79ed7f64a77d5f254a481f2e3af45" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "0f9a0cc093051f55c8e9aeabda93df76e06e51b0ed4f5139225ec8539ccaad6c" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 42, + "total_mismatch": 98, + "total_errors": 0, + "generated_at": "2026-01-31T22:21:03.114930+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [], + "mismatch": 12, + "mismatch_samples": [ + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + }, + { + "assistant_id": 2964640248745157, + "ods_hash": "32b25f8128d54a365bf9a7443585bd3f", + "dwd_hash": "a3183239d5fcef78c20c882bcbf7300f" + }, + { + "assistant_id": 2964641017858885, + "ods_hash": "0d9694e801c766b3765d7067b37540c0", + "dwd_hash": "2dd48d3a8a7786db73f924d55c72830c" + }, + { + "assistant_id": 2964673443302213, + "ods_hash": "88883a747ca4f0d8f7b35b9e72c782fb", + "dwd_hash": "c8884cbe959baa753e7a3220a407d403" + }, + { + "assistant_id": 2967523548220229, + "ods_hash": "7c6ba3b49a5d7e89ff6127e37158514f", + "dwd_hash": "19cf5d73ec1147573bd80431bcd14a3a" + }, + { + "assistant_id": 2968948701235781, + "ods_hash": "401914b7ff428454e6d6086aadde187b", + "dwd_hash": "45bb8364fa401ca029078b0725cba674" + }, + { + "assistant_id": 2968952636082757, + "ods_hash": "b1acccb7c4d775ef38b50c7fc968913d", + "dwd_hash": "d25e3f51e821f827942ab6b1316f62be" + }, + { + "assistant_id": 2974409288616069, + "ods_hash": "83f58323ffa23b6024c03a9f148b87a1", + "dwd_hash": "db17601f34dba735067a519cef540c45" + }, + { + "assistant_id": 2981625091950725, + "ods_hash": "02dfb2106e300d3bb46715c9f0061d44", + "dwd_hash": "2c71250b8efca7c5784d6404106bebe8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [], + "mismatch": 40, + "mismatch_samples": [ + { + "member_id": 2945299652708293, + "ods_hash": "5d339bcdfda1de93de685c4ab2b48521", + "dwd_hash": "a05240cf83d58433fa9992d181ccf965" + }, + { + "member_id": 2946070922169029, + "ods_hash": "a0099f49f90cb4cfd27654772a929e06", + "dwd_hash": "323e87145a641593f0a5ec1cf68d4951" + }, + { + "member_id": 2955204541320325, + "ods_hash": "6ecb13e3a312f193084f1acd3dc9339d", + "dwd_hash": "b869da0ec823a9ef208a7f77216639a2" + }, + { + "member_id": 2963080729267653, + "ods_hash": "265ee165d1e321a8c8f951737768ab27", + "dwd_hash": "961cc4dc0167aa5f9e22efa260dcdc40" + }, + { + "member_id": 2963282691968453, + "ods_hash": "571fb1b8056d912514040debb17c1d59", + "dwd_hash": "f2812bef6dc8ffbcbbbbbf90a40b61d3" + }, + { + "member_id": 2963357031615941, + "ods_hash": "884e953b20b213c104edd985bcaf18e6", + "dwd_hash": "09aa98ca520aeb19d6361f75e8b40e8f" + }, + { + "member_id": 2964541607316933, + "ods_hash": "a1f861fba2322f0d07f9cd14af5c4d54", + "dwd_hash": "20c5df8d15b7701e641a114482a793e8" + }, + { + "member_id": 2966172496072133, + "ods_hash": "6c25897ce0bfeb821f00435a88b70292", + "dwd_hash": "bab16ca1da1ac85a8dd00365c4aadb41" + }, + { + "member_id": 2966362986335685, + "ods_hash": "e1e185e418e06e867686728f6adb5a31", + "dwd_hash": "25ccb873e111981bf88b5e09fa8b8d38" + }, + { + "member_id": 2966381620874693, + "ods_hash": "6732bf2a1d6e7d5055ac8be913707191", + "dwd_hash": "8f4189a499a5afd6ec0fa622cf63b7d6" + }, + { + "member_id": 2966453465337285, + "ods_hash": "53009c7ff8b53f02e1bdf6b3efc00744", + "dwd_hash": "b679ed61cf81d517ca869e6fab807614" + }, + { + "member_id": 2967557411589573, + "ods_hash": "70f5beb78ac31562495526fdf8f0dfa2", + "dwd_hash": "d2699dd8d68491d87ad6b17dd33024f8" + }, + { + "member_id": 2968940593907141, + "ods_hash": "9cfb989fdd8ed4cd8ed247918360cb8b", + "dwd_hash": "04b02645011415357d2a78cd16ce7d79" + }, + { + "member_id": 2969257129938053, + "ods_hash": "9b09e4e99122baf0e972946148a75540", + "dwd_hash": "ebfca9fe392c73d875d3ce5b53473cae" + }, + { + "member_id": 2970386005050949, + "ods_hash": "74b153726b3ca4ff32a98eb881ce8d79", + "dwd_hash": "802c2f75533c8a8264bbfa318469a50f" + }, + { + "member_id": 2970668087594181, + "ods_hash": "64ebfa279a3a6c7c186c1dab8a89da70", + "dwd_hash": "7353e342bcee1253fddcc466aaeb8363" + }, + { + "member_id": 2971830157477573, + "ods_hash": "a843a70d0119f6fb47188774fdf99cdf", + "dwd_hash": "7f89c12bee5376aa63d408e35a2361cc" + }, + { + "member_id": 2972037072081541, + "ods_hash": "4f251b686e4e6d93f032c2168c19a60a", + "dwd_hash": "2798eb075386d05eed1b0e1ad9bfd0a2" + }, + { + "member_id": 2973199975761797, + "ods_hash": "dcb162fa1d822e1aef786ac883b3451c", + "dwd_hash": "51644fe4c3dfc4077d73e1281e15ae6f" + }, + { + "member_id": 2973479575832453, + "ods_hash": "2206da5bea756856ce6dc757a215ed41", + "dwd_hash": "9f97548e9ef67c79d3bae78d0eb9af70" + }, + { + "member_id": 2974754075445125, + "ods_hash": "ed89175a8a7df1754876d921f48cd026", + "dwd_hash": "678c2a629f3516d9b52a0b48bfb3379f" + }, + { + "member_id": 2974754559625093, + "ods_hash": "c4f3452d8fc5483df61f80bfe3751d42", + "dwd_hash": "f86eb85dc13b4004c3960224ef0de685" + }, + { + "member_id": 2974755670493061, + "ods_hash": "62c467588d4b6aa699a2af9d61ac84bb", + "dwd_hash": "5b6c8440b4f1305f1a35794f5c78cab0" + }, + { + "member_id": 2974756216031109, + "ods_hash": "c89d20cc504cbcff58a0cb8e2d76561c", + "dwd_hash": "04f0a9623e8e07be3a9c4a19664d092e" + }, + { + "member_id": 2974770547348357, + "ods_hash": "06e8cd860cb7e794fa9fe1e6d0d3b31e", + "dwd_hash": "4aea3580f0ae3a783d19b955ea79c11c" + }, + { + "member_id": 2974785493485445, + "ods_hash": "c6d80b53faf97fdfe7464e6e1f2e7a4c", + "dwd_hash": "57a1956bcb5a1a7c6add1e4936487d39" + }, + { + "member_id": 2975065345119045, + "ods_hash": "c17842c48eca4fd505d486a47d5665d4", + "dwd_hash": "c11ffce37aa91fbba55694e50c9e724a" + }, + { + "member_id": 2976354546927493, + "ods_hash": "f788e4fb22a3b4fd85e692c8e4ba294d", + "dwd_hash": "8cc49daa63775691fe8a4091bdf9bf43" + }, + { + "member_id": 2976361970370373, + "ods_hash": "b765a0904eca25e8ed6c9281639693a8", + "dwd_hash": "940ae43732d14aedb9655df001e50d09" + }, + { + "member_id": 2976369237493637, + "ods_hash": "fba04b04f295b06526d18d39c5042620", + "dwd_hash": "364ab7c0eca3416800369117a3713cf7" + }, + { + "member_id": 2976372411533189, + "ods_hash": "441fe5cb67a750ae43255b44dbdd00a8", + "dwd_hash": "a0e47ffb00d86d62d8541ca045b72e57" + }, + { + "member_id": 2976376546117574, + "ods_hash": "be4c7a4e9d27bec95627d801d0eb5fa0", + "dwd_hash": "68e42c7a0b7505ac7d56131a4430f7d5" + }, + { + "member_id": 2976465665476741, + "ods_hash": "8afe78e5b8d911b42ffd7d27aee1bcba", + "dwd_hash": "59a541b5f9a4f4859e652d6e14829be2" + }, + { + "member_id": 2977807259142021, + "ods_hash": "314bbacc1bd511ae19bb1616fc04a76a", + "dwd_hash": "95804f3d296a307419c007b4454d1c1f" + }, + { + "member_id": 2980065690831173, + "ods_hash": "82a8bc980962305612d497d8c9f9a5ae", + "dwd_hash": "484d8d32241350d1a08f5a1e964dfac1" + }, + { + "member_id": 2980518051006341, + "ods_hash": "61abb184836f02f222b5c5628492507b", + "dwd_hash": "f9e9e983aca720cd98f7a48c63517681" + }, + { + "member_id": 2983452013021509, + "ods_hash": "840b2a3b2d2e52daf5e2ee6d4e97b0df", + "dwd_hash": "1e22089e341fb1639740bf253a0d96a8" + }, + { + "member_id": 2984700277263365, + "ods_hash": "fac30312bd7dcb191309d40782452a0d", + "dwd_hash": "71945bfb20f0e2d27ffac68820033511" + }, + { + "member_id": 2984798972709509, + "ods_hash": "fcf1150d033f67a3ffa8bfc6a0a7ddb6", + "dwd_hash": "08759e96b2b52aed70e4503529238df8" + }, + { + "member_id": 2985941423934469, + "ods_hash": "a554c3f6602741653c08825b3d4bcd15", + "dwd_hash": "1a3c47fb659bc9a946046a18b6fc6b62" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 80, + "mismatch_samples": [ + { + "member_card_id": 2945299653003205, + "ods_hash": "7631218d028b598c551816af8e901e32", + "dwd_hash": "e200cedfd6eea217a1fc2ff64b95ba3c" + }, + { + "member_card_id": 2945300519405509, + "ods_hash": "13aacc8fe9199473d5578646a0d8d53b", + "dwd_hash": "02b2a3b52562b68a2c7c1b30600f02ea" + }, + { + "member_card_id": 2945598955374725, + "ods_hash": "6c116d572b0a9c80e71ee9f901327787", + "dwd_hash": "42460a959b85a4eb97d6dcc47a6b7991" + }, + { + "member_card_id": 2946070922889925, + "ods_hash": "6634c10f88798f9048765adefe6fdfc8", + "dwd_hash": "6458966fbd7104b8d11e61034a8fa587" + }, + { + "member_card_id": 2946071339616325, + "ods_hash": "f2a07df3b1100540ea42a083e793ce4f", + "dwd_hash": "7aa0d7c6b2b7bb904723c5ea469958e7" + }, + { + "member_card_id": 2946072298784837, + "ods_hash": "41940fc0474ef7cac586217542d138cd", + "dwd_hash": "b413a30b9344cd2bcbacf02d9bdeca57" + }, + { + "member_card_id": 2955204541615237, + "ods_hash": "9b497343d8b5abaad4e829fb68d783d7", + "dwd_hash": "2f99333e6cb85dfdc92ca5595d1160da" + }, + { + "member_card_id": 2955206162843781, + "ods_hash": "a81ade9c8d4505c107804c1b74b95935", + "dwd_hash": "12baaacf9124cac5cffe9bd9a8f5fb23" + }, + { + "member_card_id": 2963080729562565, + "ods_hash": "f69fa8c859d82cfa0ef1806c1a05f5a1", + "dwd_hash": "8386450a8dbabe0b3ca16686473c7b87" + }, + { + "member_card_id": 2963081046953669, + "ods_hash": "01f5c43905131e87f13a4f7fb092d03b", + "dwd_hash": "710c6f39936ab0e75bb60010d6d8558e" + }, + { + "member_card_id": 2963282692246981, + "ods_hash": "c965f86ccb99f740dbb59afc2728eee2", + "dwd_hash": "53f62330c4521c3bf1bd01062be13c53" + }, + { + "member_card_id": 2963357031960005, + "ods_hash": "8523fc181867b6f054456fa9fe609bc0", + "dwd_hash": "c48a272fe77c8d7640e47f035c40cefa" + }, + { + "member_card_id": 2964541607611845, + "ods_hash": "2fa66cc2fc01a6b0e278c57cba334a05", + "dwd_hash": "4745366732c0f46b415104931d15a6e2" + }, + { + "member_card_id": 2965088556746437, + "ods_hash": "c489bdd69526a24170b058e667664c12", + "dwd_hash": "efee02bdf5d0ce24984e8188d74f1afe" + }, + { + "member_card_id": 2966172496350661, + "ods_hash": "a35be8d41035b65682b96d4bb511419b", + "dwd_hash": "7c2a14ab5ca67b3e37613db14e33cfc5" + }, + { + "member_card_id": 2966362986630597, + "ods_hash": "8400bc015aa0f7380f4b93ac47b8371f", + "dwd_hash": "b6141d8a976181c721314b19f5874543" + }, + { + "member_card_id": 2966381621185989, + "ods_hash": "0f91e870edddfb65ada44543c6de586b", + "dwd_hash": "b18818a06250fcb59c834bb4391d1fa5" + }, + { + "member_card_id": 2966453465615813, + "ods_hash": "d8f5dfe73b92a3e987beecde0d14d4b6", + "dwd_hash": "ecc2338793619eb02e69a386a34e7f49" + }, + { + "member_card_id": 2967557411868101, + "ods_hash": "d2b41d4e1de45c06c716313d1793e9bb", + "dwd_hash": "e837e5f21cc68cbca41512e25d316b07" + }, + { + "member_card_id": 2968940594202053, + "ods_hash": "9bfd1439d04fd2fce98b4fe3de7065e9", + "dwd_hash": "88713c7e2d8750ffa898582241de0365" + }, + { + "member_card_id": 2969257130232965, + "ods_hash": "35ac52e17a7e88a83914225362545af4", + "dwd_hash": "a06f51b1b2f51c9ecdb6e375050d9568" + }, + { + "member_card_id": 2969257428700293, + "ods_hash": "b8b0bc10d2c0f8cc9b2430b286ebf92a", + "dwd_hash": "b8a523b68327f3c7f211b1c3da4e9398" + }, + { + "member_card_id": 2970386005919301, + "ods_hash": "6676cf311f4f7edb206c42ee2055ca74", + "dwd_hash": "f8a7b450f87ab18e4b26caf8b3a9d90a" + }, + { + "member_card_id": 2970668087872709, + "ods_hash": "034df29862643b3b798381b3a7056260", + "dwd_hash": "42f7c8da9dc74e2fc82b78470670c855" + }, + { + "member_card_id": 2970668479384453, + "ods_hash": "42b37dae4f8d35cf2a157be358df1bdf", + "dwd_hash": "d62c04c1f59198249a07632695a97920" + }, + { + "member_card_id": 2971830157772485, + "ods_hash": "2dff48cca83beb500908166d72cd4e0d", + "dwd_hash": "cabcee86fe52daa828a496b7026185d9" + }, + { + "member_card_id": 2972037072343685, + "ods_hash": "6df00a866cd373fa9f16c21c00b522d2", + "dwd_hash": "22703e1a679c5a4f5fcee0a8fc61f3c3" + }, + { + "member_card_id": 2972037629840517, + "ods_hash": "a1f3ee3e3215474a431aac434eac9c66", + "dwd_hash": "aaa7d5af26e44806f628867f1b6490e4" + }, + { + "member_card_id": 2973199976089477, + "ods_hash": "ee5b79bd07a0407c60f6d798b8a38c34", + "dwd_hash": "5a7b492c07be7de18368ff0c4fa086f5" + }, + { + "member_card_id": 2973479576110981, + "ods_hash": "7e4c075342d8b7d2fb471100badafe71", + "dwd_hash": "4c9931b5b54983c121dbaea04d06e2f6" + }, + { + "member_card_id": 2974754075723653, + "ods_hash": "32d6e908c8f8496718f724e44cb3134b", + "dwd_hash": "e3d117a8c884f02caa34353a23c7d9ba" + }, + { + "member_card_id": 2974754559903621, + "ods_hash": "2fb4a49ae34c8c8f1526089d6f805cd1", + "dwd_hash": "24d319bf0aaad07f673f09b5d3f3474f" + }, + { + "member_card_id": 2974755670771589, + "ods_hash": "2d70d618a7ec186a02fb9a41d6c62d0f", + "dwd_hash": "59fcbefa2d5a311ac82ab6d615fd7350" + }, + { + "member_card_id": 2974756216326021, + "ods_hash": "d2f3bcde09d45e1cf4ec4f7c80031f2b", + "dwd_hash": "a78ba7b4fd39edddebf171d4115e558e" + }, + { + "member_card_id": 2974770547643269, + "ods_hash": "afe4867e6b2e554412413cd49eb2fe7e", + "dwd_hash": "4e384910b42701e85a818126a14e98bb" + }, + { + "member_card_id": 2974770908697477, + "ods_hash": "e391d7485add865c0a0ac4b076487894", + "dwd_hash": "e555c9b2221109de7873890253bf5ab6" + }, + { + "member_card_id": 2974770958340933, + "ods_hash": "9a31d700d51d711d10945df0a496a927", + "dwd_hash": "cfea047e725993715c5e730c9787b3f0" + }, + { + "member_card_id": 2974785493747589, + "ods_hash": "82ab8773d7179c718367d763f2784cd7", + "dwd_hash": "a256821e96ead935dfa8ea170fdba26a" + }, + { + "member_card_id": 2975065345397573, + "ods_hash": "1ebe34bca2ce414c72c1e50b520f5566", + "dwd_hash": "582a061204b3b86f34cd2cb9ffe578bf" + }, + { + "member_card_id": 2975065876861893, + "ods_hash": "8e2995aa3fc5e0493aa32e3fbb997d1a", + "dwd_hash": "9e129a055a27e1d74c9a4dd277ee8318" + }, + { + "member_card_id": 2975065981473541, + "ods_hash": "d5bd25ea5572f3840d61a92aa532cde3", + "dwd_hash": "b51b3a49e1cc2cd4bf038f0b612bc887" + }, + { + "member_card_id": 2976060892301445, + "ods_hash": "be2e45655b37e598351058ded1125c47", + "dwd_hash": "f0b5d99c113a991c646f14e565acc829" + }, + { + "member_card_id": 2976268383766469, + "ods_hash": "2a4cec059ba9c405f6fba6a045401632", + "dwd_hash": "923e6d16a2fd22e0df846c4718dc2a3a" + }, + { + "member_card_id": 2976268659476293, + "ods_hash": "39e89e476beac6ab52c11207c933526a", + "dwd_hash": "c0241362a9d8d0133601b5c79764ba2d" + }, + { + "member_card_id": 2976354547206021, + "ods_hash": "860605059c5104922bf742d8a0c7117a", + "dwd_hash": "bcaf6b48c707ccd6dc69dad6c1b3e808" + }, + { + "member_card_id": 2976361972205381, + "ods_hash": "05f0bb323b831131f923cdc1c3db23b2", + "dwd_hash": "67ddb1216414fd4c4ac1d3a209e5b8d7" + }, + { + "member_card_id": 2976362493413509, + "ods_hash": "9bf881e7ce6d2da2637d04adb4069ebe", + "dwd_hash": "61d04e30122d94ccc8e0d1d1c81f6426" + }, + { + "member_card_id": 2976362549004101, + "ods_hash": "c3b55b3b89893e1abfa38ac49f6680d1", + "dwd_hash": "2acbc61fe9b3a5ae3b414aa0720f78b9" + }, + { + "member_card_id": 2976369237837701, + "ods_hash": "967e4f59079b4ffe6652558a16988225", + "dwd_hash": "0eeb330a7a9a487be422efe23a583495" + }, + { + "member_card_id": 2976372411828101, + "ods_hash": "0fe132a9416cc0ffef4bb514e13a7974", + "dwd_hash": "da95d490e7051535cac9c2b663700eaf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 2959250949670277, + "ods_hash": "f32731ce7782ca5abb7db085bcdd1376", + "dwd_hash": "ee0161489c89c7e76289b5b77f2cc897" + }, + { + "tenant_goods_id": 2964701792325061, + "ods_hash": "09ae6882e4666aa97226c2c0343bf8db", + "dwd_hash": "24d49843cd1dfbcae9dcadd6effa080d" + }, + { + "tenant_goods_id": 2966338744487365, + "ods_hash": "6181d8770a5e87d34ecc28795e23f764", + "dwd_hash": "a759e790d225ac274b10b55023bbaf17" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 123316.54, + "diff": 33307.250000000015 + } + ], + "mismatch": 3336, + "mismatch_samples": [ + { + "table_fee_log_id": 2945209281415301, + "ods_hash": "13c452b3928f04f6ab2aa76ce84ca0ff", + "dwd_hash": "1c09ff0beb882aca4feac153e657d598" + }, + { + "table_fee_log_id": 2945219533375557, + "ods_hash": "ddcda4e79fcdd3aedf9cd5462b9cde8d", + "dwd_hash": "867e54955f7a70dfd79dbdaa1bfd5da0" + }, + { + "table_fee_log_id": 2945223817644101, + "ods_hash": "edbe362ab3d28b5813a940c26e415331", + "dwd_hash": "f28d295af48dc565dc1069a680f8681b" + }, + { + "table_fee_log_id": 2945238240675781, + "ods_hash": "5706b92cbb15648e4f8427272bd4fb98", + "dwd_hash": "4ca613dc9eaff5cd6dec0a76fce3b047" + }, + { + "table_fee_log_id": 2945244231747525, + "ods_hash": "8381168850c4bb59f672f757e1ae7f31", + "dwd_hash": "b53894549e410cb8a19bbfa7e4c58a42" + }, + { + "table_fee_log_id": 2945250914715589, + "ods_hash": "080c15f7b3f602e6b9097ae4d7fa6602", + "dwd_hash": "c42c3bffcada092e84db9d8849c88c34" + }, + { + "table_fee_log_id": 2945265999841349, + "ods_hash": "38f47f66d5803a5abd8a86adf55222a8", + "dwd_hash": "1a1a65c7d9a34d16db2b712b66883ed3" + }, + { + "table_fee_log_id": 2945282190657477, + "ods_hash": "be42f4ec700c10bdc89c82d3392b65b5", + "dwd_hash": "a039c2fe1e79167d8f6f80ffc2403d5f" + }, + { + "table_fee_log_id": 2945295730985093, + "ods_hash": "913e0d8f35e78470cbccd7efff384e9b", + "dwd_hash": "692328022cf8a2fcfd96656c9e99d3af" + }, + { + "table_fee_log_id": 2945296564308037, + "ods_hash": "275ea97826eb6c7e00b327289892d456", + "dwd_hash": "f447fbe6f7bcb061d5d14d3eefbc4fb2" + }, + { + "table_fee_log_id": 2945297080289285, + "ods_hash": "d1c7a58ae07c181dcb43c664e432e86e", + "dwd_hash": "97b773f00411239f6c57a2010c60e62f" + }, + { + "table_fee_log_id": 2945308564916293, + "ods_hash": "ff0832dab128b8b19af19089897705c7", + "dwd_hash": "680b948519554f6949c3357910bcbda0" + }, + { + "table_fee_log_id": 2945327284095109, + "ods_hash": "bb4bb948d07a6287b508723e19a7329b", + "dwd_hash": "bcdfd62b05833402faac3bb67067c7e9" + }, + { + "table_fee_log_id": 2945328508340293, + "ods_hash": "8a000ffa426f72814c7737b1ec502f3b", + "dwd_hash": "813745ab543327b98c8f74f0130ff1d9" + }, + { + "table_fee_log_id": 2945343828953093, + "ods_hash": "3c790b6bd75c4d0a68ed94706bf05a8c", + "dwd_hash": "f12fadce707e636f7ef6c8ec16d13224" + }, + { + "table_fee_log_id": 2945355734992965, + "ods_hash": "bb08a3957473fd7e3fa395885e13b32c", + "dwd_hash": "06479e897839b2380801347238e81eb5" + }, + { + "table_fee_log_id": 2945370019399813, + "ods_hash": "82c9dad70749428d56e7fd2bb7ec1dd7", + "dwd_hash": "318423c2e2ff6866d15e327c07fd9bd6" + }, + { + "table_fee_log_id": 2945379788327045, + "ods_hash": "8a01504593a4abba361859ec1328274b", + "dwd_hash": "d81bb240093e3bf418a066858856b967" + }, + { + "table_fee_log_id": 2945387231872965, + "ods_hash": "282748ab213dd803de9984741bd8d42a", + "dwd_hash": "cebc629837964f0cde1bde57895a5376" + }, + { + "table_fee_log_id": 2945412155639941, + "ods_hash": "68145cb7b67b785cc606767cd3166260", + "dwd_hash": "74488e67d6b5553477547f0301f567ca" + }, + { + "table_fee_log_id": 2945415969065093, + "ods_hash": "2e31880abca6cc816e64ab97a996ea9b", + "dwd_hash": "b994a5a666e9fca73849edfc43c03f1d" + }, + { + "table_fee_log_id": 2945462213248965, + "ods_hash": "f8dfbd8bc2e065e7c02bbc89f2a5a286", + "dwd_hash": "b8044911265f235e8865f2529a094481" + }, + { + "table_fee_log_id": 2945465518999557, + "ods_hash": "ba153704284f93c528154c51b3933a03", + "dwd_hash": "3a4c7d5e355e24cadee9a21db6dd1514" + }, + { + "table_fee_log_id": 2945530360367109, + "ods_hash": "e9ab9c006bd53eef83bf57289056eacb", + "dwd_hash": "1e4c428e8b9f43ab5279e39efea11796" + }, + { + "table_fee_log_id": 2945604898736133, + "ods_hash": "f4b4b94f59ef41eb146c4e9b33f27f2e", + "dwd_hash": "5fc216e1d7bc956fd69405c55df3d235" + }, + { + "table_fee_log_id": 2945871138064389, + "ods_hash": "f852cb8d6bf20ebb6b61bbb33a24f7de", + "dwd_hash": "60886435b072d73846f21c214b7f1ec7" + }, + { + "table_fee_log_id": 2945876560381893, + "ods_hash": "c31773f015b04e5334fc8c57567bc5ce", + "dwd_hash": "77f42fd5d6f4691c39c626c3d0659bb9" + }, + { + "table_fee_log_id": 2945876626344069, + "ods_hash": "cbb7298a4126bdc619648b795ee065f2", + "dwd_hash": "a970a70cb0f0dbaac36922805ae18d4a" + }, + { + "table_fee_log_id": 2945894625216517, + "ods_hash": "a5967a9d3ec2c6cc7d234d33ac84c7f5", + "dwd_hash": "5e594f665e0678d12bd1c2b12efe2ac3" + }, + { + "table_fee_log_id": 2946023884032005, + "ods_hash": "6a8f8984a30af0fb6366e0d879518a95", + "dwd_hash": "99e54bbf727a6983d63a2252eafc7a82" + }, + { + "table_fee_log_id": 2946052226074629, + "ods_hash": "17b1b3f094051d689b1b1c39fe022fad", + "dwd_hash": "45146bdb61896d89be252da3c83bfbf8" + }, + { + "table_fee_log_id": 2946055145506757, + "ods_hash": "4122d238851ffa1311122c7eaac1b323", + "dwd_hash": "3c25f27c02895afd200f431cd7cf1c0f" + }, + { + "table_fee_log_id": 2946062771193989, + "ods_hash": "cd223d4d2351d1b6a086c92dad84ac53", + "dwd_hash": "7bb4d1cb9d16ce50a822c1d88062503b" + }, + { + "table_fee_log_id": 2946081282951173, + "ods_hash": "762bf315bbfd0294af65b489e6ff39c5", + "dwd_hash": "f350c4608d6459365bc8493ea3d132ad" + }, + { + "table_fee_log_id": 2946086439618501, + "ods_hash": "5ce183bc78ede4732f598ab5214a0afd", + "dwd_hash": "5dda5deabe0975122fc9703bd57f6b66" + }, + { + "table_fee_log_id": 2946118185600965, + "ods_hash": "726646c97b41191db818c999db443d79", + "dwd_hash": "5bbdfd357e693436588e09895ffa3116" + }, + { + "table_fee_log_id": 2946131746015365, + "ods_hash": "9e5c227896acf79b38212ffecfd0caf3", + "dwd_hash": "f81ac3b875ce16ffab339a34fc44a932" + }, + { + "table_fee_log_id": 2946137103501253, + "ods_hash": "ff50761c2de1900eed16188db1f56b54", + "dwd_hash": "b6aa8193c694cd914d36d574f585ef6e" + }, + { + "table_fee_log_id": 2946138050365381, + "ods_hash": "0b1c43e6b141a5681f6f8d5d27eda9b6", + "dwd_hash": "5208f053796d84f587923e4124b3b42f" + }, + { + "table_fee_log_id": 2946138833127365, + "ods_hash": "c0f82c19f18c87a56cb3b35d6c09ea56", + "dwd_hash": "20d5a9bda1cf4319e8cf72d665c62352" + }, + { + "table_fee_log_id": 2946140342650949, + "ods_hash": "2c7d56ceb8094a1af3dd5aeba3d9ba6a", + "dwd_hash": "19c89b8b7d2281ef15da0a8681f10e64" + }, + { + "table_fee_log_id": 2946147440363461, + "ods_hash": "16ea977ad06cba07d41c73c058be0874", + "dwd_hash": "fd16e1f19154fdcc2951dfd49fbf63ef" + }, + { + "table_fee_log_id": 2946164124125253, + "ods_hash": "4335e3838c6c753393e490cfbb216f2a", + "dwd_hash": "d14fd1bc15188c64a8270be907a7f0ea" + }, + { + "table_fee_log_id": 2946173959735365, + "ods_hash": "5d5b8f2c8dc4e73bd1698e1961c0c720", + "dwd_hash": "006620bb83f003f81118c5bc10b8378f" + }, + { + "table_fee_log_id": 2946177074137093, + "ods_hash": "c2d55412d36ff60a5246de9729f213e1", + "dwd_hash": "af708da1e9bf34ff64354c899c41182c" + }, + { + "table_fee_log_id": 2946179149645893, + "ods_hash": "ffd563abf6c12052606d958ff97fd312", + "dwd_hash": "70fab3bdcbd3244929284f69af5aa4a2" + }, + { + "table_fee_log_id": 2946183647184837, + "ods_hash": "d09c0c82196b046e26d5b8915ca6b587", + "dwd_hash": "afb507f11f45fe2809b6e37d7d393e08" + }, + { + "table_fee_log_id": 2946192223848389, + "ods_hash": "44eec8cebefbfdc65d578204f546d9bb", + "dwd_hash": "895f9a9577616b725f7cd8364a313692" + }, + { + "table_fee_log_id": 2946192288499781, + "ods_hash": "e465412c04d247db9878fdf0a7cc6c18", + "dwd_hash": "3a2fc4f273e0fb3b211bf3c03ccc2782" + }, + { + "table_fee_log_id": 2946197297907845, + "ods_hash": "a9994ce1d4af53b8d9bb3994d6694cdf", + "dwd_hash": "643b06706be671cf112000153284ee16" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ], + "mismatch": 4134, + "mismatch_samples": [ + { + "store_goods_sale_id": 2945219534866501, + "ods_hash": "f1e67065c6f7711e0631932df0a179fb", + "dwd_hash": "3c8219ced35555f4a83e4d684a000759" + }, + { + "store_goods_sale_id": 2945219534866502, + "ods_hash": "e4e8944bc9c29ab83e12d861fcc80b29", + "dwd_hash": "eb10895558a492430c029f2033f34825" + }, + { + "store_goods_sale_id": 2945219534882885, + "ods_hash": "c383e88cc0911244ef937f5694bce10c", + "dwd_hash": "9d4a7b5741cb62e6483fb655b1776ef6" + }, + { + "store_goods_sale_id": 2945219534882886, + "ods_hash": "ef023beb8ac558da9b5bd62bfa4b96e9", + "dwd_hash": "bf65238a47b9a27bedc244b972e03c40" + }, + { + "store_goods_sale_id": 2945219534899269, + "ods_hash": "9388cf6a9503bce923b7dc95f6991360", + "dwd_hash": "ada1295ed48dc1176bb35fecb92f85d6" + }, + { + "store_goods_sale_id": 2945219534899270, + "ods_hash": "57e9afd2c7e63b40d04bbd4f6c8bd57f", + "dwd_hash": "a133ad4f07b91ffdd87e3a91f9f7ec0f" + }, + { + "store_goods_sale_id": 2945219534915653, + "ods_hash": "d1c12e54763758936873d35a8ffa80a0", + "dwd_hash": "dce4740fbe5651fbba1c34edb3ebe849" + }, + { + "store_goods_sale_id": 2945219534915654, + "ods_hash": "5e190e96c9f454f3b51cab14ae9d500a", + "dwd_hash": "093b52359ef2a75230b798d066a97c09" + }, + { + "store_goods_sale_id": 2945219534932037, + "ods_hash": "2910c13250a931a11c12bcbf83b9aa91", + "dwd_hash": "5fc6206aa2fe7e5a812299c9d67e2836" + }, + { + "store_goods_sale_id": 2945219534932038, + "ods_hash": "38b6314875ef051f10a4b5395e11ae30", + "dwd_hash": "c9dbe64959edce5fbaef3afa22acc715" + }, + { + "store_goods_sale_id": 2945223818086469, + "ods_hash": "f83c65155d29c8869ed11a21c8558f21", + "dwd_hash": "817f2d7f341e483f1822349a883ef514" + }, + { + "store_goods_sale_id": 2945223818102853, + "ods_hash": "aa99465f0e5c257321118459b5938901", + "dwd_hash": "83eb07cd20c86c396b9a798308d44236" + }, + { + "store_goods_sale_id": 2945224216397893, + "ods_hash": "2e496875ed2fa90827b57bcfda228c68", + "dwd_hash": "b4b440ad60eec97bf0a1e5a282130a5d" + }, + { + "store_goods_sale_id": 2945266000218181, + "ods_hash": "ff271ac6163703256829b32efa5e9a8c", + "dwd_hash": "55fab48e2b5eb312648bbc0e1c29c7af" + }, + { + "store_goods_sale_id": 2945266000234565, + "ods_hash": "6ba62ff9ad80cb81a1726387ff39f4e9", + "dwd_hash": "669b05bdf3ccef4f99fd8136e3fec553" + }, + { + "store_goods_sale_id": 2945282191984581, + "ods_hash": "c6d834ea0a8af93389f6108edd28ece7", + "dwd_hash": "8224616bfff86d9bd207e95c8b5ce036" + }, + { + "store_goods_sale_id": 2945295731411077, + "ods_hash": "fd3871fa8f5ae3235bcc7eaeca8ed0bd", + "dwd_hash": "5b6f01de0f8dd0e7a008fbd57719eec1" + }, + { + "store_goods_sale_id": 2945295731411078, + "ods_hash": "727bf78335e0df9cab664e99855fe757", + "dwd_hash": "3dd4e57d56799985b3a67202e7fe75df" + }, + { + "store_goods_sale_id": 2945295731427461, + "ods_hash": "2d1fbe6706c2a243d8fe1d9c93dcaba3", + "dwd_hash": "3e5a58ee575c5596b338c1b957b97ab9" + }, + { + "store_goods_sale_id": 2945297080682501, + "ods_hash": "4eec6d20cbe8c0485298f0b924bea38a", + "dwd_hash": "ed3ac9e3c526fe162df3b08fdcdfb230" + }, + { + "store_goods_sale_id": 2945297080698885, + "ods_hash": "d3ece252a5133a2a192cbe14f756bba0", + "dwd_hash": "26421a93ed721a4a0f748b59256d7578" + }, + { + "store_goods_sale_id": 2945308565293125, + "ods_hash": "fde49f42a175a9ea8762d572406b6525", + "dwd_hash": "93dee718b28d6a75985e996a077777fb" + }, + { + "store_goods_sale_id": 2945308565309509, + "ods_hash": "18549e79de342cac5d6a5d6699c6ab4e", + "dwd_hash": "d3e8e2699feb9cb07cee4771297fce58" + }, + { + "store_goods_sale_id": 2945370019776645, + "ods_hash": "ef18e6b629fbb5b6e86cd8886f400574", + "dwd_hash": "682e62c59b3b5078946798527a78764b" + }, + { + "store_goods_sale_id": 2945415970097285, + "ods_hash": "d2c782da065ab20f482db0e25ea8a1c1", + "dwd_hash": "cf9e384a29bfaefd2d8bf8546cbc90ec" + }, + { + "store_goods_sale_id": 2945415970113669, + "ods_hash": "808b7b810d3e3ddcd1538453dee543a7", + "dwd_hash": "8b53fbd736dc1050ec9f6072a85a0632" + }, + { + "store_goods_sale_id": 2945415970113670, + "ods_hash": "277f2ab9f00130837fb0e05a6478e8b6", + "dwd_hash": "fe6e9e6c520b0395abfa3cb6275020fe" + }, + { + "store_goods_sale_id": 2945415970130053, + "ods_hash": "17fd3eadd2e80fbf776e9288d4d6417d", + "dwd_hash": "e5707b39dded041b02238620cf00537c" + }, + { + "store_goods_sale_id": 2945415970146437, + "ods_hash": "1664397eaa5d074758dd78f3fb9422eb", + "dwd_hash": "64c67ecd7d6d52ef216636f5d0326195" + }, + { + "store_goods_sale_id": 2945415970146438, + "ods_hash": "3be6d6d70ed60c8ed3350679431dfde4", + "dwd_hash": "9e52436606bfe5bb6cc39adfb1d1ab1f" + }, + { + "store_goods_sale_id": 2945415970162821, + "ods_hash": "d488d38ae1849339c74373b1085faffd", + "dwd_hash": "081ac6074602b53707df3c28f6447372" + }, + { + "store_goods_sale_id": 2945415970162822, + "ods_hash": "ef82f853b16708ef10d6ffe5c5adf82d", + "dwd_hash": "fc19e465fe16065cb40e65ccbd95ed58" + }, + { + "store_goods_sale_id": 2945415970179205, + "ods_hash": "63f810f927c7da5ad67a9aa9264829c7", + "dwd_hash": "0507770aa44e9e0f9a4dbbb967ea52c4" + }, + { + "store_goods_sale_id": 2945415970195589, + "ods_hash": "43db153e25308718fbec18e90a4177d9", + "dwd_hash": "d31c217c7223722134a118573a034eb7" + }, + { + "store_goods_sale_id": 2945415970195590, + "ods_hash": "c29d9bf3b675cfd0951b6eed9670fb93", + "dwd_hash": "8e51b3ed05a23617c2d932272916e97c" + }, + { + "store_goods_sale_id": 2945415970211973, + "ods_hash": "bf0773e006df6c1b67865cbaa6a752e5", + "dwd_hash": "f8a0cdf52b78611eaa23960f3bad78c1" + }, + { + "store_goods_sale_id": 2945465519409157, + "ods_hash": "ad7b32b5ede80c19d755d23e1b13737f", + "dwd_hash": "262ee24c19e6db2944d4d2a4b6ffe073" + }, + { + "store_goods_sale_id": 2945530363185157, + "ods_hash": "eaf2f8ae4435d134eaa3d2c9f42331eb", + "dwd_hash": "79d1dbd8851939a51eef7a960b00e93d" + }, + { + "store_goods_sale_id": 2945530363185158, + "ods_hash": "2eccc4298f645e121e44ba11075fea1c", + "dwd_hash": "28d96c98e38bbd3e60c6343edd1000d5" + }, + { + "store_goods_sale_id": 2945530363201541, + "ods_hash": "521c6dc5e14c7570f579181d199b7b43", + "dwd_hash": "b2d839411e3789ff256fb76d5b801a83" + }, + { + "store_goods_sale_id": 2945530363217925, + "ods_hash": "91f99d792bb2079f6e340893cd2cdd56", + "dwd_hash": "2aad6fd1cb5882fe2422ebf02f9f7eca" + }, + { + "store_goods_sale_id": 2945530363217926, + "ods_hash": "578296527c5d28aadc194aaeff445b5f", + "dwd_hash": "9d2b1689cc3d86bd119b792c301be14a" + }, + { + "store_goods_sale_id": 2945530363234309, + "ods_hash": "aef392f0eaff234220f251d7becef084", + "dwd_hash": "2540a252e1af220d81d844c7a5d7775f" + }, + { + "store_goods_sale_id": 2945530363234310, + "ods_hash": "6b428fb7818723681d509b7e7829002a", + "dwd_hash": "f83c5c89b72d2bff68ce2ad4355e9c95" + }, + { + "store_goods_sale_id": 2945530363234311, + "ods_hash": "020ea40cc4ac81d3a340a9967463c1b6", + "dwd_hash": "61adabb1b54e58c5e758acdbc7b900fd" + }, + { + "store_goods_sale_id": 2945530363250693, + "ods_hash": "64116c5afd277ea30632e57003253892", + "dwd_hash": "c66d0bacac1085eb5f9688fa058fd80b" + }, + { + "store_goods_sale_id": 2945530363250694, + "ods_hash": "f51b9f929f71b009b23580e53834599e", + "dwd_hash": "b44f5e43b5c4e4ec47652d9ea387fb3b" + }, + { + "store_goods_sale_id": 2945530363267077, + "ods_hash": "193a41aca0271f4db7790800f3227855", + "dwd_hash": "1615f76ef76c678054290e3a15cebc9f" + }, + { + "store_goods_sale_id": 2945530363267078, + "ods_hash": "5d25eef8125e314d1441e3189bb9684e", + "dwd_hash": "6daa5873f6990fd52a185d000f6f7b76" + }, + { + "store_goods_sale_id": 2945530363283461, + "ods_hash": "7290b5bb1b0d368f736ebd1e3a246fbe", + "dwd_hash": "d36a2350189eaf35718018de8f19640c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ], + "mismatch": 884, + "mismatch_samples": [ + { + "assistant_service_id": 2945219533834309, + "ods_hash": "07925820f75b0a810943241624288d57", + "dwd_hash": "714303e7cc8fc19e5e7a0d571eeb8e2f" + }, + { + "assistant_service_id": 2945219534129221, + "ods_hash": "4b97a700ab983a532e633ebc403a95bd", + "dwd_hash": "4b795b322e1a62443e97d643deed808c" + }, + { + "assistant_service_id": 2945238241101765, + "ods_hash": "be2968f6b6597b82b7d8e884a00e2453", + "dwd_hash": "8690e441c2787cf6bb72a196c9a8c1f2" + }, + { + "assistant_service_id": 2945303654697029, + "ods_hash": "f28a48d485812310c64dd3e1c567a872", + "dwd_hash": "32d4e0826b294437413bcc28269aaeee" + }, + { + "assistant_service_id": 2945303655008325, + "ods_hash": "b60273d30b9919f4612663dc6fa4a429", + "dwd_hash": "2e67f30551c07c471099ce21b6249f3c" + }, + { + "assistant_service_id": 2945303655303237, + "ods_hash": "55895dbf0cae0000f9a92be2912e37b3", + "dwd_hash": "dfe52967354bed2ed5e972d0056cde53" + }, + { + "assistant_service_id": 2945303655680069, + "ods_hash": "eec91207be62f23a71df01a95857c728", + "dwd_hash": "6bfd47b8348671e394e116885ecf8dd3" + }, + { + "assistant_service_id": 2945355735320645, + "ods_hash": "6aae2a4571474979ebf7772479593159", + "dwd_hash": "899a53f17f0334677c9e03e91f8c6e44" + }, + { + "assistant_service_id": 2945412155934853, + "ods_hash": "101a69964bda9b6e87ddd644597929e8", + "dwd_hash": "b580d4bf05753f62b55a2787d3cd62b7" + }, + { + "assistant_service_id": 2945415969343621, + "ods_hash": "d763088de5b6195955c6d8aa37979a0e", + "dwd_hash": "560399497858d8ca2c416959d6c0ff33" + }, + { + "assistant_service_id": 2945415969654917, + "ods_hash": "b57744531619ba1e2bf9c2fe1fe6a3f8", + "dwd_hash": "9103ddd1f08fd9b69e147da75f5c8d10" + }, + { + "assistant_service_id": 2945530360645637, + "ods_hash": "168a5466f3d9ab9c3e400bf5f020091b", + "dwd_hash": "8262fd019f07c4bbd220907e73d0da16" + }, + { + "assistant_service_id": 2945530360940549, + "ods_hash": "0ff4428be5956bfe36b6bcfa16cde38c", + "dwd_hash": "880b5aa85f8860812ab2a2e988c1ec4e" + }, + { + "assistant_service_id": 2945530361235461, + "ods_hash": "5a6fce5c0ea2df5ac1eb8107552f8d27", + "dwd_hash": "3417c11ae1694409319c9e90f30a950a" + }, + { + "assistant_service_id": 2945530361530373, + "ods_hash": "d056944fa840ecfa2182442a622b3fb4", + "dwd_hash": "1aae19cd5ff0b1ab20d4179c8e14f310" + }, + { + "assistant_service_id": 2945530361825285, + "ods_hash": "3a0fad7a48d1f96fb98152d337c50549", + "dwd_hash": "83c60118be29029a374245721cd22aab" + }, + { + "assistant_service_id": 2945530362120197, + "ods_hash": "3efe4fff3bd0cd3c1273c4d8f1521962", + "dwd_hash": "5ba93ff437dba36f9e6a76c308fd9f5d" + }, + { + "assistant_service_id": 2945530362415109, + "ods_hash": "2771107cbaac2d0a5972fe799005ab7d", + "dwd_hash": "455e972e0b8e0e1a5d62ae5c4dad82c9" + }, + { + "assistant_service_id": 2945530362710021, + "ods_hash": "a226464ef81c7e53621fa5ab08719b99", + "dwd_hash": "a76065534bab8a0bb846cda1c042aded" + }, + { + "assistant_service_id": 2945604899047429, + "ods_hash": "faf1ca8b78121a2998b5774ee6194c85", + "dwd_hash": "45ee4551175df1927e25aa5c8b10d0af" + }, + { + "assistant_service_id": 2946222559741957, + "ods_hash": "5d8513bae618ba444bbba6151157b5a2", + "dwd_hash": "748099531c390386a9e040d73439badf" + }, + { + "assistant_service_id": 2946349092423685, + "ods_hash": "f389e178135b7cf717bdb26631e2a551", + "dwd_hash": "e354c8a46db4f0a2f01ab7eb583ebed3" + }, + { + "assistant_service_id": 2946467797501893, + "ods_hash": "ddc0572b7849c118d2f59c4bc47077a1", + "dwd_hash": "0486eb4c7b1d5fb4655713369c47a1b5" + }, + { + "assistant_service_id": 2946467797829573, + "ods_hash": "609751db77110e08cf0856eea743f7a6", + "dwd_hash": "247789373a8150a7b70862257262d4b5" + }, + { + "assistant_service_id": 2946543960328261, + "ods_hash": "37687f43d4e80238ed9e17e4fb640019", + "dwd_hash": "f9a3f5a982baa6fe63e5dac77ae57d47" + }, + { + "assistant_service_id": 2946589255075845, + "ods_hash": "00e2102af2a3bce8cfaf54c6698c0963", + "dwd_hash": "8344041cf6732040a1d5ae65da0bb883" + }, + { + "assistant_service_id": 2946589255387141, + "ods_hash": "49455b89a81a0f87ed618d39f9876c77", + "dwd_hash": "5acf9d0b8f4be94184d5622911bf3a0a" + }, + { + "assistant_service_id": 2946626668759109, + "ods_hash": "a2a3f189df2da41b423f8d4e33e8533f", + "dwd_hash": "0f41a70f92a6f929cf78e1cc61f56296" + }, + { + "assistant_service_id": 2946627706013637, + "ods_hash": "10782852aba4de382ccdea9e5e76332f", + "dwd_hash": "5141f75d57997a47b3e1873e525e7cf2" + }, + { + "assistant_service_id": 2946627706341317, + "ods_hash": "12569687187b86afd680a2815119b693", + "dwd_hash": "0a0e203f810f5d95a2f01cceb4ac0fe6" + }, + { + "assistant_service_id": 2946627706652613, + "ods_hash": "c65096851f3bc50de58796e8173ef720", + "dwd_hash": "16f189ad92949f5297ee17b2de5819fd" + }, + { + "assistant_service_id": 2946627706963909, + "ods_hash": "38cf9d3467428fabff1b3be40a96fcc5", + "dwd_hash": "5058e11ba4bacfdd32f916e3531e04d6" + }, + { + "assistant_service_id": 2946647859169221, + "ods_hash": "68e45e6298b3c464357a7b0c7816303b", + "dwd_hash": "88e0cc88da1aeeef89189466b6db2552" + }, + { + "assistant_service_id": 2946647859627973, + "ods_hash": "b2236ecbed5627ed58b24c3c40a1e1c1", + "dwd_hash": "fe2be825299bc6ab8d65bbf72573086c" + }, + { + "assistant_service_id": 2946660130637957, + "ods_hash": "b68ab33c4364055808e918f9f1264d1d", + "dwd_hash": "95f0382f04be8ad93aaba2692ad575cb" + }, + { + "assistant_service_id": 2946710503245829, + "ods_hash": "9d88acccd4c0ea861f92ef7b19a91265", + "dwd_hash": "eb1a2130387c52bc3e2f9805d0bab492" + }, + { + "assistant_service_id": 2946711000565701, + "ods_hash": "fa1eec91f06a95247a98c82ac37eb2ef", + "dwd_hash": "a8841d931662061615ef0863ba54dfac" + }, + { + "assistant_service_id": 2946711833348165, + "ods_hash": "8fa6d9705430615132e0cc1fdb2b6d32", + "dwd_hash": "ddf8713a66f96560defe8018b7ca1f51" + }, + { + "assistant_service_id": 2947191166011333, + "ods_hash": "7c81d43eb7cde1fe908d08e3199110ab", + "dwd_hash": "ee0e6a02d4e5b6d3821c7de5fb582ec3" + }, + { + "assistant_service_id": 2947191166322629, + "ods_hash": "217caeed2e562d1d2523a2289eb84c97", + "dwd_hash": "4c8b0940cf321b714c483747b29b6292" + }, + { + "assistant_service_id": 2947191166650309, + "ods_hash": "cce8a379937cb1c12e9059d4374e6bd9", + "dwd_hash": "7f9e73151ebc62ddb854440678d7b8d4" + }, + { + "assistant_service_id": 2947284155811973, + "ods_hash": "ad7ebdb6090899a5c075c8ff70ac9edf", + "dwd_hash": "3103d6c13342e7f420478c15a3e5a81d" + }, + { + "assistant_service_id": 2947284156139653, + "ods_hash": "3bd167f4cd1e79feb6a6613006c50b07", + "dwd_hash": "c13a943040b208fa41e4819f4cd8d5d8" + }, + { + "assistant_service_id": 2947284156450949, + "ods_hash": "29d0fd38d551fc27546bcc5d4f3322c8", + "dwd_hash": "45245e6650518aee3860712c1db03ad8" + }, + { + "assistant_service_id": 2947284156762245, + "ods_hash": "177dbf2351903fa80c2357d9f763bb88", + "dwd_hash": "d60a5f2973ddfb5442ff0ae520b8cb82" + }, + { + "assistant_service_id": 2947686255562501, + "ods_hash": "60229de3864e1e681d37686c725b31f5", + "dwd_hash": "c06a62c823963d76586b903b7ee2e576" + }, + { + "assistant_service_id": 2947731000036933, + "ods_hash": "43f1e4ccbdf306b60a70bb5ec9bc8003", + "dwd_hash": "4f595aed5b9c6a8d1608d74047e678ca" + }, + { + "assistant_service_id": 2947806110797509, + "ods_hash": "70c71c139de9291659b5303ae1e9a818", + "dwd_hash": "f5831b2c53d17dbc736de424fe594de1" + }, + { + "assistant_service_id": 2947852922539653, + "ods_hash": "d21b703da2e69f35c53a95d106670750", + "dwd_hash": "754af9238e9a2dba758e700dfc26ec5e" + }, + { + "assistant_service_id": 2947853797494533, + "ods_hash": "acc32be4f2fc64e02ea8c59f7587e1d0", + "dwd_hash": "5149f1dadd2a0467c1320f0514ea1119" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ], + "mismatch": 2838, + "mismatch_samples": [ + { + "redemption_id": 2945209281808517, + "ods_hash": "a0a17d1d42a4dfd97e0b1db83397042e", + "dwd_hash": "20aca3e1ed406f4c62d8880c7b897240" + }, + { + "redemption_id": 2945223818168389, + "ods_hash": "8064cc6b325142f7da0bb70b983324ae", + "dwd_hash": "c8ca36903e2e3e248008ef86b759e984" + }, + { + "redemption_id": 2945244232206277, + "ods_hash": "3ac03bc028669033f7a71fe88aa3d516", + "dwd_hash": "5e14b7ca4504f1de8817fe05d6af45ec" + }, + { + "redemption_id": 2945250915108805, + "ods_hash": "26fd935c2b1fd4658b25170fccff55d6", + "dwd_hash": "37c0f2a7a1f8592c034299777b4139c7" + }, + { + "redemption_id": 2945266000300101, + "ods_hash": "9e4d9554d3e9d1af6c87c8a5435d1f63", + "dwd_hash": "e52d211bc01fa260f85fb96a4465d058" + }, + { + "redemption_id": 2945296564750405, + "ods_hash": "db7e43304d6334c2c43b9e5d15924dc4", + "dwd_hash": "e1afe4916fedda219ff4794667e3c2ee" + }, + { + "redemption_id": 2945296564750406, + "ods_hash": "197496f2e36d472f778323421b08e1f0", + "dwd_hash": "aa97446609c01d2efb35726e3bd8c6f9" + }, + { + "redemption_id": 2945296564750407, + "ods_hash": "24944a7f1689ca96f1f0bcd50404ca2c", + "dwd_hash": "b8b92fe204a906b779565aabc840eaa3" + }, + { + "redemption_id": 2945297080764421, + "ods_hash": "a67a9867e4515debf63a6169d94310cf", + "dwd_hash": "3e5eda2035aa7a2b63e22e257a34493d" + }, + { + "redemption_id": 2945297080764422, + "ods_hash": "585e84eeba78bdca01115de2821b2f3a", + "dwd_hash": "38277058bdc5fa3abed013f911900446" + }, + { + "redemption_id": 2945297080764423, + "ods_hash": "4f29bb25ac86f24712b81b4ccc97b772", + "dwd_hash": "6a744e004b755106902adde4344cb562" + }, + { + "redemption_id": 2945297080764424, + "ods_hash": "577eb319687eb3d6bb806376ec6a9ddf", + "dwd_hash": "02a8de8373746dd27974355c53d55473" + }, + { + "redemption_id": 2945327284488325, + "ods_hash": "75d61950f15a20c0cd4bb1251bdd5065", + "dwd_hash": "16d40415c645de948fb313a4e4ce5880" + }, + { + "redemption_id": 2945328508700741, + "ods_hash": "46c0aa4af2b8a1dfabbc9ffffe6be29c", + "dwd_hash": "7f9f00024a23f5c85a41c98232fad1f5" + }, + { + "redemption_id": 2945328508700742, + "ods_hash": "2bd08c78bb61d324d11545f5e3834249", + "dwd_hash": "42d06a1df0a17ffb64c35a85e110e63f" + }, + { + "redemption_id": 2945328508700743, + "ods_hash": "5eef62aae18fb0078042591b104c4909", + "dwd_hash": "3c6850f7acf2fc6a48b2fd144fb963ac" + }, + { + "redemption_id": 2945328508700744, + "ods_hash": "045f88012a6beb79d77aba59c223e61a", + "dwd_hash": "b583f7dfe6c502fbca075be5dd225ecb" + }, + { + "redemption_id": 2945343829329925, + "ods_hash": "0224e73f677915f8cbaa54b01dc680d6", + "dwd_hash": "6614c0aecc6810ff226a5eac3e83c6e7" + }, + { + "redemption_id": 2945871138490373, + "ods_hash": "701cac7ef12099f23dc7dd9be63fcdfc", + "dwd_hash": "c6f651927311819e06faa0279f37d9bf" + }, + { + "redemption_id": 2945876560742341, + "ods_hash": "13354ae8ea044d3f08956d843d3f8ed6", + "dwd_hash": "2bfa33520407dce8db89a3df463094a2" + }, + { + "redemption_id": 2945876626737285, + "ods_hash": "110d925ad94e49ee08e457e62d2f0425", + "dwd_hash": "1000624003257e5458907c321d8c2f0f" + }, + { + "redemption_id": 2946023884425221, + "ods_hash": "4d031df7f017153892dc57bf4bdaa569", + "dwd_hash": "383dc584b46f6f5115891e31685cc53f" + }, + { + "redemption_id": 2946055145883589, + "ods_hash": "1b3c2ec0f1e9096f02d03e6ec451c66d", + "dwd_hash": "30b765ce2eafd07bcfb92b7a601ff98a" + }, + { + "redemption_id": 2946055145883590, + "ods_hash": "4b39b33fbc09fd87767ecfedcbdbbe86", + "dwd_hash": "a27e8ed06d38b8b7c66dfd2e770fdc6d" + }, + { + "redemption_id": 2946062771652741, + "ods_hash": "6cf4d821e75d75b0a6b61f60e8c5604d", + "dwd_hash": "425789116699c33e884b545a0569c5aa" + }, + { + "redemption_id": 2946081283311621, + "ods_hash": "b34dec210fcd5a86637d60cf77866038", + "dwd_hash": "638e87cd068b45a96d13b5f7a6865a70" + }, + { + "redemption_id": 2946086439995333, + "ods_hash": "c1fb689dbd273d132fd57825525741c1", + "dwd_hash": "caa97dd07cabbc6686599f1e23b9ca4c" + }, + { + "redemption_id": 2946118185977797, + "ods_hash": "704ba650bce0623127ad9e719d03bfdc", + "dwd_hash": "c414d04504673896ab1c753dbb8f4301" + }, + { + "redemption_id": 2946131746392197, + "ods_hash": "cc03e3c3f6389544364b05f62d90dc55", + "dwd_hash": "f7c11a87a8595861b21d1afb158449af" + }, + { + "redemption_id": 2946137103910853, + "ods_hash": "6d4e5029edc5dbb59cd2a6e7d18f50c1", + "dwd_hash": "79b5672a7881c05cdadb941885beb900" + }, + { + "redemption_id": 2946138050758597, + "ods_hash": "274d053d3ed817220c7a8c433cc1a9c8", + "dwd_hash": "0fb6a261a234acefc3fd96ef21da5e0f" + }, + { + "redemption_id": 2946138050758598, + "ods_hash": "cd28a0bd4c6187f35fea10640a279477", + "dwd_hash": "e1ea02b2f6fafe724ffcd14e332ac437" + }, + { + "redemption_id": 2946138833717189, + "ods_hash": "2d7c8abf42ef538ef0ada58062aae2b3", + "dwd_hash": "de6578aa832451c97153baefed2dace1" + }, + { + "redemption_id": 2946138833717190, + "ods_hash": "a0de79b6982460cbac752e0e8b4066e9", + "dwd_hash": "95509b8f0ca1e6ebb57a913325ce0976" + }, + { + "redemption_id": 2946140343076933, + "ods_hash": "86141e4adadc9f857e75363721a8112f", + "dwd_hash": "cb5f760a1cb5073a6397a3af8fff12cb" + }, + { + "redemption_id": 2946140343076934, + "ods_hash": "9e1c934abc959a41e141c7a12a6a98dc", + "dwd_hash": "e59296d89377d1591d453311824f8682" + }, + { + "redemption_id": 2946147440773061, + "ods_hash": "1a296cb2e185b9b2eebf53a8e770a3e5", + "dwd_hash": "279a07858641db87b3ec9cc3c2f31673" + }, + { + "redemption_id": 2946164124485701, + "ods_hash": "cb1ac0e2479df1aa41704936caa1f66a", + "dwd_hash": "449e7ffe10633d104e5e2829b9154851" + }, + { + "redemption_id": 2946173960423493, + "ods_hash": "c544ec2ab6380fe5b5eebb9e0a51eb50", + "dwd_hash": "06265040692d6688d34ebd1551b0947d" + }, + { + "redemption_id": 2946177074546693, + "ods_hash": "c890d1359dca3a0a2d0afa90f5deff3c", + "dwd_hash": "c3c0b0280fe7eca32b660f8fabce4159" + }, + { + "redemption_id": 2946179149989957, + "ods_hash": "cce60b71e829fb875ab8b8c2a79f72d2", + "dwd_hash": "e2bf19c034f705a9368c09556b8a78be" + }, + { + "redemption_id": 2946183647610821, + "ods_hash": "ff8c895a72fa23c612b7bb7f4738973c", + "dwd_hash": "1ccc7716dbb5ebd044ad7863f4948f24" + }, + { + "redemption_id": 2946183647610822, + "ods_hash": "7a2ec330779a5e33744427fe0107944e", + "dwd_hash": "565f3b1822a22c832c0e3701aea30ee6" + }, + { + "redemption_id": 2946192224241605, + "ods_hash": "069e0110159d2775cbf74287fdda51fa", + "dwd_hash": "79582e0464523f091a5817ca45c53456" + }, + { + "redemption_id": 2946192288909381, + "ods_hash": "5cc3f50fbe28b5ecadf4c1401e164e58", + "dwd_hash": "70d03d71ca7d466df0bf02a3b36d4928" + }, + { + "redemption_id": 2946197298301061, + "ods_hash": "a0e5d8ef8239d10fd4a3dabe68fb25a8", + "dwd_hash": "d25d3042aeff675a27df2d14edc8d6b8" + }, + { + "redemption_id": 2946201068816389, + "ods_hash": "f536f54409ce0cdbc80c32769202fb0b", + "dwd_hash": "c89eb4039dd930d40f8395e288d86dbd" + }, + { + "redemption_id": 2946201150932933, + "ods_hash": "c5c1362ede2aa10cc679da50c34f5619", + "dwd_hash": "52c7bcee123469dae9547a8ed8153e12" + }, + { + "redemption_id": 2946201201346629, + "ods_hash": "5c8a625b58cdead334b3088a023514fc", + "dwd_hash": "66a8830e587e343ca602b5839973905a" + }, + { + "redemption_id": 2946202334758981, + "ods_hash": "6569ae56fcea8f63c8be8a1dba45b270", + "dwd_hash": "9bfe93c632016401d96a7b0bfdf5a5a0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ], + "mismatch": 2843, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2945225726036101, + "ods_hash": "1f5881dafc10021fdc9577274ea4f775", + "dwd_hash": "b1480dfd99e76b04e3a6e0fd769cde42" + }, + { + "platform_coupon_redemption_id": 2945238682650693, + "ods_hash": "0fad5594ecbee5e6344076118323b151", + "dwd_hash": "b45532b480f9f8b6bd711586200fe7b8" + }, + { + "platform_coupon_redemption_id": 2945249283967045, + "ods_hash": "8df2657a0954a78866b0a646653870f0", + "dwd_hash": "2d9ce26269cba948b67e3f520f2449c0" + }, + { + "platform_coupon_redemption_id": 2945268112017541, + "ods_hash": "5a2281ef041461061168d1adc99a090a", + "dwd_hash": "d315860de6f9c659fe9fd403a7ffd083" + }, + { + "platform_coupon_redemption_id": 2945298505140293, + "ods_hash": "c1266ac7d089aa775388cd5f6edc81b4", + "dwd_hash": "c7d67ed2771a38a4ac96150710a3e403" + }, + { + "platform_coupon_redemption_id": 2945799155042373, + "ods_hash": "3f20208f58b1619742d6611e36ff8c3c", + "dwd_hash": "9bec719c4834352809fca93594cae014" + }, + { + "platform_coupon_redemption_id": 2945799674185669, + "ods_hash": "480ab17c5927a1c0ae73bb432b9fc8ba", + "dwd_hash": "db75eb95b786eb22e22f8538091a3802" + }, + { + "platform_coupon_redemption_id": 2945802920167557, + "ods_hash": "cbc0c5688b7ec8592a76201f18b0b703", + "dwd_hash": "7b651aa86a6ef5d16140885666563656" + }, + { + "platform_coupon_redemption_id": 2945905197090949, + "ods_hash": "536df6243e4fc30fa652f016a41b4364", + "dwd_hash": "237eb1be209d3b941b15610974941188" + }, + { + "platform_coupon_redemption_id": 2945935775893445, + "ods_hash": "eb6adcc463d508406cf73baa4089049c", + "dwd_hash": "d1cd33f9babed50f16a9cc09415cda55" + }, + { + "platform_coupon_redemption_id": 2945959626115205, + "ods_hash": "3aca735d0175931bf49258fcb0c565bd", + "dwd_hash": "7c985c25e7caf219e816a3b02efc373f" + }, + { + "platform_coupon_redemption_id": 2945995948033989, + "ods_hash": "d4ded644399a7be48fdd05b85632780b", + "dwd_hash": "0422841e322714c4628dc0562bcb41a9" + }, + { + "platform_coupon_redemption_id": 2946003425118277, + "ods_hash": "e46712779f4fca40c82e0efa80d0bda0", + "dwd_hash": "7662f5a6e1ecc3bd7c6ba455a1368f7b" + }, + { + "platform_coupon_redemption_id": 2946015233656773, + "ods_hash": "4e37782464f85a78b3881a3d762a7235", + "dwd_hash": "0eea366a4fa80a987189629108fc9bbe" + }, + { + "platform_coupon_redemption_id": 2946016501417925, + "ods_hash": "3523c2ad9c69674bdd91d33ac20a6804", + "dwd_hash": "bca27b1cb99be6326baa7034f7162cf4" + }, + { + "platform_coupon_redemption_id": 2946020254615557, + "ods_hash": "d6ed2c82ed7e89066a44873c01e836ad", + "dwd_hash": "4eb23e9815e6d8abc06d2847b625cad7" + }, + { + "platform_coupon_redemption_id": 2946020346202117, + "ods_hash": "82482a7b9976195972462dc8cd085f77", + "dwd_hash": "ddc50430fa6d73c1e4dd6c6150c27300" + }, + { + "platform_coupon_redemption_id": 2946026859628485, + "ods_hash": "3eb068a4246ac350081860df25da49a7", + "dwd_hash": "4304ba06c996daf62e25678092460c42" + }, + { + "platform_coupon_redemption_id": 2946052811491461, + "ods_hash": "4f2c37cbb5cba14a94be021aeadc2cd9", + "dwd_hash": "7f01ea892ee5dbd93027a8969bb1919c" + }, + { + "platform_coupon_redemption_id": 2946052952967301, + "ods_hash": "15e440bc07797b5d2a8dd7cf1697d143", + "dwd_hash": "a2bdc2bfd4b47dda3cdbd9aef3cd76d8" + }, + { + "platform_coupon_redemption_id": 2946059208689669, + "ods_hash": "c6b03b9321522257f8833d447b5fafad", + "dwd_hash": "b93556d594d662625cd5ebd0f2a48f20" + }, + { + "platform_coupon_redemption_id": 2946065496115141, + "ods_hash": "332e3eb92106098e2e5d06b7a17dbaf7", + "dwd_hash": "e28c1d84d207727acbbf1ecfea4c2c97" + }, + { + "platform_coupon_redemption_id": 2946066163910661, + "ods_hash": "a277d3c31cefde4eb8aa73402f6950cd", + "dwd_hash": "f03d676e4bb499820fd0c3c7dd77d1ed" + }, + { + "platform_coupon_redemption_id": 2946066285889477, + "ods_hash": "3c112351a15b191af124f9f7716204f9", + "dwd_hash": "e728464d3d4cfdc189b7603bda2540e0" + }, + { + "platform_coupon_redemption_id": 2946076810676165, + "ods_hash": "63e0caaf6a5e2d603e5fcad4de45324c", + "dwd_hash": "8a89d1541628657c7905c00b0964ad8b" + }, + { + "platform_coupon_redemption_id": 2946078850418821, + "ods_hash": "aea9c4ada38bcf0dcb008b04629c601a", + "dwd_hash": "deeb2264dc807bb8be7dcc3266f18689" + }, + { + "platform_coupon_redemption_id": 2946079880300677, + "ods_hash": "1364cb49df2b7b78aa51bf1ecf6a9f41", + "dwd_hash": "78336d0a143053a3f426946bc646dd88" + }, + { + "platform_coupon_redemption_id": 2946081212352645, + "ods_hash": "7e3117cef529863363ebe123131c5393", + "dwd_hash": "30a346b015a195160ce8a60ff1b68e06" + }, + { + "platform_coupon_redemption_id": 2946084582377477, + "ods_hash": "8063c618aeb1b4d8c5f282166e949092", + "dwd_hash": "6f5852da9cf7659695913e01c395540c" + }, + { + "platform_coupon_redemption_id": 2946088268105733, + "ods_hash": "59a8aa0921f78c1d163c5a1ddd79896e", + "dwd_hash": "a450eb126c4e72ee5d96eca31a534ff3" + }, + { + "platform_coupon_redemption_id": 2946102690449349, + "ods_hash": "c3240895f0a93d1ad0efd8c1453c6d0c", + "dwd_hash": "5cfdc31700a74780b85c5c872d4f7e38" + }, + { + "platform_coupon_redemption_id": 2946105090967557, + "ods_hash": "9662fa3e84a853f05034d02492b6dfbd", + "dwd_hash": "2aeb118dbc482fd0992d767c661f38a2" + }, + { + "platform_coupon_redemption_id": 2946108414101445, + "ods_hash": "3544e2ebba51da45b832ff25bfdd0ee3", + "dwd_hash": "c6966a1aab22dbdf1ad2fbde8cc3ac5d" + }, + { + "platform_coupon_redemption_id": 2946117609375749, + "ods_hash": "0304b92e8209617bc09eb13ec5629cf1", + "dwd_hash": "4ace6dba0f668075061322d6e8486468" + }, + { + "platform_coupon_redemption_id": 2946120458913925, + "ods_hash": "9bef39e1775daff15f079d35d2fd4ef3", + "dwd_hash": "dd00f5e186cc786c59ced60cdba0e557" + }, + { + "platform_coupon_redemption_id": 2946131632752709, + "ods_hash": "be5592a7565d25f2a3fa17e75e7ee2b4", + "dwd_hash": "d036d7eea8aeefdf925c5f10119cad10" + }, + { + "platform_coupon_redemption_id": 2946132564363333, + "ods_hash": "8f7a375ca8d79e59b6075986fba57d6c", + "dwd_hash": "7e48cb28f6bd17df98dfbf78233616e4" + }, + { + "platform_coupon_redemption_id": 2946132785301637, + "ods_hash": "e0624da0e59b78be286dcfa4145ea403", + "dwd_hash": "d1ba0360af9bc3a53bf62c550efd2fd8" + }, + { + "platform_coupon_redemption_id": 2946139909834693, + "ods_hash": "e014c095d7eb6393ad92717632c9def7", + "dwd_hash": "5fbe8e8d80de4820c9efc3fcd63bdeb7" + }, + { + "platform_coupon_redemption_id": 2946141659170885, + "ods_hash": "68c48803e9f74971dc15af1a0f0dd6a5", + "dwd_hash": "f5b6304566f8c027ed3dba72b5c06155" + }, + { + "platform_coupon_redemption_id": 2946141762389957, + "ods_hash": "cbd1413906028b14a5bfc6cf5553643b", + "dwd_hash": "86d464222a30ff397d8f037a384cbda4" + }, + { + "platform_coupon_redemption_id": 2946143247009733, + "ods_hash": "bff392cc0ca1b69a127f85adf4b9c5df", + "dwd_hash": "f7af573d36677de8a83d346ed00d21ba" + }, + { + "platform_coupon_redemption_id": 2946147300591749, + "ods_hash": "b0b70bdd52af0d256538d3c6958e1eca", + "dwd_hash": "315fceded52f896a7377c0d06ce4f64c" + }, + { + "platform_coupon_redemption_id": 2946147960522821, + "ods_hash": "65d5ff48e2fcfa5044805732b8b38a47", + "dwd_hash": "7ed223ddd15eba2e6e64dc18953544f0" + }, + { + "platform_coupon_redemption_id": 2946150615254981, + "ods_hash": "3fbceb919e22b3fbc90b49217a888b01", + "dwd_hash": "a167e9d0c06a7af3591d0705e3e97306" + }, + { + "platform_coupon_redemption_id": 2946160185591941, + "ods_hash": "6f67fe72c0f9090acc8a60b095129ed1", + "dwd_hash": "4d252bba7f04098cdfaa0741f15811a7" + }, + { + "platform_coupon_redemption_id": 2946165001439301, + "ods_hash": "26d59f767cb5e17e85232a2f08b1f1f9", + "dwd_hash": "13d94b2c71a9fbd7b6b1ce9b33a2d698" + }, + { + "platform_coupon_redemption_id": 2946168538761221, + "ods_hash": "93bcb35eb9116112141c8ce4da2095ba", + "dwd_hash": "8954d07c0a6a67ecee6660894d3ea27b" + }, + { + "platform_coupon_redemption_id": 2946173121824837, + "ods_hash": "35b70da1a40da1ae5ffd5750a6bb9eaa", + "dwd_hash": "be525d4db2695fa7acb148b6143128f7" + }, + { + "platform_coupon_redemption_id": 2946174131980357, + "ods_hash": "025a95bb9ad84014053ba1aafff153bd", + "dwd_hash": "5aad406ee70412b1ccc2bc10e14be669" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ], + "mismatch": 3999, + "mismatch_samples": [ + { + "payment_id": 2945209278646405, + "ods_hash": "474ad02c89af8701c692f75387e97548", + "dwd_hash": "eb0e92c591080501ae5cd5a846772b1d" + }, + { + "payment_id": 2945219528968261, + "ods_hash": "241efeda4b92a59e91e7aae399afa021", + "dwd_hash": "993aa22a3842ac93db8bb0645877ee94" + }, + { + "payment_id": 2945223814613061, + "ods_hash": "5071f6afb0d52137db01d074e13488c3", + "dwd_hash": "efa536e1b1e79489a11378c593222ac2" + }, + { + "payment_id": 2945224213252165, + "ods_hash": "41d0351e136220dbe88805972797a868", + "dwd_hash": "21d1f1ff16ebcfac993da148f914774b" + }, + { + "payment_id": 2945238234974149, + "ods_hash": "b4a89ea77e0a636a4f4c11fc4da85399", + "dwd_hash": "fef654521ea3ff8c659031c5943c02a6" + }, + { + "payment_id": 2945244229175237, + "ods_hash": "a436ef9aa0781714cf1f7b21a6ecc3b0", + "dwd_hash": "c9a08ae8abe74e5e40f2e08b0762222f" + }, + { + "payment_id": 2945250911897541, + "ods_hash": "221453b951556074618b750d61aea435", + "dwd_hash": "94c6e02d8ded55529145dbd379879c90" + }, + { + "payment_id": 2945265997416517, + "ods_hash": "b0a74e025128b93e2cde39d94f5eeb4a", + "dwd_hash": "1ad7795fa2646b232f1e094737c534bb" + }, + { + "payment_id": 2945282187593669, + "ods_hash": "8ab2e36eb34ce5c7b27855c4d46e6d5d", + "dwd_hash": "0514c107fc0194157c38db6d2446e489" + }, + { + "payment_id": 2945295728101509, + "ods_hash": "b3439c0a63296b5d631e0aa39b69eead", + "dwd_hash": "2e8a76d419a23debd9af778842eb93fc" + }, + { + "payment_id": 2945296561752133, + "ods_hash": "45b5f8f5c25010343a5009476fb4f89c", + "dwd_hash": "bb56d6c3cb1064e9294fcf36ae270eff" + }, + { + "payment_id": 2945297077487621, + "ods_hash": "c34a7725b925dd8b2fc73727ba385e22", + "dwd_hash": "def92c4a191169dae99ee23a7db21e6a" + }, + { + "payment_id": 2945300261996549, + "ods_hash": "f42f12d1b7d35ed0820ebdf6b03054e7", + "dwd_hash": "f94835c2dd3ef2d9a7386e0799c07762" + }, + { + "payment_id": 2945303651780677, + "ods_hash": "cd242a7a58f2bce85528dfdc537d0fbf", + "dwd_hash": "7aaac0eef737b7f104d411516011cfc5" + }, + { + "payment_id": 2945308562540613, + "ods_hash": "2d3dfe16d7cd3b42a1c0105c69e76cc6", + "dwd_hash": "4a7d81daa4ad4ec5d755f921a2a1fef8" + }, + { + "payment_id": 2945327281211525, + "ods_hash": "8868176563a42a782ef5194c5d1149c0", + "dwd_hash": "4e16c1f3e4223ca7fe02b3757c60fafb" + }, + { + "payment_id": 2945328504113221, + "ods_hash": "d3ca578a1c3b1b8652ccf2aea31b2e74", + "dwd_hash": "389aac78c632cacfb4ffe79647b145b6" + }, + { + "payment_id": 2945343825004549, + "ods_hash": "9649b0f70b45261238653424ee4bf559", + "dwd_hash": "0cfbadd7f2fd306ca1875f194cf8a6a4" + }, + { + "payment_id": 2945355731650629, + "ods_hash": "c90adbbe9c6ef6b185ad587545318d1a", + "dwd_hash": "451fc918dd53f5d95b48e06df02c075a" + }, + { + "payment_id": 2945370016761989, + "ods_hash": "f53c4c0a27ab1df0ecd7f77515e4162c", + "dwd_hash": "486d7f94cc204a63fb75b7fa346c48e3" + }, + { + "payment_id": 2945379785541765, + "ods_hash": "d83a356ee0c635a91c6f4f493841ad24", + "dwd_hash": "580822e1f83f0a3eefc942e3b8a19edd" + }, + { + "payment_id": 2945387229169605, + "ods_hash": "e5aeed850db295b64fbb71efac0fee39", + "dwd_hash": "9f0590a919fc7a0d21dad1e3d01c7b9b" + }, + { + "payment_id": 2945412151953541, + "ods_hash": "bc26a3506665ba4d4d8b59766ebb8493", + "dwd_hash": "f67ce07b432946b692488a1d55da756d" + }, + { + "payment_id": 2945415965427845, + "ods_hash": "5a80b5da600632cb15af732cac2c8c4a", + "dwd_hash": "9379e9047e3cc73546a2315359073c36" + }, + { + "payment_id": 2945462210758597, + "ods_hash": "e5541029461062eea55b8e19922e6007", + "dwd_hash": "6750d2f963b00ee60356dc14ed2d46ca" + }, + { + "payment_id": 2945465516296197, + "ods_hash": "117a5e987266a0c8cae5d8c382add0a7", + "dwd_hash": "67a9ffb198bf58e94ae43a64d2608f24" + }, + { + "payment_id": 2945466617333829, + "ods_hash": "5ae5529c702d74b1cf55aed3743d176f", + "dwd_hash": "6ed1ee675d83f4066fa15700b1563e4e" + }, + { + "payment_id": 2945530354812933, + "ods_hash": "787cd21b794135dc52e7d417f4ea07cf", + "dwd_hash": "013da9aa1999504b9653bbbe5f3c0d6c" + }, + { + "payment_id": 2945598743005253, + "ods_hash": "0b8bf9af2a18cc28bb16edb2d5297825", + "dwd_hash": "76512477280d8962ea672020ea246928" + }, + { + "payment_id": 2945604894017541, + "ods_hash": "88ea643916758406f0b3f1d85851f7cf", + "dwd_hash": "b01b1c2659a254901cce96cfd0b623a3" + }, + { + "payment_id": 2945870898186373, + "ods_hash": "fe5f1b9f4d741c8b7fe4a51e4183e05b", + "dwd_hash": "7ae4a640bc11694ee632fdcce266931c" + }, + { + "payment_id": 2945871135426565, + "ods_hash": "6b6d27124fc9d50f755dd3d9d66579be", + "dwd_hash": "b9c10746b25fd5bc37e516d33e810674" + }, + { + "payment_id": 2945876557629381, + "ods_hash": "2dd42944989a666aeed2afa6e8a04293", + "dwd_hash": "8d71830da5a548c544c3f2051b1365d0" + }, + { + "payment_id": 2945876623804549, + "ods_hash": "44b62fd651fe420c9659c598510e021d", + "dwd_hash": "abf1dc80bb1ec94c3e7e4ac7f74448a8" + }, + { + "payment_id": 2945894622824453, + "ods_hash": "485b5bd97f64e802e264ac7b3f3bf03f", + "dwd_hash": "489b9dd027cc887973d67cff044cf4c4" + }, + { + "payment_id": 2946018619017349, + "ods_hash": "e4af18ecabb2b3d762f41229d685bf62", + "dwd_hash": "ddc680ec31aeb99b7e90d2d7faf1a8da" + }, + { + "payment_id": 2946023881656325, + "ods_hash": "dd7a517311ae8ce3649cec3be114a36e", + "dwd_hash": "0d8e0b36bc70b00848a3e1696d0c342e" + }, + { + "payment_id": 2946052223567877, + "ods_hash": "efa50a7f38efdc210c30006abc9def06", + "dwd_hash": "ac6b91536db13c973fca01ec2a5092df" + }, + { + "payment_id": 2946055142754245, + "ods_hash": "399f0558fbefb56536b782c26c5fb58b", + "dwd_hash": "babd3486828401126c5489f750182b44" + }, + { + "payment_id": 2946062768588933, + "ods_hash": "8b0f222a601ff8396196827088f618df", + "dwd_hash": "82587f5bd16db8d840dc9516a25f002d" + }, + { + "payment_id": 2946081280591877, + "ods_hash": "f53ea9482a3e48fe0f6c31782eb07c63", + "dwd_hash": "c87c6b3bb9aad1007488140c0291e727" + }, + { + "payment_id": 2946086436571077, + "ods_hash": "584b568cc348807ecefb7ee7677280d1", + "dwd_hash": "9cc85f0b9159a60ef4b029e326d568b8" + }, + { + "payment_id": 2946104809441413, + "ods_hash": "5f438337204f2c06592eb785c51f5e9b", + "dwd_hash": "1ce147d69ed59ab56b491800fc3e3dd3" + }, + { + "payment_id": 2946118183110597, + "ods_hash": "9c39d5d0cacc2b22a737cdb6e79e5e46", + "dwd_hash": "a404dc2bb493425bf529a06e02cd20c4" + }, + { + "payment_id": 2946131743443077, + "ods_hash": "e250f5798d0b5b336af92dccea274fba", + "dwd_hash": "2e8751f41a20d25f929b08833c598f22" + }, + { + "payment_id": 2946137101043653, + "ods_hash": "e81bc80fefbe246b874605c7a15a175b", + "dwd_hash": "9975b939a2b89be7c043a25f5537d8de" + }, + { + "payment_id": 2946138046777285, + "ods_hash": "541242f5b86387d43bdeff743d66e624", + "dwd_hash": "cced4820cb485db169c5eae3285ef9ae" + }, + { + "payment_id": 2946138830456773, + "ods_hash": "e33631bd2bd2e1b68208e3066813dac5", + "dwd_hash": "2e42cb0e60e7c87ce4e9abf69580d01d" + }, + { + "payment_id": 2946140340111429, + "ods_hash": "a5277745642c974324365aadef589b2f", + "dwd_hash": "b5e90a2ba11565fd73bdc575c38ea91f" + }, + { + "payment_id": 2946147437840325, + "ods_hash": "97c426138b15855336ae062ea4df176e", + "dwd_hash": "d5aa3440f87eef7a68a3158049faf5a2" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ], + "mismatch": 17, + "mismatch_samples": [ + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23566, + "total_mismatch": 54438 + }, + "generated_at": "2026-01-31T22:21:20.531755+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964641017858885, + "content_hash": "bdf928284493b482ba8b06d8520e8485b2d340a1a1e442c7987215a52b3b69db" + }, + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10193, + "records_with_pk": 10193, + "missing": 11, + "missing_samples": [ + { + "id": 3075332074964421 + }, + { + "id": 3075332010886789 + }, + { + "id": 3075331958277765 + }, + { + "id": 3075330793899461 + }, + { + "id": 3075330213840517 + }, + { + "id": 3075330153760197 + }, + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12019, + "records_with_pk": 12019, + "missing": 15, + "missing_samples": [ + { + "id": 3075332072293829 + }, + { + "id": 3075332008330885 + }, + { + "id": 3075331955967621 + }, + { + "id": 3075330791523781 + }, + { + "id": 3075330211300997 + }, + { + "id": 3075330151024069 + }, + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17369, + "records_with_pk": 17369, + "missing": 2, + "missing_samples": [ + { + "id": 3075335458195013 + }, + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8314, + "records_with_pk": 8314, + "missing": 7, + "missing_samples": [ + { + "id": 3075332075652549 + }, + { + "id": 3075332011574917 + }, + { + "id": 3075331959015045 + }, + { + "id": 3075330794440133 + }, + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "d2f2a097718965b87f5131d9afe54be6a590806c277a04997cb8f49cd8a2c701" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "6321dbe771ca7dd1cad1e6de9415e38e740e5c9cabd126c5b28c8d45b3ddb9a1" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "0242e5d2630dad59cbae9244726d11f193f573ede0b4ebdeddcfa34a803851d3" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "f4f5dc6aa6bb279ba2879e9a761b4f4a899bd9b9bda7a55567381d8f5f4327ca" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "b7ccfeb2596775d7d5df412279e738df719792074ae854d8eec75fbed9a95a19" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "d0395a340cb626ba57ac4ff57cfc5acf8a12bd6626d9f256ccea453bd2e8d759" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "0ee61f12c483f390ea00c57ba414f9fc01f2e960f8f683f1705bc002354bc899" + }, + { + "id": 2793012902121605, + "content_hash": "1598f548e57874116e40e53e026a649316d03ba95d3970180bedf1f57cab753b" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "267f905a60e3faafd768aba114685c217e8be0ce9240314e0858c9a4174ab10b" + }, + { + "id": 2793020259897413, + "content_hash": "80cb3550fe1d1a7f99a4a4438eae45dbbedc67818b425b7ae9ec4811c26bd9dc" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "4b880f19ffdc8314d3ef6badcc2a63e1e66d51f3a7b522a3ead222dd37d79e2f" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "e65abc7f818f0646d54b654464795b7d5b4059b168121545a5f347b13a906397" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "48395d8a217222e378154a3efa42c0c5dcfeb2b906d10f8c4c50918724d02c95" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "0f9a0cc093051f55c8e9aeabda93df76e06e51b0ed4f5139225ec8539ccaad6c" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 42, + "total_mismatch": 99, + "total_errors": 0, + "generated_at": "2026-01-31T22:25:08.567726+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2994364415790853, + "ods_hash": "2d2964215d4a2ee166f9bb15239cb662", + "dwd_hash": "1d1c95c9515b4977498190bf55065d31" + }, + { + "assistant_id": 3021267412585413, + "ods_hash": "114b03cdccfe300737e1bf5863ed3a53", + "dwd_hash": "9e8d610707aecf669129c4ac6dba9b45" + }, + { + "assistant_id": 3021271397288901, + "ods_hash": "bf6ec348395e64b5cd0329402bfbbde7", + "dwd_hash": "5a0de548a26e782bccb0aeb9f5443431" + }, + { + "assistant_id": 3022685829761989, + "ods_hash": "9086063e178ed8dcc31cb4c86a8d2a29", + "dwd_hash": "0b75296fb7851967cdf4ef0eebcbd388" + }, + { + "assistant_id": 3027024317123653, + "ods_hash": "2bb6709588c4c2554c9a81c59b144dbe", + "dwd_hash": "a3c6fc20f9e0fd3aa8cf0d51b421912a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2988677062855685, + "ods_hash": "02705d54b82ccea7c89939f913c8a91f", + "dwd_hash": "bfeef259184769e12e818bcd21034d72" + }, + { + "member_id": 2995832745758917, + "ods_hash": "f51379d60f726c84ce3b283b24fffc88", + "dwd_hash": "65ebaf71c0a13b3a9c7d57b5f15496e0" + }, + { + "member_id": 2999125651818885, + "ods_hash": "ad6c2088b36bf7671bca1568d68a2c7c", + "dwd_hash": "e513c7b68ec18462a4d3567395b556e9" + }, + { + "member_id": 3003185854190085, + "ods_hash": "38f2fcc6ccba2e4d3b04193fc91b9f8a", + "dwd_hash": "a64fc3a0c4c6c1e55120750339e53ca8" + }, + { + "member_id": 3003552553390789, + "ods_hash": "fff4cde8cafac703310005e846c4b8b6", + "dwd_hash": "55ab4207e0cd1f1d486625251369d8ac" + }, + { + "member_id": 3025342944414469, + "ods_hash": "90a9e93e9f918d86fb9513978ce8d378", + "dwd_hash": "ee3c3f732988c42d0e0a094d4e4de85d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 12, + "mismatch_samples": [ + { + "member_card_id": 2988677063166981, + "ods_hash": "6ec6f7d5d9a0becc890127026d4b9913", + "dwd_hash": "f3c2096b1cd21f13f30075bf8a197232" + }, + { + "member_card_id": 2995832746102981, + "ods_hash": "3d0711ecaf1f2544e6ec079c25b7ea48", + "dwd_hash": "072b0d452e78c35a32924c0e755a5d59" + }, + { + "member_card_id": 2995833659035909, + "ods_hash": "cb059f96b1e81543a3ca0b7c95bb2842", + "dwd_hash": "203d65bc32f10686362e5cccdcf14e9b" + }, + { + "member_card_id": 2999125652146565, + "ods_hash": "ace1fe2c7d3434bbd4d96ec709621ba7", + "dwd_hash": "27613fb508aa1ff2f916f084916c0993" + }, + { + "member_card_id": 2999126038989317, + "ods_hash": "8ece0ff6665d39c389bd3e3f9f1ceee0", + "dwd_hash": "cb81bf108e0ea38f151a14f2416e7739" + }, + { + "member_card_id": 3003185854517765, + "ods_hash": "cff49337cc54680c8066f51e7a62e862", + "dwd_hash": "c3bd0d351711aeabc5b56933e8e000f5" + }, + { + "member_card_id": 3003186241311685, + "ods_hash": "5574691f1e8e2444b6eaa6da5a700669", + "dwd_hash": "3665c5978614953026a798efc6ff8cae" + }, + { + "member_card_id": 3003552553702085, + "ods_hash": "0c77e397da93ef6b60e2e0da670eab03", + "dwd_hash": "941f5cdcb38d5583bc6cd33d2cc1c166" + }, + { + "member_card_id": 3003852642833349, + "ods_hash": "391a02d9f6473a0c2e1da761d98c7ec2", + "dwd_hash": "f9c2763c9f1fb7aa7950b0bf9b97f7f8" + }, + { + "member_card_id": 3005510275991557, + "ods_hash": "a408e7dae6387c9d1e6e1182fdb09c16", + "dwd_hash": "bf480f9e82bbb4c184f5724aeeb19cef" + }, + { + "member_card_id": 3015999424284165, + "ods_hash": "3a709e78f5005af34341b4050e4980e0", + "dwd_hash": "3271a49ba9eed551bc31c6fec0b35895" + }, + { + "member_card_id": 3025342945970949, + "ods_hash": "e5bae17e1203bc2b7464f450ee00aafe", + "dwd_hash": "7401c6126d4807313e04f531994fa604" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "tenant_goods_id": 2991189570373573, + "ods_hash": "05c2c01adc16f257df8036a802cdb3ff", + "dwd_hash": "51130110d143122e3a09d6fe24a25b8e" + }, + { + "tenant_goods_id": 2994234782223365, + "ods_hash": "c662b2064ac9a7501e986331a78255ea", + "dwd_hash": "aa2d7346e572b0c3c76786b056cd4d9d" + }, + { + "tenant_goods_id": 3004531315313413, + "ods_hash": "45a5d659808d87d3dc1b6dd9204d1fe9", + "dwd_hash": "44503a27f094a86e1f391f4d61cd0f8f" + }, + { + "tenant_goods_id": 3028607781079813, + "ods_hash": "a8d835d40dd64f4b2481699044a376e2", + "dwd_hash": "20ae26683d5d85f04905e5b3c885d94e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [], + "mismatch": 13, + "mismatch_samples": [ + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 155429.81, + "diff": 34544.630000000005 + } + ], + "mismatch": 3479, + "mismatch_samples": [ + { + "table_fee_log_id": 2987675348144709, + "ods_hash": "76c6966ed77ee365bea2ac4f6c6f2cd2", + "dwd_hash": "6bb73b3593a994c791b49794a5569c29" + }, + { + "table_fee_log_id": 2987676367424133, + "ods_hash": "2595417bd448de7ad7dd8a26cd1d8f64", + "dwd_hash": "d7965989d2993f7b217d1e81b4412c0f" + }, + { + "table_fee_log_id": 2987676719319685, + "ods_hash": "a95ffbac84bfa9076da06486f6e0676a", + "dwd_hash": "0ef7346fcc4f9e85c3bd99874c54e64d" + }, + { + "table_fee_log_id": 2987707287407237, + "ods_hash": "2494706c5d289bf366f68371412cb8d2", + "dwd_hash": "2c5b045764192e40e99b5c90b9502452" + }, + { + "table_fee_log_id": 2987707287423621, + "ods_hash": "e52c488db6402c59c70fb6854ac3786b", + "dwd_hash": "0234f81fd373f8dbdbbe54998f5618d6" + }, + { + "table_fee_log_id": 2987719121128133, + "ods_hash": "cc597baf78d6492898327c38f197058f", + "dwd_hash": "f69b1528cd7f2b3ed0b46b2b009675c8" + }, + { + "table_fee_log_id": 2987751061375621, + "ods_hash": "38d38b6d7d1ea8b1dde22f89d08dd074", + "dwd_hash": "47b1f0880060a24ca0408e29f5e9a7d0" + }, + { + "table_fee_log_id": 2987751101715141, + "ods_hash": "607af5398192c0db3936711aeb204db6", + "dwd_hash": "ee06a6e23a4c59143d6a46f3cb8e7c88" + }, + { + "table_fee_log_id": 2987767968991941, + "ods_hash": "442c13df9ff2a42b726dcac9cfc8cff4", + "dwd_hash": "06b62037729a6da757fa7153639ca010" + }, + { + "table_fee_log_id": 2987771053591237, + "ods_hash": "461ef4ff48215a9c0b11e580fc3e158d", + "dwd_hash": "944665e240e418c501c73fedb4c821af" + }, + { + "table_fee_log_id": 2987777106465349, + "ods_hash": "9ae18cbace3bdedb5b7bf2c18a572c14", + "dwd_hash": "22fed10be9dc90a65ace5ca070485700" + }, + { + "table_fee_log_id": 2987787652928069, + "ods_hash": "2a436c82aaf6d88cc6793b621724b981", + "dwd_hash": "446c9af49089f22d465d6ae858d5ce7c" + }, + { + "table_fee_log_id": 2987806870112965, + "ods_hash": "7a0059d2c1773976e07dfc66c48faeeb", + "dwd_hash": "2d7546d07f0701e95116b884cecf3d2f" + }, + { + "table_fee_log_id": 2987808146477637, + "ods_hash": "4fa4124e7b6f380f9406096c9c6110a6", + "dwd_hash": "b13fc1b226bfc2b05d82b661b9531dc6" + }, + { + "table_fee_log_id": 2988030895147653, + "ods_hash": "fa13eb2cb501080a8f071e07fde2c1af", + "dwd_hash": "e49506e1d4267804cf4e68b6836a3f57" + }, + { + "table_fee_log_id": 2988030895164037, + "ods_hash": "255758be999e5552dc67970712558090", + "dwd_hash": "eaeb3ee8eeb3b88e1db5aeb1fcac0357" + }, + { + "table_fee_log_id": 2988030895180421, + "ods_hash": "72ecc52e8eedc7da1cb7f44471fba779", + "dwd_hash": "8bd9cbee22761861d2adf195ab919dc0" + }, + { + "table_fee_log_id": 2988030895196805, + "ods_hash": "a078f868a5b684c7700ac60be5ea1e8c", + "dwd_hash": "a83f3467d22b80ef2ebfc6cf6089fde7" + }, + { + "table_fee_log_id": 2988030895213189, + "ods_hash": "83726a0586333abb9e8164e797e1898a", + "dwd_hash": "d4e633a52174cd883f6853ac43a614e6" + }, + { + "table_fee_log_id": 2988030895229573, + "ods_hash": "020f10afba62f2ea299f03ed1ae6142c", + "dwd_hash": "8f412fd500f3f83e79a623d20e432141" + }, + { + "table_fee_log_id": 2988030895245957, + "ods_hash": "a3b13535e09d893c46c661a41e92a630", + "dwd_hash": "0427d8cb273bfc1a022d021a985ff4a6" + }, + { + "table_fee_log_id": 2988030895262341, + "ods_hash": "bd0b7f7cebfe18cfdb9c88c291b9582e", + "dwd_hash": "53cfeb787bab105e6dfc4fc079be7922" + }, + { + "table_fee_log_id": 2988096766251589, + "ods_hash": "b69935a904ad2c048fae9fed0b75a0c0", + "dwd_hash": "6c9016e2700eee196030a84ff0bad131" + }, + { + "table_fee_log_id": 2988098790492805, + "ods_hash": "9f87fa9336bda235d61fae6cccbbe0bb", + "dwd_hash": "1aaedfee48d4beb6e6183d2421f03339" + }, + { + "table_fee_log_id": 2988218941098629, + "ods_hash": "5d1629db97486e45941d1e6fd676865b", + "dwd_hash": "543892e5f50b1e8fbc278d22ad1d45d7" + }, + { + "table_fee_log_id": 2988485085270597, + "ods_hash": "a41b39d964b4fa08337f3cff2f92804e", + "dwd_hash": "46a3ce22631a27ec25107bdedeec23e4" + }, + { + "table_fee_log_id": 2988488776403653, + "ods_hash": "361d64c84a02464722b2e2846166ad9a", + "dwd_hash": "505953ecdac3ff78571f5c7d28fd79ca" + }, + { + "table_fee_log_id": 2988527712488069, + "ods_hash": "57e139cdd12d54261b2f1e7f878dbc71", + "dwd_hash": "a2dfd70bf13a95f38ac6742515f06a04" + }, + { + "table_fee_log_id": 2988537078223557, + "ods_hash": "301322f92c897906727c6295c679de41", + "dwd_hash": "439df16ab5b97cea4e6dcaaf84a553a0" + }, + { + "table_fee_log_id": 2988552501250757, + "ods_hash": "194917517391d8e650bd78fe2c951aa8", + "dwd_hash": "9258dc2dcf087a8731d454d9053d6aa4" + }, + { + "table_fee_log_id": 2988620330748549, + "ods_hash": "b2433647b455c4a197ff54d8fe176016", + "dwd_hash": "f68a558c0d6a533c1f2e3871d4618b95" + }, + { + "table_fee_log_id": 2988633118855749, + "ods_hash": "68b10e2cb2f06a975bf7d6a5a2c4659c", + "dwd_hash": "fa60854790add4006c8f720092114370" + }, + { + "table_fee_log_id": 2988652285989573, + "ods_hash": "16d3923cfb8ecaa94fa2a5aaae159350", + "dwd_hash": "98d3dbb3c08bc3cf783641cb23d10944" + }, + { + "table_fee_log_id": 2988673826591429, + "ods_hash": "c17cd1f00cf71625e6dfe0d9b85a33ba", + "dwd_hash": "5f4d6b15a1477e28e6464f0ef866b0fa" + }, + { + "table_fee_log_id": 2988674492371653, + "ods_hash": "9a4b192fee0497d264432f2d21d757c6", + "dwd_hash": "9e4e250c9d4f9e8791065c441edb7c73" + }, + { + "table_fee_log_id": 2988679471368901, + "ods_hash": "76b429753e16c7833d018af5e6c5fbed", + "dwd_hash": "f27b6584850ea09389076c393672bcad" + }, + { + "table_fee_log_id": 2988703118445253, + "ods_hash": "72598cab66a834124d6d5b7dde8dc5a4", + "dwd_hash": "1df30c801805e4dcdd9418ab37a21fc1" + }, + { + "table_fee_log_id": 2988729548427845, + "ods_hash": "e3da99afd0638d4842ae346e4091d094", + "dwd_hash": "2f74081ea11c9f624443d2572e9338b7" + }, + { + "table_fee_log_id": 2988737624625733, + "ods_hash": "ba5a1cbbd3397980b987e21bd9cd5fce", + "dwd_hash": "ce456549cb77ab1d3ea9646b9456de7a" + }, + { + "table_fee_log_id": 2988748328571461, + "ods_hash": "f84a87e3edab498c3e2fa90f340ffff2", + "dwd_hash": "1e09166034246b6c3c5fc83c9c6724aa" + }, + { + "table_fee_log_id": 2988756484592197, + "ods_hash": "85392788112dbfa4ad3bccd3533205fa", + "dwd_hash": "1905c5dd53831d46fff5a43c8bb3d137" + }, + { + "table_fee_log_id": 2988764682490437, + "ods_hash": "632ca560cbe22f28013cca87c212cab0", + "dwd_hash": "1f6b1bc1e527e8301ffd69bd320d17ee" + }, + { + "table_fee_log_id": 2988765072478917, + "ods_hash": "7b9004b6be74a08dfe2ec5acc7d6dc6d", + "dwd_hash": "63cc0d7e642e703ec5f64912588f91ba" + }, + { + "table_fee_log_id": 2988771524154053, + "ods_hash": "27c385f742f9e96cc9575a8df5718ace", + "dwd_hash": "2a58eb832d74a25aa2f7033a2529f5d4" + }, + { + "table_fee_log_id": 2988773730077381, + "ods_hash": "a63f3b391575d3d421cd71f98ccaa31d", + "dwd_hash": "f4b7039d28c5956be853cbe0e093dd7a" + }, + { + "table_fee_log_id": 2988774506007237, + "ods_hash": "9477f851b7774b27b4f9e75437ee8095", + "dwd_hash": "9d18e2f2466ff5d4b65cae705f08a79f" + }, + { + "table_fee_log_id": 2988775167840837, + "ods_hash": "7200154547168fe08dada5ada2368035", + "dwd_hash": "5a8d080db6aff8c2f2f37af02c9e1b0a" + }, + { + "table_fee_log_id": 2988776555252421, + "ods_hash": "e0f94c4a93839ef5e5e34852c697b2bb", + "dwd_hash": "ee34e82da16b13b1b61536262a1b689a" + }, + { + "table_fee_log_id": 2988777760443013, + "ods_hash": "c4328222d79e4f7b253c998d2a22090c", + "dwd_hash": "d0445f9957a72907b0498ad6f135f1e6" + }, + { + "table_fee_log_id": 2988781139366469, + "ods_hash": "0daa2540e39cc17557b7bf6811bf75a8", + "dwd_hash": "72ff6be67e83adea4bf611eb7c0cfa52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ], + "mismatch": 2625, + "mismatch_samples": [ + { + "store_goods_sale_id": 2987688895629957, + "ods_hash": "3ac98e3c692402c64de98246e7fded1d", + "dwd_hash": "460f7e439c5c5fe7636e494aa83103c0" + }, + { + "store_goods_sale_id": 2987701981696709, + "ods_hash": "38cfda6742c96f601636ca0e9d6162cc", + "dwd_hash": "498de8a6c9028ceecf4a783927a2207e" + }, + { + "store_goods_sale_id": 2987701981696710, + "ods_hash": "8649e29ab0ef7180214f01377cf7037f", + "dwd_hash": "c2468cc1db618b3d3c305b461361e212" + }, + { + "store_goods_sale_id": 2987701981713093, + "ods_hash": "39f36f01d8957c174378241be1efb285", + "dwd_hash": "0b29c7bb8dfdf09fb2918f233d425ce7" + }, + { + "store_goods_sale_id": 2987707287947909, + "ods_hash": "96a85f593bd19e725bf3409c877babc7", + "dwd_hash": "045800e49e531005ea5f4f475111bfe7" + }, + { + "store_goods_sale_id": 2987777106989637, + "ods_hash": "073f054b5be60c75a58a77b0c760af2d", + "dwd_hash": "164e70d201fd7d5818dcd49e2d0dd6e2" + }, + { + "store_goods_sale_id": 2987792158919365, + "ods_hash": "735a1cabb5d44eca78d2da17cfd7b471", + "dwd_hash": "e3a4502f4898a33dd65ebafa418346fa" + }, + { + "store_goods_sale_id": 2987806870522565, + "ods_hash": "682de3bed6321eced9af69a097044402", + "dwd_hash": "9f78da41a566cc25d7be2eebe689b982" + }, + { + "store_goods_sale_id": 2987806870538949, + "ods_hash": "7f552fba809fbe497cf0cc9ad36948c2", + "dwd_hash": "ec2d45081c2e0cd2a3483c52127bee3d" + }, + { + "store_goods_sale_id": 2987996113996485, + "ods_hash": "6d1619eeaac2322ae4c7622dc0b8c9b3", + "dwd_hash": "f21e7c98cea6b982b10723d051261744" + }, + { + "store_goods_sale_id": 2988096768971333, + "ods_hash": "d33ffb1609bd933038c9640bf536b315", + "dwd_hash": "bacd1011df6fb0e609bb521056649625" + }, + { + "store_goods_sale_id": 2988096768971334, + "ods_hash": "df0411a265eb52f50101ddf4749ff7ea", + "dwd_hash": "0f2b5e3e74b5ec2c165a2faacfd86ed8" + }, + { + "store_goods_sale_id": 2988096768987717, + "ods_hash": "63b5ba716bb8a97381d1dab9878771ce", + "dwd_hash": "acd46bf5dd81228cb5a6a5d9ed1afe08" + }, + { + "store_goods_sale_id": 2988096768987718, + "ods_hash": "b1f4e077dc820ebff93871ff8c503887", + "dwd_hash": "0907ccddfd5c5548b556407fe0e74211" + }, + { + "store_goods_sale_id": 2988096769004101, + "ods_hash": "532b453eef32206842cad60a779bac7a", + "dwd_hash": "9d1f6d41d4a470a15201f9426ba42dfc" + }, + { + "store_goods_sale_id": 2988096769004102, + "ods_hash": "a77acf18b40fc4a2aa606ca405667dd3", + "dwd_hash": "bc9da392ee02d087b65a15a71fe95acb" + }, + { + "store_goods_sale_id": 2988096769020485, + "ods_hash": "ed4d5394b81327af31a478a9b3176f4c", + "dwd_hash": "8dae7f1ded51a4d22c890c018cb2db7b" + }, + { + "store_goods_sale_id": 2988096769020486, + "ods_hash": "05541f2b4db0ff0eb325f818d6f2ecf6", + "dwd_hash": "5c1897067268a279b77df9ffad976cf7" + }, + { + "store_goods_sale_id": 2988096769036869, + "ods_hash": "225c78016a56bf6d3a38dcc16feca48e", + "dwd_hash": "cd4807e809adcbfe4c958db1372bb632" + }, + { + "store_goods_sale_id": 2988096769036870, + "ods_hash": "834a649f78ec57153eda7a0ff7579566", + "dwd_hash": "c6a82cc5cdb0cccc2e951467a3699f49" + }, + { + "store_goods_sale_id": 2988096769053253, + "ods_hash": "d47d1f955231df795943d30f7c3bf575", + "dwd_hash": "2f54360f8826b23b3e8ba4167f25a327" + }, + { + "store_goods_sale_id": 2988096769053254, + "ods_hash": "019c46adab9e9933f6159864f4e29216", + "dwd_hash": "049d3008b4522d2b0d497b4bf5d9ad30" + }, + { + "store_goods_sale_id": 2988096769069637, + "ods_hash": "e7480d03a475c0e1319ce0ba735d38e5", + "dwd_hash": "f82f25311f3232d9091c1baa42e8da71" + }, + { + "store_goods_sale_id": 2988096769069638, + "ods_hash": "7d16dc5b39e09e4bb9e3f0a9b54c6330", + "dwd_hash": "9e0c181c49c52f2628773f8719ca619e" + }, + { + "store_goods_sale_id": 2988096769086021, + "ods_hash": "460f79616bdccc1f4d1a7f3e96b48659", + "dwd_hash": "c59c834e0dc51013c8e9f46965529dce" + }, + { + "store_goods_sale_id": 2988096769086022, + "ods_hash": "490e7ea95359c80e468a310bb6d3cbbd", + "dwd_hash": "86ce526598201cd42fa9469f670598fb" + }, + { + "store_goods_sale_id": 2988096769102405, + "ods_hash": "36a10ba751265ad3d05cd0ccbe7aaba3", + "dwd_hash": "ccceece6007ede23b4c5e7cb1d3cd78f" + }, + { + "store_goods_sale_id": 2988096769102406, + "ods_hash": "0abcc55f0a7039f6ca05a2eb3159ae25", + "dwd_hash": "794e0fb6fd25d0af7c92ab3229c8ca1d" + }, + { + "store_goods_sale_id": 2988096769118789, + "ods_hash": "351a5b773fc3341a4bcd582f64743d21", + "dwd_hash": "54f45cfe9f1e99f805fb3ab5ef8940b8" + }, + { + "store_goods_sale_id": 2988096769118790, + "ods_hash": "6f3135d5f5c8e3cbce794df1b9fb4ece", + "dwd_hash": "9ad2ad608e4edffd19fd2440d1dc4eb5" + }, + { + "store_goods_sale_id": 2988096769135173, + "ods_hash": "446789df760b0797b355588fdc3a72a8", + "dwd_hash": "1591966fb9d73f3b248c60c0ecec06e1" + }, + { + "store_goods_sale_id": 2988096769135174, + "ods_hash": "afe6ac2ddcf65e668de402a5bfaac917", + "dwd_hash": "c7c136e56eb0fa55c2d9880685fb53d8" + }, + { + "store_goods_sale_id": 2988096769151557, + "ods_hash": "14c2b98fa6d5a58fbfc29e80f5105825", + "dwd_hash": "1c1143eda131966942a7ad4e5ccc4c39" + }, + { + "store_goods_sale_id": 2988096769151558, + "ods_hash": "2657bf9bc6908f92c532da2b77c04e17", + "dwd_hash": "c88f050cbe4975e51b0a035ae4a61138" + }, + { + "store_goods_sale_id": 2988096769167941, + "ods_hash": "25938beffca55231811f663fd19c704e", + "dwd_hash": "809afd5945266defe0ec90661689d0bb" + }, + { + "store_goods_sale_id": 2988096769167942, + "ods_hash": "036912c2a91d57bf7a55814bfd8a00a0", + "dwd_hash": "54c3aa93e8c17d294c5a8ef4737cbecd" + }, + { + "store_goods_sale_id": 2988096769184325, + "ods_hash": "5471594b4fa14302af4cd4b356bc3153", + "dwd_hash": "bc2a89e03105e6fc57a70f36d6b82b10" + }, + { + "store_goods_sale_id": 2988096769184326, + "ods_hash": "0a18d37e681430d275d1e157c367910a", + "dwd_hash": "b26b90763d923f2474bf9c351a7f7161" + }, + { + "store_goods_sale_id": 2988096769200709, + "ods_hash": "3f21817ca532d4529de0ceceedbe9729", + "dwd_hash": "e2ea59d651e99a61c8b77d4512a621d4" + }, + { + "store_goods_sale_id": 2988096769200710, + "ods_hash": "4008af6b88bd8afa7dfd21449b3470cb", + "dwd_hash": "3162805883bf1b75672fa1df4920c322" + }, + { + "store_goods_sale_id": 2988096769217093, + "ods_hash": "661553a05e6468f2f2f282a7baa89b14", + "dwd_hash": "e16c3e734889452613d0ebc11a1e799b" + }, + { + "store_goods_sale_id": 2988096769217094, + "ods_hash": "f668d5011e75aaab84ea01a089de67be", + "dwd_hash": "4ee7f0ed13a80e3cf3d71f8a9b4293b6" + }, + { + "store_goods_sale_id": 2988096769233477, + "ods_hash": "a6ce29b059857ec9e7e6bf1e32263f5c", + "dwd_hash": "b42a13d2b3d111e1825824cc29ca725e" + }, + { + "store_goods_sale_id": 2988096769233478, + "ods_hash": "7ac281ce512e3b953b454831f05d2242", + "dwd_hash": "713e68de6b4d38e32c0548250d22977e" + }, + { + "store_goods_sale_id": 2988096769249861, + "ods_hash": "1cd584a226f341dc702a46572249d498", + "dwd_hash": "841bc02ddeb5755127fd0839d5a206e1" + }, + { + "store_goods_sale_id": 2988096769249862, + "ods_hash": "c6e5f3c4af2da586fcf624edb4509c73", + "dwd_hash": "705b2486e36b317c0482dc8e4dc44ee7" + }, + { + "store_goods_sale_id": 2988096769266245, + "ods_hash": "e2669d1bb6aa4e34c58203d5aa42346c", + "dwd_hash": "91371974af9bda6d16f01161b05056d5" + }, + { + "store_goods_sale_id": 2988096769266246, + "ods_hash": "ebbc11ebffdead7d27d293563a790579", + "dwd_hash": "3e2c5b9f786384182ee8e2ea0a0501f1" + }, + { + "store_goods_sale_id": 2988096769282629, + "ods_hash": "7ef05e8cb65d5b2fe3c5c41aa3dbb935", + "dwd_hash": "3adc14476c57398ec9f371190dacbbf3" + }, + { + "store_goods_sale_id": 2988096769282630, + "ods_hash": "d8e54b7cf8ed68cf9fbbea4d88236ae1", + "dwd_hash": "3b7a0e35a2fe01f16b061a29befc9bf8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ], + "mismatch": 975, + "mismatch_samples": [ + { + "assistant_service_id": 2987675348587077, + "ods_hash": "d72f7e368398cc458ff67cac818ae4fa", + "dwd_hash": "5cdd6dcd19d748baa5a57c2e27ab7d27" + }, + { + "assistant_service_id": 2987683069825733, + "ods_hash": "ad0cfbaedeea8980cb02e609c1060d1d", + "dwd_hash": "14de4f35aa65e1e380a00f5082490a88" + }, + { + "assistant_service_id": 2987705965759109, + "ods_hash": "f479ad1131a4c5c3f8b8f6b5f82fbd5e", + "dwd_hash": "de8d15f5887e37c663998539a9d3ce8e" + }, + { + "assistant_service_id": 2988030895737477, + "ods_hash": "6f4e8ef8f9cfd06c7d9f16e509d261fd", + "dwd_hash": "27779e64e0763a1616bfbebed31f7c41" + }, + { + "assistant_service_id": 2988030896294533, + "ods_hash": "2ea321ed071173c399733616cea04055", + "dwd_hash": "c6a62e13a506266da7997c450bdbb969" + }, + { + "assistant_service_id": 2988030896720517, + "ods_hash": "d9451f87073c0d9fb1e995b436a40e8e", + "dwd_hash": "b3fcc2fbe6140b8512f8fe1709b6d8a0" + }, + { + "assistant_service_id": 2988030897556101, + "ods_hash": "f4520e33282aa319787bc4d0e3eeeff4", + "dwd_hash": "2a1bbf3a9d2499e545a5d0d55938ca18" + }, + { + "assistant_service_id": 2988096766644805, + "ods_hash": "a59ce080d732a728620184c2af17dc68", + "dwd_hash": "5edd918c54f43353dceb8a47a248acaa" + }, + { + "assistant_service_id": 2988096766988869, + "ods_hash": "87f0145b6f969290c4ecd0517907f141", + "dwd_hash": "948574c9075425c440370c0d4e769d5a" + }, + { + "assistant_service_id": 2988096767349317, + "ods_hash": "ecdf41d7b1f65f84dfa9908634a47afa", + "dwd_hash": "327fdfd92cc1ca89b2e6c14eacb17e36" + }, + { + "assistant_service_id": 2988096767693381, + "ods_hash": "437c77c6afbc0bd8ad340f2ab1b0f65a", + "dwd_hash": "bc3af231f8cf754d80745e6cd6a797a4" + }, + { + "assistant_service_id": 2988096768070213, + "ods_hash": "6abe0720d8a02f31ef96088d77f0c654", + "dwd_hash": "351f6cbc3e8a6e7b1985e6bf34787643" + }, + { + "assistant_service_id": 2988096768414277, + "ods_hash": "fcccdfe0d9e59108a1185c9c4d66c65d", + "dwd_hash": "bc598090a1705e2b79d6eb0f2118807f" + }, + { + "assistant_service_id": 2988098790886021, + "ods_hash": "d0eb9f5343154c5e7f964c7b6524e2e2", + "dwd_hash": "88e30f3d0b4a9e0b5e0bbb59b54f42b7" + }, + { + "assistant_service_id": 2988098791410309, + "ods_hash": "8798a1162876358171b8a7f1f9218f35", + "dwd_hash": "4684dd17c1f34b3c2f71e4a8c3372402" + }, + { + "assistant_service_id": 2988218941491845, + "ods_hash": "4b8f36267324b4c30193f50fda793fec", + "dwd_hash": "b76e60683adf78663edda53d89b5db41" + }, + { + "assistant_service_id": 2988218941852293, + "ods_hash": "bacd9dff1c433a4b8984ef4631256e33", + "dwd_hash": "cef53d882a172804713835e713208742" + }, + { + "assistant_service_id": 2988764682900037, + "ods_hash": "6ca2a5432e8b0c3394b215772db100e0", + "dwd_hash": "1f053cab0fc89658d0ad729baf30c752" + }, + { + "assistant_service_id": 2988907523246789, + "ods_hash": "f775262a70880dedc12948aab995e7bc", + "dwd_hash": "76b78cd9b68c0c2f4b058dc5679004ef" + }, + { + "assistant_service_id": 2988908683662021, + "ods_hash": "06e909c45cc7420cd362b365449398e2", + "dwd_hash": "2f96fe4e2b6ce061dd45faf8cb973f59" + }, + { + "assistant_service_id": 2988908684055237, + "ods_hash": "a2f8f64a3748c941bc6c2f58f3fb9edb", + "dwd_hash": "9833a9eeaba1793281ed323be94f0359" + }, + { + "assistant_service_id": 2988972808131141, + "ods_hash": "2a325d567eb786a2b737fd3fe356bef3", + "dwd_hash": "da6a68fc583c7a4f0406842c13593d31" + }, + { + "assistant_service_id": 2989071967111877, + "ods_hash": "f5a8fcf98a5740a14c4f8ddc571ba4db", + "dwd_hash": "b5a9dbc7508fd70cb4cf98b774116bc6" + }, + { + "assistant_service_id": 2989103393589893, + "ods_hash": "e500a1932217da39360a6fe6f334f1ae", + "dwd_hash": "d2643b6cf0ca7ffb71b2654af1945c34" + }, + { + "assistant_service_id": 2989103393966725, + "ods_hash": "ae78fff8df95bb8cf129328d8a841f7f", + "dwd_hash": "a1ff38183c4a4736595d87a24f052e6c" + }, + { + "assistant_service_id": 2989107446567621, + "ods_hash": "afbe6729e8d6795fd877a3cc260d4e93", + "dwd_hash": "4c21feddf6d3b69732f27dc4e9aa104e" + }, + { + "assistant_service_id": 2989107446944453, + "ods_hash": "00eaeee6a9d2b6fa5694f77e51398b0a", + "dwd_hash": "062a994c66086634a818ab3493dfc300" + }, + { + "assistant_service_id": 2989162897183429, + "ods_hash": "83183c09de3b58f73a94cd0e1af59144", + "dwd_hash": "3cf2023389026905726a40593ac09b80" + }, + { + "assistant_service_id": 2989216018401925, + "ods_hash": "1aaeec5c72eab00a00f086ebab896e93", + "dwd_hash": "6db391447bcd01989e7c4f4f14402224" + }, + { + "assistant_service_id": 2989216018762373, + "ods_hash": "224eec4aed8e0374d9f149cc77d72492", + "dwd_hash": "e3533830e483bef8dea16f1232878ce7" + }, + { + "assistant_service_id": 2989283971781317, + "ods_hash": "691fdb203a10d25519e74218408a9ef4", + "dwd_hash": "a098d3cf5cbb44de32ac515dda196e4e" + }, + { + "assistant_service_id": 2989283972141765, + "ods_hash": "790a9af897622429eedabfafacc67ddc", + "dwd_hash": "6ae691ed3c44f71d8bc69f561754e2eb" + }, + { + "assistant_service_id": 2989436187511429, + "ods_hash": "fa95ba6e9250a87d6ac8a4a409a420de", + "dwd_hash": "b5b1ec4efaabc81519dc08ec6cfc4e02" + }, + { + "assistant_service_id": 2989436187871877, + "ods_hash": "852724c65be20cc7ce621799d0cce9e7", + "dwd_hash": "50a25a4b7b4d5f037a666310a02896f1" + }, + { + "assistant_service_id": 2989436759446085, + "ods_hash": "96f2d21091f06b20575a8c1afe2d3334", + "dwd_hash": "03db01763bec21d3f670bcdd78bfd867" + }, + { + "assistant_service_id": 2989436759822917, + "ods_hash": "d08c77d3f7ed6c903f25530640a8ea71", + "dwd_hash": "f1904bd9dfd5803e1da47246bc5241d7" + }, + { + "assistant_service_id": 2989437232157253, + "ods_hash": "af49e03ed0dc048c2f916578594dd10a", + "dwd_hash": "41d9948a25de15f94c07cd247d75e705" + }, + { + "assistant_service_id": 2989575637191301, + "ods_hash": "24f025b8fa669ff991a993479b48fd9a", + "dwd_hash": "59979f1709068346536baabb06397dae" + }, + { + "assistant_service_id": 2990101503707781, + "ods_hash": "5996defebbaca9df66be41f8c35d1277", + "dwd_hash": "4d67485160566ef2ac7e7b9efa2157dc" + }, + { + "assistant_service_id": 2990197430307461, + "ods_hash": "fe95e05aba1e44db64fa5ff5b86b649e", + "dwd_hash": "07835dc4b8dd605bccbefd18640e6429" + }, + { + "assistant_service_id": 2990197430798981, + "ods_hash": "a142ae06ee37639b7dac7c31a389ab73", + "dwd_hash": "66341a04b42210f1aa00ce5898e7ca08" + }, + { + "assistant_service_id": 2990197431257733, + "ods_hash": "9602387496f46a11472394337d25eecb", + "dwd_hash": "2dfd99db5027a73da15e49aa1d1aba33" + }, + { + "assistant_service_id": 2990305791398469, + "ods_hash": "8ea6663e88026494d992d3a2cac73c8c", + "dwd_hash": "b773f88df3c81e84250a3af82f0e0972" + }, + { + "assistant_service_id": 2990320674327173, + "ods_hash": "f615108799b04f58564162e93d01eafd", + "dwd_hash": "e104396c0c62d3a8de132e3d6c84ca3f" + }, + { + "assistant_service_id": 2990346142847557, + "ods_hash": "e225d665290b9738a6ac9b9b5c5808ab", + "dwd_hash": "4f9091bbce406d9610c9ba3e4b5984a6" + }, + { + "assistant_service_id": 2990368806113861, + "ods_hash": "5868494d9df5dcbcef4079b969f4aceb", + "dwd_hash": "24561866b467c8235f2c2c5505db0b61" + }, + { + "assistant_service_id": 2990401598638725, + "ods_hash": "e172cdc6bd6e0c546ee7db5280c446c9", + "dwd_hash": "61461b60d47182922391d3e16fe3e028" + }, + { + "assistant_service_id": 2990418836327045, + "ods_hash": "f78e84640f5995efff1b681aacf699ca", + "dwd_hash": "6e22c29a96cd81b4aff4518680d6a965" + }, + { + "assistant_service_id": 2990438366300805, + "ods_hash": "1766ff484e04b111bb413ecd0bc48c80", + "dwd_hash": "5f87c26c33baffd97fb51a17b53ad82b" + }, + { + "assistant_service_id": 2990484554894021, + "ods_hash": "afb7d0dd922c70d7e56362ef700402d8", + "dwd_hash": "a6498be15235bc4198923025036a6509" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ], + "mismatch": 2816, + "mismatch_samples": [ + { + "redemption_id": 2987719121636037, + "ods_hash": "fc8e62b73a45cb92cd28026a0b1f9892", + "dwd_hash": "7a26589dc438769d511d431abc090766" + }, + { + "redemption_id": 2987719121636038, + "ods_hash": "7b09df9837e450be927fee4d175b37b9", + "dwd_hash": "3011a37f5049f985b41dfc03ad5ad558" + }, + { + "redemption_id": 2987719121636039, + "ods_hash": "9b8fcbe9114458cbf0c74606c54b3ae1", + "dwd_hash": "348714b47842283f542792f367e151c1" + }, + { + "redemption_id": 2987751061998213, + "ods_hash": "5e188a1aa4b0b9da212400c1bfd6d3bc", + "dwd_hash": "3acb7a23a61e2fa16e12036aa4b4ec48" + }, + { + "redemption_id": 2987751102157509, + "ods_hash": "41c0c63e498083f2414f963df8cb9a9b", + "dwd_hash": "1094640e5dfc052557329c58f45c755c" + }, + { + "redemption_id": 2987767969467077, + "ods_hash": "ab7436ef5d610cc00a853bb05f21688c", + "dwd_hash": "ec243b3c5d60b0142e8372e606fb9826" + }, + { + "redemption_id": 2987767969467078, + "ods_hash": "f3c7b09867262a83427124c9d0f6db66", + "dwd_hash": "0a4972b0e4e637e67840cd9a65f7ddbd" + }, + { + "redemption_id": 2987771054066373, + "ods_hash": "cbe1c9af114eaa6b4199c7b9fdc1242d", + "dwd_hash": "bd6e76668f04e846f33b9d46ab77c7f5" + }, + { + "redemption_id": 2987771054066374, + "ods_hash": "c70afb4cba980831f1e07bd2d869debd", + "dwd_hash": "d4238ef5dd60ad9ee7452c9adb9a551b" + }, + { + "redemption_id": 2987777107055173, + "ods_hash": "0b1f54650e85c6e0f10859a65d8dc7b3", + "dwd_hash": "e18e617327c0690997b0177f4dd226fe" + }, + { + "redemption_id": 2987777107055174, + "ods_hash": "b466c5de3df1e7ee0a818068edf22958", + "dwd_hash": "8b5a163995e7fcfed5dddb4d208f7392" + }, + { + "redemption_id": 2987787653567045, + "ods_hash": "ac83db1d8e215a4b01f1fbb745fa71db", + "dwd_hash": "2479b9e5e6db652e043cd55640f2cfde" + }, + { + "redemption_id": 2988488776927941, + "ods_hash": "37e69a0f57def0e9790e8b50af3c0a2a", + "dwd_hash": "16ed416de6da22074cafbc5d79800989" + }, + { + "redemption_id": 2988527712995973, + "ods_hash": "9b942f91a7c2f30ff20760c7c84f6fea", + "dwd_hash": "b5d5e9f0272f990d43bca448ec7e3b71" + }, + { + "redemption_id": 2988537078813381, + "ods_hash": "dfd9c81b1892e673888eeabf8ff1037a", + "dwd_hash": "c0d79a14ae06e182d598a327916dd0a9" + }, + { + "redemption_id": 2988537078813382, + "ods_hash": "7380183b40a7544a5d9e6d62cf5e4332", + "dwd_hash": "c27d7e0e61268066e7f57ac4f3ff5e84" + }, + { + "redemption_id": 2988552501725893, + "ods_hash": "1abd69594592aade1ca215e7c0c4f8ea", + "dwd_hash": "c4469bc9295cea14bfb846a376222a82" + }, + { + "redemption_id": 2988552501725894, + "ods_hash": "1f601237536b80073f1dcc3466b44293", + "dwd_hash": "aad85e91234eace25649f9396d4be4b9" + }, + { + "redemption_id": 2988620331338373, + "ods_hash": "daa428bbc1a9eb56cf4f97502e79ed78", + "dwd_hash": "90b081a7bea5ae8d511a0e7ae02b5717" + }, + { + "redemption_id": 2988620331338374, + "ods_hash": "df26074e0529009211e77e33f0f648b3", + "dwd_hash": "d8e23b1f4ffbe5f07feba242c9982f9e" + }, + { + "redemption_id": 2988633119298117, + "ods_hash": "da4630b24387b9a4b8cb02fe9af16391", + "dwd_hash": "9e286600fc8a17ec3c3a91f319761317" + }, + { + "redemption_id": 2988652286595781, + "ods_hash": "57b8e79f57faa1f29ec47649decedf2f", + "dwd_hash": "c30ed9742f04ea6d4c28bfb69331953e" + }, + { + "redemption_id": 2988652286595782, + "ods_hash": "2e70d2728b2a89fe91a8959205ec436d", + "dwd_hash": "becda9d382de48268bb155e6eb3ab2c7" + }, + { + "redemption_id": 2988679471958725, + "ods_hash": "8b6e3428b5359df5a965e0bb8ddd9309", + "dwd_hash": "103d82d4662b66efa3c30add9083c566" + }, + { + "redemption_id": 2988703118904005, + "ods_hash": "915250117d6ed52ad1e35e8daff53a2d", + "dwd_hash": "31e339c6de2035e2c29342d4a9237bc9" + }, + { + "redemption_id": 2988729548870213, + "ods_hash": "a828fdd5c8ecd917a1d6356008b05815", + "dwd_hash": "c98453cbf0f8b8ae9d61743b5a8ad640" + }, + { + "redemption_id": 2988748329079365, + "ods_hash": "4c83547a10727d22c6c2367ad8844015", + "dwd_hash": "b21883ca755cfb1ed87732bdca39a257" + }, + { + "redemption_id": 2988756485067333, + "ods_hash": "60331ae9658a0ec5a2a5a2bb6b3293f5", + "dwd_hash": "87cf7ef8b196f3ce8df93e681cb1fb8c" + }, + { + "redemption_id": 2988765073052357, + "ods_hash": "a812bed28a3c7753ffba46179be4fda0", + "dwd_hash": "13f2bc8171da17e1e6f3451bd4b65282" + }, + { + "redemption_id": 2988765073052358, + "ods_hash": "1dcbfc9dc48a6ccbbceef175829d7156", + "dwd_hash": "9c6284e6533395ba5964c3e9d7d6beef" + }, + { + "redemption_id": 2988771524661957, + "ods_hash": "0a7645fdbfaacfc3efecf386abab43af", + "dwd_hash": "1fd0416dd2fe3d0dcd459cee24354c6a" + }, + { + "redemption_id": 2988771524661958, + "ods_hash": "1b557196dac075e57cb5b17dc865f9f5", + "dwd_hash": "e797aba46ec5f8d87cf31983b3c29e4b" + }, + { + "redemption_id": 2988773730634437, + "ods_hash": "9060629f453cecf56df0a371cb6a8433", + "dwd_hash": "0838beeee0b9f0140b176f36b739a903" + }, + { + "redemption_id": 2988777760950917, + "ods_hash": "1778535117e2149642cec38e946a9d55", + "dwd_hash": "aaa657e26663bbf9884c06265705db2b" + }, + { + "redemption_id": 2988777760950918, + "ods_hash": "b244c1d66f4485a11ec7540744545d2f", + "dwd_hash": "965f668216f275d7c8030f38b8a7d66d" + }, + { + "redemption_id": 2988777760950919, + "ods_hash": "dcd41c68f1749c4a0c88c899e3b88892", + "dwd_hash": "4f981c8d748275c87bcde32c69a70050" + }, + { + "redemption_id": 2988781139857989, + "ods_hash": "2dc2829f7d2f49f2a08f792a2bd646e2", + "dwd_hash": "c0ffb68b31e911618c47cbe4d5c978b2" + }, + { + "redemption_id": 2988789651229381, + "ods_hash": "38375a7e3b6ad85301a10a3ebeea6e28", + "dwd_hash": "e800760e5fcdc2ef15069d967784b077" + }, + { + "redemption_id": 2988789699447429, + "ods_hash": "4b391e7727bb0b59fcf8d665d8a39a65", + "dwd_hash": "db5681c8f978b382d2f5df51ba2eba42" + }, + { + "redemption_id": 2988789757577925, + "ods_hash": "5b85de2019ddc9ddc666cc5a9edcfc02", + "dwd_hash": "492a2f81e113107cfd1599788aeafdde" + }, + { + "redemption_id": 2988790139884229, + "ods_hash": "91a438e81f71cf5e31de1f188fb2e2c8", + "dwd_hash": "23cba7173bf5309ebe18e0d396732e17" + }, + { + "redemption_id": 2988790139884230, + "ods_hash": "bad49951087696828b241a4db95eaff1", + "dwd_hash": "71f7a2b7012b350c7de3a609ebdab39c" + }, + { + "redemption_id": 2988790139884231, + "ods_hash": "845eb643f1fbe755022c59589cdf3fce", + "dwd_hash": "cbb946eb34eb8ef23f0ee8d2b6284933" + }, + { + "redemption_id": 2988790139884232, + "ods_hash": "4643c97ad15e2bbf62e43ffff2a36141", + "dwd_hash": "bc2f9fa8e577e1825b301a9bcb77eb79" + }, + { + "redemption_id": 2988790139884233, + "ods_hash": "0c6980eefe106e50169a70f9db1df819", + "dwd_hash": "eb35d633cf2f5415c9092d09fd592d8a" + }, + { + "redemption_id": 2988798437184197, + "ods_hash": "785bc7e64d04a649c725de7b6adef5a5", + "dwd_hash": "ec70511d417c622351627dc38ae4f19a" + }, + { + "redemption_id": 2988809780726405, + "ods_hash": "1004c80b9dd74c18a418d717010b50c2", + "dwd_hash": "c14096dc5a0398af52920085b9927417" + }, + { + "redemption_id": 2988809907161797, + "ods_hash": "3eb6dd3b2e67d9d2403985e3e8d973c9", + "dwd_hash": "ecbff61f6b53cb2c6f6d98cea257c4c8" + }, + { + "redemption_id": 2988847287620165, + "ods_hash": "35319b4fcf12a83e303b7986e9bd5c56", + "dwd_hash": "34e6beba987a03c15c964c6fdeaf9a18" + }, + { + "redemption_id": 2988851774655109, + "ods_hash": "230da1027149a1ec8eab63863ed6caa5", + "dwd_hash": "dedace8fd454ca094245ea0fed957961" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ], + "mismatch": 2827, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2987687603409605, + "ods_hash": "a296e8bde386543ba3dc1d165d3b1b5b", + "dwd_hash": "226cd8bcdbe1cb5fa443df1c7397a555" + }, + { + "platform_coupon_redemption_id": 2987688316719813, + "ods_hash": "2093231dcb4ee7b7d92d0c766b5e823d", + "dwd_hash": "ebc40a0fbb9537122606d2c6f278b76b" + }, + { + "platform_coupon_redemption_id": 2987696907588165, + "ods_hash": "1bfd8961f52083ede6d13cd20daef845", + "dwd_hash": "048d459cf046284cea6cbb374088d95b" + }, + { + "platform_coupon_redemption_id": 2987727763376773, + "ods_hash": "803ed0dfeef0663864d4d1b95bc17d89", + "dwd_hash": "3ca1bf5b7a674a43b4b564d6c427eb1a" + }, + { + "platform_coupon_redemption_id": 2988408542300805, + "ods_hash": "84e0d5336d6561e2b1e368dd93e0e4d1", + "dwd_hash": "284b678694bd7717e85dd17cf074c940" + }, + { + "platform_coupon_redemption_id": 2988408542300806, + "ods_hash": "32ac096d140f9a3204fa9ea9515d2bb3", + "dwd_hash": "5216cbb8f74c23c84a40fea60b01383a" + }, + { + "platform_coupon_redemption_id": 2988424855784069, + "ods_hash": "4b5f356a9e3e7824d03ed84c212d58de", + "dwd_hash": "ca4bbdb3439270131df11fc42638e441" + }, + { + "platform_coupon_redemption_id": 2988426988507717, + "ods_hash": "879a5bb275b37ed21fdfc620b2a652da", + "dwd_hash": "06557ac02bee3fc621f2f84ad26ab29b" + }, + { + "platform_coupon_redemption_id": 2988436183536197, + "ods_hash": "a1682c7e87cc3e3bdc8975b7250d8c23", + "dwd_hash": "0f459de864dac588c9c3aa0da0d39b11" + }, + { + "platform_coupon_redemption_id": 2988437930691205, + "ods_hash": "eea272be7ea24cfd4ee18ac00c600d9d", + "dwd_hash": "55339f3f9b9a13942c0bcd9e3d5efd07" + }, + { + "platform_coupon_redemption_id": 2988471342516933, + "ods_hash": "c43c0f230f7ee53a37c8b7b940e9fa5f", + "dwd_hash": "dc8ab51ff1503ba1e349dd829a97e9b0" + }, + { + "platform_coupon_redemption_id": 2988486340987589, + "ods_hash": "a9d620cd094d04b1f971a26490810330", + "dwd_hash": "26881a7487fbfb15caea5f43fcac5150" + }, + { + "platform_coupon_redemption_id": 2988527644363461, + "ods_hash": "d86cb611944b231bd06929022491c383", + "dwd_hash": "693fc838ab031e86382f368cd037b6d7" + }, + { + "platform_coupon_redemption_id": 2988527644363462, + "ods_hash": "7707aa245ff6f71e7961159a791fa77a", + "dwd_hash": "086bffaa301ea97e3562cbf7b8da65ee" + }, + { + "platform_coupon_redemption_id": 2988530870192837, + "ods_hash": "5c0e4f07d7fd1815bce2642f8f19581c", + "dwd_hash": "fdd456978c040a959da0a6afcafec252" + }, + { + "platform_coupon_redemption_id": 2988557153897093, + "ods_hash": "57abadd1d0f95c15777fa7c0baa9ddc6", + "dwd_hash": "ef1ebbc75131ec33f0765bff7ae57004" + }, + { + "platform_coupon_redemption_id": 2988571835437637, + "ods_hash": "5c9fdf21c32155cbe72c76892d8bb5ef", + "dwd_hash": "bb61a290a58b9f4c68c834c05a041fed" + }, + { + "platform_coupon_redemption_id": 2988580664808005, + "ods_hash": "09b38f20730d729bda222f6973f33b6e", + "dwd_hash": "7063d184b0e832f38e687a3bafce9362" + }, + { + "platform_coupon_redemption_id": 2988599545678469, + "ods_hash": "9c9f99e77f56aa74289ababb4b3531ec", + "dwd_hash": "a02b3ab95982152b52af2a5db0d67aa1" + }, + { + "platform_coupon_redemption_id": 2988620411259589, + "ods_hash": "166ee8b8d28c551486e7cfcbf2b42313", + "dwd_hash": "9b4cec59cc1a1af9c92f4a1da2039958" + }, + { + "platform_coupon_redemption_id": 2988633043243717, + "ods_hash": "79d433b6da26397479e04d2760ecc4a9", + "dwd_hash": "b063c954245e5bf5b78502740a155644" + }, + { + "platform_coupon_redemption_id": 2988640011946693, + "ods_hash": "120b1887fd69f568c2fafea301ab9102", + "dwd_hash": "8e447250c29d23487d641ff2881f5406" + }, + { + "platform_coupon_redemption_id": 2988643064744645, + "ods_hash": "2d59c0b3b2b60682ecfc5b7e1ca8452b", + "dwd_hash": "fa8fb3d74b8298a8b1ffc7edaf8226da" + }, + { + "platform_coupon_redemption_id": 2988648461193797, + "ods_hash": "3369ad123fcadfc2a6bdfac01ed0a41c", + "dwd_hash": "09cb28d8e3e8be68ae0117750ec7f586" + }, + { + "platform_coupon_redemption_id": 2988648461193798, + "ods_hash": "96dce0d306bdef4d8b0787968f903b16", + "dwd_hash": "8e708fa971acf4cabdc57e5c5ae6d069" + }, + { + "platform_coupon_redemption_id": 2988659769002629, + "ods_hash": "ced57bf1978df20d0d1d835d6dd348bf", + "dwd_hash": "654e32ca3a8b5fd2e43b98901bb3b50b" + }, + { + "platform_coupon_redemption_id": 2988660495338181, + "ods_hash": "b332caa72dd69a3ff7522120c1127734", + "dwd_hash": "813eca355fda8d2189d14b5119f8df1c" + }, + { + "platform_coupon_redemption_id": 2988662320632389, + "ods_hash": "ee5ce93f67d70a50be663ae2833f87c9", + "dwd_hash": "f18fca0d133808946518e5b5207b702f" + }, + { + "platform_coupon_redemption_id": 2988664324805317, + "ods_hash": "c29fa3421a4bafef3288745b67ede160", + "dwd_hash": "b9a0c7006747ac935dbc04469671a63f" + }, + { + "platform_coupon_redemption_id": 2988665303732933, + "ods_hash": "d651355ab064e2f25d2d61d7a95a8dc9", + "dwd_hash": "7150828b05cf25b334ba8723fde92f6d" + }, + { + "platform_coupon_redemption_id": 2988665822382789, + "ods_hash": "382516e6e139164c9c3f767c6fb65306", + "dwd_hash": "7a2f38c20bd51f329977548e47bcd9ce" + }, + { + "platform_coupon_redemption_id": 2988667274154693, + "ods_hash": "dc3a6fced60b6b5c22e7a3ab1dfa2e2d", + "dwd_hash": "c849482caa53232e5eb812e11d94f36c" + }, + { + "platform_coupon_redemption_id": 2988675046068805, + "ods_hash": "0923ac026c86e372c25f42c60a31ea0e", + "dwd_hash": "56a1c62c726a11d4bde9ee52a4ca60bd" + }, + { + "platform_coupon_redemption_id": 2988689049195205, + "ods_hash": "8959badd50a1f3ba83a262c6b813f6c6", + "dwd_hash": "7a8c558d52bf51844f3661622a2db94a" + }, + { + "platform_coupon_redemption_id": 2988696746084997, + "ods_hash": "a54dd5fdfca61d0ecbbe1baa8c704043", + "dwd_hash": "c3b8c3967f0f0097b762a0445da2c74a" + }, + { + "platform_coupon_redemption_id": 2988702850140869, + "ods_hash": "cdd78e40f049ea4549c8df2f9da218dd", + "dwd_hash": "6a280dc0a485f2431d677c4dc5f4d15c" + }, + { + "platform_coupon_redemption_id": 2988716253121221, + "ods_hash": "57fcef13ca3f0e30d41f047d13cd62b4", + "dwd_hash": "e7c2df3fdd540098cd2e78f2296dcbef" + }, + { + "platform_coupon_redemption_id": 2988727833350853, + "ods_hash": "649b40d102f5aed611cc35fadfabb3e8", + "dwd_hash": "d6f24ab3e0d3a9a3704bf3cbebd13413" + }, + { + "platform_coupon_redemption_id": 2988728550738565, + "ods_hash": "e4930db1fb91c6e2f79325fcae94a186", + "dwd_hash": "8f1042102164812c4e975cb62ebeb916" + }, + { + "platform_coupon_redemption_id": 2988736414403269, + "ods_hash": "66ae91c0f4cee41ff2cf53a37d5a7a68", + "dwd_hash": "d1cad7e6e148f120fb263f08846fde1c" + }, + { + "platform_coupon_redemption_id": 2988748761092677, + "ods_hash": "5ade1e70c25cc01c8c4f9c06b8b9f1a9", + "dwd_hash": "e994fb7d3f9983cfded99526b7d4a0f7" + }, + { + "platform_coupon_redemption_id": 2988750660946565, + "ods_hash": "e0283ec79252db04973c5e253c8ca727", + "dwd_hash": "0b754118fbfadfc0f33ec235e1668d9d" + }, + { + "platform_coupon_redemption_id": 2988771397915333, + "ods_hash": "8ca4e481d9fff712f7c3d9e6139702e7", + "dwd_hash": "cece52e82ce6d6be3b12cb1ce5922be0" + }, + { + "platform_coupon_redemption_id": 2988787913132741, + "ods_hash": "3671de4e85406d1e5836436d1b40a727", + "dwd_hash": "a98cabcffd352e22f412515dc433c1a9" + }, + { + "platform_coupon_redemption_id": 2988789458752069, + "ods_hash": "3de827e3470a4dd6d5b0f1de8a782a9a", + "dwd_hash": "6b0fa3656ecd2c6c3db67a3688fd572d" + }, + { + "platform_coupon_redemption_id": 2988791349283461, + "ods_hash": "ac719516e97cde67ff9ef91dfd2172ee", + "dwd_hash": "b954e411c885226d331c8c20a624e894" + }, + { + "platform_coupon_redemption_id": 2988792583852613, + "ods_hash": "c74c3436cd849e3d7c76db4fced7c0ae", + "dwd_hash": "0ad9c14454b16c71b0b7390f41d6d5f3" + }, + { + "platform_coupon_redemption_id": 2988796443693765, + "ods_hash": "c8e22b5f14dc12d09b5379bebecaaafd", + "dwd_hash": "44819e3184eaf02bbceaa71b98dafce8" + }, + { + "platform_coupon_redemption_id": 2988799603477125, + "ods_hash": "7a5cf017ea3d59604a9aaafff0bbde2f", + "dwd_hash": "9e2ded0ebcb815098f7c19d012a76d86" + }, + { + "platform_coupon_redemption_id": 2988799930389061, + "ods_hash": "373e8f22c11b810a9e554e99cace9c88", + "dwd_hash": "d2ed33693c33b9440436f41ce59b64e3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ], + "mismatch": 4118, + "mismatch_samples": [ + { + "payment_id": 3023850646341445, + "ods_hash": "8233e838321b1349449655737f097e6f", + "dwd_hash": "ad666c66096a64d6ce89ab0621da7f8b" + }, + { + "payment_id": 3023893329823749, + "ods_hash": "8c527aca891112c4141cf1fe503daa34", + "dwd_hash": "711d68c52a0c15ce64a0e5c35bcc5468" + }, + { + "payment_id": 3023913239971909, + "ods_hash": "45bf1408090cd62bb91a21bb60c4b924", + "dwd_hash": "49bb3c41a8ea9d1bb1e44bebede380f6" + }, + { + "payment_id": 3023935459231813, + "ods_hash": "95852f3cefbb49f5a9cb85f63791adf4", + "dwd_hash": "e40c70807b6d857f516139e4d994cf19" + }, + { + "payment_id": 3023940158916421, + "ods_hash": "030ab8911dfef7d4e649104583d41000", + "dwd_hash": "9281f449549f5b395a4b002c498ac468" + }, + { + "payment_id": 3023952856336197, + "ods_hash": "bb68aa62e5a5227b5d6e0a3c59c563ec", + "dwd_hash": "6d7916bb9361471bb49ce232d0915791" + }, + { + "payment_id": 3023954417731589, + "ods_hash": "d514f2f75f9554c3b5dda70332dd046f", + "dwd_hash": "bdab650a116202cd2a674056eb510266" + }, + { + "payment_id": 3023961415419845, + "ods_hash": "31a9b7b1b8568785b4ab3da9b225e4be", + "dwd_hash": "a2089176f44704d4d72ed96c0ed40c4e" + }, + { + "payment_id": 3023966894229509, + "ods_hash": "f05af57774f190d9cd3d9ed1a70b84aa", + "dwd_hash": "2c4f9f440b2d8f6190091d146a98a948" + }, + { + "payment_id": 3023973252646725, + "ods_hash": "a544fec2770825b02a19008a02c7aef5", + "dwd_hash": "cd6eb29a0170a41919b8ab426583de2e" + }, + { + "payment_id": 3023975748552709, + "ods_hash": "b72effd1ef4c92746f6ad232f33b776d", + "dwd_hash": "1d4eb2f9101e9dc87821b6f681d11649" + }, + { + "payment_id": 3023993241454533, + "ods_hash": "1ea5c350b757b4290f806d69ca051434", + "dwd_hash": "696738e953c2a110a83aa7bc4b3947cc" + }, + { + "payment_id": 3024004121888837, + "ods_hash": "5166df4dd0a8a2bc46521577e3199a1b", + "dwd_hash": "24d2e113d4b9646357b4c23ef24ecdd5" + }, + { + "payment_id": 3024007765133381, + "ods_hash": "5208ecd12233397f023ca051d31debfc", + "dwd_hash": "d749ae18c0121bc517d8c87c57abddd5" + }, + { + "payment_id": 3024011201414981, + "ods_hash": "837939f3568b68e4d72f48fa639d06e4", + "dwd_hash": "5728739c5d38096579f9ae6a3c599478" + }, + { + "payment_id": 3024011296294725, + "ods_hash": "a2179aa01ab91c6733f5c3f7ee39ced6", + "dwd_hash": "a49907e5ea05f3e97d4b0ffe0a71c066" + }, + { + "payment_id": 2987675344933445, + "ods_hash": "5cbd8977c5aa59e91b908bf16dbba0d7", + "dwd_hash": "a08c77bee97a5f7515123651ef113cf7" + }, + { + "payment_id": 2987676365081221, + "ods_hash": "ba73bf8b33b2a1ae177d843f6ffc3b13", + "dwd_hash": "bf27c8d0c4e4b88819c039e901305119" + }, + { + "payment_id": 2987676716632709, + "ods_hash": "855bf920288e5fdd077c4aa42e3a3ed2", + "dwd_hash": "735528dedcbc01e90ea4deaa20afb425" + }, + { + "payment_id": 2987683067384517, + "ods_hash": "e7ad289125d60015a1a5bfd914c8e099", + "dwd_hash": "000a26665d255245b4a88f32e18aac15" + }, + { + "payment_id": 2987688893549189, + "ods_hash": "f2e0316d16c349f5ad289cadb5d11917", + "dwd_hash": "205520dcb69e7ec85282dab2cfdf335d" + }, + { + "payment_id": 2987701979517637, + "ods_hash": "5578a5fd11eeb1b12a2b2dcf9b9daea9", + "dwd_hash": "751a36862b9d16ff83a830d1712fcccd" + }, + { + "payment_id": 2987705963776645, + "ods_hash": "e2acc7b825cb4bb956c1a056fe75ac15", + "dwd_hash": "5f090e743d76b0e305568891d21aa5c8" + }, + { + "payment_id": 2987707284392581, + "ods_hash": "0fb86c78a045b5deb699f4d50473cfec", + "dwd_hash": "b3258e273ff943615f9f06860333f636" + }, + { + "payment_id": 2987719119178437, + "ods_hash": "fd412b1e3a3b8eb577da435588f44552", + "dwd_hash": "6f8282c3dcc73035bab34a2c7ef5ee34" + }, + { + "payment_id": 2987751058934405, + "ods_hash": "d34dba6c397ad99b93423a118eaaf478", + "dwd_hash": "3271f57ad7b450003df178b93b943823" + }, + { + "payment_id": 2987751099683525, + "ods_hash": "91cc40b82536f81a067309d0f603dc80", + "dwd_hash": "d6615a82a0a13344f221329a832b0888" + }, + { + "payment_id": 2987767966599877, + "ods_hash": "c22942c5398878f523de69ceac16da2d", + "dwd_hash": "6360113ad82ea6ea4d9b52ba4109a584" + }, + { + "payment_id": 2987771051330245, + "ods_hash": "9356e41f6b37a49cc21de9ab7e84e51d", + "dwd_hash": "28a7971abca5976ae5c4efd5c30ef031" + }, + { + "payment_id": 2987777104499269, + "ods_hash": "888a1e2cc5b7c7f6b4c9be80230a27b6", + "dwd_hash": "c386de86c344eab56709dda7df29a0a2" + }, + { + "payment_id": 2987787650880069, + "ods_hash": "696e0bb0c4cf2b2127ec0df882bf8a90", + "dwd_hash": "765b6c7bb9ad97c1ab42b30f2552c059" + }, + { + "payment_id": 2987792157035205, + "ods_hash": "6dcaa7721d5625867aac413a38db91db", + "dwd_hash": "6441b832df2f92a2f828e9bb08d5a1ba" + }, + { + "payment_id": 2987806867851973, + "ods_hash": "8303763dbb0145e38ccd2d39d362cd64", + "dwd_hash": "f480c6730187f8f99ab87f3e6463e327" + }, + { + "payment_id": 2987808143823429, + "ods_hash": "862f68791c0ba25fcac51cb7f9f8c977", + "dwd_hash": "5050cbff645f1807cdab5ae22722bdd4" + }, + { + "payment_id": 2987996112079557, + "ods_hash": "ceff1bc8b4900b8bae585d6b8e633b88", + "dwd_hash": "44e5632a4be3ad0fd0abb189867a601a" + }, + { + "payment_id": 2988022517942981, + "ods_hash": "ac3d0eaf153c2821e877d4eb94dd591e", + "dwd_hash": "273b4ed907bfcced4a52c192715400a4" + }, + { + "payment_id": 2988030886955653, + "ods_hash": "746c06b0f90984fa8c67605a405e2db8", + "dwd_hash": "b462fa4f88feedd3eea299b74e9f12bf" + }, + { + "payment_id": 2988095259579077, + "ods_hash": "30f070214fac66e01971071310deb5fa", + "dwd_hash": "56dd9e81b1708e981c8c45415e5be6b8" + }, + { + "payment_id": 2988096764006981, + "ods_hash": "108e487f4adb8f990e1166fddb413265", + "dwd_hash": "982ad40b101a4d011bc570a743c429f3" + }, + { + "payment_id": 2988098787117701, + "ods_hash": "ae2d74b943c20fe430985b22a8c7e325", + "dwd_hash": "42513522e5194578ab924480adf812f3" + }, + { + "payment_id": 2988217005445829, + "ods_hash": "b76d0bdd57c54ecfa33aee93074118e5", + "dwd_hash": "bc158364bf2362a47a837457e704525a" + }, + { + "payment_id": 2988218178063045, + "ods_hash": "9e52f3093952f5a61c36559f143fbd1f", + "dwd_hash": "f05b837df341f45a76767d8c087576ec" + }, + { + "payment_id": 2988218938722949, + "ods_hash": "065fbdd1bb850ad23209134f23f2abf4", + "dwd_hash": "e0a12895b381b2153aecc6ca8df418eb" + }, + { + "payment_id": 2988371183080133, + "ods_hash": "3b9f66b1a268e6c8a7eea2b2107773cd", + "dwd_hash": "a2163d3f05bf25bab23dd38448287105" + }, + { + "payment_id": 2988382784195205, + "ods_hash": "5a2076cd6dcd5483f3e93d254bbd9de4", + "dwd_hash": "622605a40808d9918490fcd514ffa176" + }, + { + "payment_id": 2988438340276933, + "ods_hash": "716609ee5ae5cea453f6fa1c0133d68f", + "dwd_hash": "5f8eebcc90087d9d01a248481b031549" + }, + { + "payment_id": 2988485083009605, + "ods_hash": "97e16983e48949ec5d50104f76d8f40d", + "dwd_hash": "5d2347c9e9a5c2b91b5928c7d15b96e5" + }, + { + "payment_id": 2988488774322886, + "ods_hash": "a739ad469a09659bb6f40d1f04f6433c", + "dwd_hash": "58151c1e8b40238799d9fe2386ea114e" + }, + { + "payment_id": 2988527710489221, + "ods_hash": "4fbb59c0768c6de976ba03a6a489b82c", + "dwd_hash": "a38bee00c16f4dbc8eab06e5fae1f635" + }, + { + "payment_id": 2988537075913413, + "ods_hash": "124c24cdd956ee2ab0f6be0521f013ac", + "dwd_hash": "ee8aeed2153a631bd8d549dc5ee9725d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ], + "mismatch": 13, + "mismatch_samples": [ + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23709, + "total_mismatch": 53145 + }, + "generated_at": "2026-01-31T22:25:26.636749+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "cutoff": null, + "window_days": 29, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "73496fcfba2fa343b34a751d295ec2a7bfe30f1161e6cecafdcc262c0d318bfb" + }, + { + "id": 2964641017858885, + "content_hash": "bdf928284493b482ba8b06d8520e8485b2d340a1a1e442c7987215a52b3b69db" + }, + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + }, + { + "id": 2964673443302213, + "content_hash": "73496fcfba2fa343b34a751d295ec2a7bfe30f1161e6cecafdcc262c0d318bfb" + }, + { + "id": 2964641017858885, + "content_hash": "bdf928284493b482ba8b06d8520e8485b2d340a1a1e442c7987215a52b3b69db" + }, + { + "id": 2840060593686213, + "content_hash": "d23fa54b2064580c230576fe113bb7193619aa9af7ae2d7c5dd30fc9f1ddc602" + }, + { + "id": 2793530479530053, + "content_hash": "64f8049a467782f82af0dbe9af23cbf6a2e8d0fa9f537e7aae148a666ea0830e" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3355, + "records_with_pk": 3355, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10194, + "records_with_pk": 10194, + "missing": 12, + "missing_samples": [ + { + "id": 3075346791253637 + }, + { + "id": 3075332074964421 + }, + { + "id": 3075332010886789 + }, + { + "id": 3075331958277765 + }, + { + "id": 3075330793899461 + }, + { + "id": 3075330213840517 + }, + { + "id": 3075330153760197 + }, + { + "id": 3075324227257733 + }, + { + "id": 3075317928494533 + }, + { + "id": 3075315564529285 + }, + { + "id": 3075312545924741 + }, + { + "id": 3075312215639429 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 781, + "records_with_pk": 781, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 37, + "records_with_pk": 37, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12020, + "records_with_pk": 12020, + "missing": 16, + "missing_samples": [ + { + "id": 3075346788796037 + }, + { + "id": 3075332072293829 + }, + { + "id": 3075332008330885 + }, + { + "id": 3075331955967621 + }, + { + "id": 3075330791523781 + }, + { + "id": 3075330211300997 + }, + { + "id": 3075330151024069 + }, + { + "id": 3075324222309765 + }, + { + "id": 3075317925856709 + }, + { + "id": 3075315562235525 + }, + { + "id": 3075315344459397 + }, + { + "id": 3075315195758149 + }, + { + "id": 3075315080365445 + }, + { + "id": 3075314390828613 + }, + { + "id": 3075312543368837 + }, + { + "id": 3075312213329285 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 1, + "missing_samples": [ + { + "id": 3075315080365445 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17369, + "records_with_pk": 17369, + "missing": 2, + "missing_samples": [ + { + "id": 3075335458195013 + }, + { + "id": 3075320276027013 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207359858437, + "content_hash": "6421a2261a5b00d67a321e7bbaf567c392ed293c39f5a321f3ef6ceb027320ca" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799218552833797, + "content_hash": "9aabd3d6d56c7521faee53bddc75cf96ac2241db6e6c3ca5cdc3ec3fe42adf4f" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 1, + "missing_samples": [ + { + "id": 3075324223030661 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 71, + "records_with_pk": 71, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8314, + "records_with_pk": 8314, + "missing": 7, + "missing_samples": [ + { + "id": 3075332075652549 + }, + { + "id": 3075332011574917 + }, + { + "id": 3075331959015045 + }, + { + "id": 3075330794440133 + }, + { + "id": 3075330214479493 + }, + { + "id": 3075330154513861 + }, + { + "id": 3075315565151877 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "sitegoodsid": 3053572251340677, + "content_hash": "9c13bd973f439d79fc8fdb386290cd684d4418bdeebfe1d738a94491ed5853f6" + }, + { + "sitegoodsid": 3004536125639493, + "content_hash": "6e67b5f005fe309246c30514ba6eef9a805e69381b68a9579940c672097ce5a0" + }, + { + "sitegoodsid": 2828836772432837, + "content_hash": "af34712136e29a10eaed0410eb986566c591d586349bc66b64f6149c8d30c67d" + }, + { + "sitegoodsid": 2794695801917573, + "content_hash": "84c413794d6af6bc0aec20526a42c3a6dd776401cadaabf563e979de4f2c3413" + }, + { + "sitegoodsid": 2794695801753733, + "content_hash": "47cce2709fc162a3f135d9eb777f67cbb2f5140e76578dcb2d9909cd88fb5837" + }, + { + "sitegoodsid": 2794695800934533, + "content_hash": "0f37a2e246347740373beeba826921cc4f5ebcca353668d2dad8b32c19e0488f" + }, + { + "sitegoodsid": 2793026188578885, + "content_hash": "7a3ba249f9580724136b510d12509239fea3bfa4c6fa699ef91c67692dd38072" + }, + { + "sitegoodsid": 2793026187071557, + "content_hash": "a842a329d2dcf2de9cf44b461edc34d4bc310a0ea3950afa7c9805774880c491" + }, + { + "sitegoodsid": 2793026185154629, + "content_hash": "a8e799842481241bfbddcfbda289b7462c5af4b5be7219d9d5c2630b4dd2c51c" + }, + { + "sitegoodsid": 2793026184302661, + "content_hash": "0fac58ccb30a876fbfaa086b833f9a505abbf084fa702773180159e3518fc45e" + }, + { + "sitegoodsid": 2793026183041093, + "content_hash": "3b4ec32131754201af98bf59ed8229e0fcbda3568ea72afe787d9ad7191e096e" + }, + { + "sitegoodsid": 2793026182664261, + "content_hash": "970d0c966d9db22c983aae9dac5ea1aeb85af942002c9c2fa980664f242439ff" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "d2f2a097718965b87f5131d9afe54be6a590806c277a04997cb8f49cd8a2c701" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "13e3b3f6751604c805e6b57820aa85969f63c82bd904ef11435793781f89b0f2" + }, + { + "sitegoodsid": 2793026176995397, + "content_hash": "81b631de460256962268d039474d93ddf7c57ad5a8c4e6fafb37b4ff1f336850" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "6321dbe771ca7dd1cad1e6de9415e38e740e5c9cabd126c5b28c8d45b3ddb9a1" + }, + { + "sitegoodsid": 2793026175520837, + "content_hash": "32317d9778e74b0ce679961fb57a5767a9fedd3f611dff32b7e302555a35dfa6" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "01b599d8f19fae83fa0c652162bd634514ff09a867811ed76b41c1695ec83cf2" + }, + { + "sitegoodsid": 2793025863290949, + "content_hash": "bdd947eead39f059be1d1717922a9c712112a47fb5506c151625fde26ef5eca8" + }, + { + "sitegoodsid": 2793025862963269, + "content_hash": "807dc6a42813f4d29e642e5eba85e03ebfff17c9b5361707c74a8c2ff52535c2" + }, + { + "sitegoodsid": 2793025861685317, + "content_hash": "25a1876db188fc875d5a7d1691ce7a0ed956d144e798bb63e7152fe78d289791" + }, + { + "sitegoodsid": 2793025861128261, + "content_hash": "8c9d421fc651747e27cccba0ef6c1b1d6207bfbe97b1d927bb04a6eca69e663e" + }, + { + "sitegoodsid": 2793025860145221, + "content_hash": "8998092c22bd430d1c1aa8cd0c914c26228518808bc4c9c88f9e00efabc10b2e" + }, + { + "sitegoodsid": 2793025850576965, + "content_hash": "c1e2ba601eed453cf4a470e3e1c0004b4014d2bfc5b5df633dac319e6e3a355b" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "003deab6e3ba99edcd38e7fd716dac7f6d41c92e74b37a2ab9c024df16bc141a" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "0242e5d2630dad59cbae9244726d11f193f573ede0b4ebdeddcfa34a803851d3" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5176, + "records_with_pk": 5176, + "missing": 240, + "missing_samples": [ + { + "sitegoodsstockid": 3072604059796933 + }, + { + "sitegoodsstockid": 3072604060255685 + }, + { + "sitegoodsstockid": 3072603665942085 + }, + { + "sitegoodsstockid": 3072603201947077 + }, + { + "sitegoodsstockid": 3072603201390021 + }, + { + "sitegoodsstockid": 3072603200882117 + }, + { + "sitegoodsstockid": 3072603200374213 + }, + { + "sitegoodsstockid": 3072602669073989 + }, + { + "sitegoodsstockid": 3072602671302213 + }, + { + "sitegoodsstockid": 3072602672432709 + }, + { + "sitegoodsstockid": 3072602672956997 + }, + { + "sitegoodsstockid": 3072602671859269 + }, + { + "sitegoodsstockid": 3072602673497669 + }, + { + "sitegoodsstockid": 3072601462719877 + }, + { + "sitegoodsstockid": 3072601277908613 + }, + { + "sitegoodsstockid": 3072601099322949 + }, + { + "sitegoodsstockid": 3072600889460101 + }, + { + "sitegoodsstockid": 3072600769086917 + }, + { + "sitegoodsstockid": 3072600564696709 + }, + { + "sitegoodsstockid": 3072596867155525 + }, + { + "sitegoodsstockid": 3072596468254277 + }, + { + "sitegoodsstockid": 3072595376145861 + }, + { + "sitegoodsstockid": 3072593851483525 + }, + { + "sitegoodsstockid": 3072593227597253 + }, + { + "sitegoodsstockid": 3072592241428101 + }, + { + "sitegoodsstockid": 3072581851612549 + }, + { + "sitegoodsstockid": 3072581500503621 + }, + { + "sitegoodsstockid": 3072581382292869 + }, + { + "sitegoodsstockid": 3072578674869701 + }, + { + "sitegoodsstockid": 3072578587903429 + }, + { + "sitegoodsstockid": 3072578397291909 + }, + { + "sitegoodsstockid": 3072578161755525 + }, + { + "sitegoodsstockid": 3072578003062469 + }, + { + "sitegoodsstockid": 3072578003128005 + }, + { + "sitegoodsstockid": 3072577306953093 + }, + { + "sitegoodsstockid": 3072577307952517 + }, + { + "sitegoodsstockid": 3072577307444613 + }, + { + "sitegoodsstockid": 3072576922715525 + }, + { + "sitegoodsstockid": 3072576921650565 + }, + { + "sitegoodsstockid": 3072576922174853 + }, + { + "sitegoodsstockid": 3072576914523525 + }, + { + "sitegoodsstockid": 3072576917800325 + }, + { + "sitegoodsstockid": 3072576920028549 + }, + { + "sitegoodsstockid": 3072576916702597 + }, + { + "sitegoodsstockid": 3072576918930821 + }, + { + "sitegoodsstockid": 3072576920569221 + }, + { + "sitegoodsstockid": 3072576915080581 + }, + { + "sitegoodsstockid": 3072576915604869 + }, + { + "sitegoodsstockid": 3072576917243269 + }, + { + "sitegoodsstockid": 3072576921109893 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 27, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 42, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "e008255b8efd817c916308757439b100a04892c3a66aee691b29c4c9c09a4022" + }, + { + "id": 2792521437958213, + "content_hash": "f4f5dc6aa6bb279ba2879e9a761b4f4a899bd9b9bda7a55567381d8f5f4327ca" + }, + { + "id": 2793001695301765, + "content_hash": "fd9ba7e40036684d4dd4628652540e5d3e9cfe8d6f87e64e9becb4cdb870f15b" + }, + { + "id": 2793001904918661, + "content_hash": "1360802f3c79e9829e959aa2145587b735fbd7f71bf932aea6362af33454be9e" + }, + { + "id": 2793002509209733, + "content_hash": "b7ccfeb2596775d7d5df412279e738df719792074ae854d8eec75fbed9a95a19" + }, + { + "id": 2793002673295493, + "content_hash": "3fdf50d1f267723f58e93993737cfa6a08a3c86280adbc2a853f3f587e11673d" + }, + { + "id": 2793002808987781, + "content_hash": "d0395a340cb626ba57ac4ff57cfc5acf8a12bd6626d9f256ccea453bd2e8d759" + }, + { + "id": 2793002896494725, + "content_hash": "90f707fc11094d528989b361f34d5a8832b3647bf8130c07813afdaa03eefb45" + }, + { + "id": 2793002980429893, + "content_hash": "abf263e462f7200bb5ecea5d66c8d9b7682252d65689329ba26ff7a40d717386" + }, + { + "id": 2793003066429509, + "content_hash": "711f412454140df6ed3dece40f4af7bdaeb516ac54003e717487066b62b37f23" + }, + { + "id": 2793003159474245, + "content_hash": "1fdc816ec3734e42ad659285fd049eb434eaf93a3dead450cc7225ebb9fe20ba" + }, + { + "id": 2793003243294789, + "content_hash": "564125f63f22745e3e74d5059eec7e2ff3e9ae48b34426ae1b6edfe503ad44e3" + }, + { + "id": 2793003323740229, + "content_hash": "55e8817875a998d2c3bf5c0c1c4ff86f56f40883ba5810e26020f194423d53c1" + }, + { + "id": 2793003420504133, + "content_hash": "5782bb62f9802264226189be889fd3f7bde82ba11a2d5e04d138716690146453" + }, + { + "id": 2793003506815045, + "content_hash": "3277fa98ce12dd42286e52241578da8ce53565e7c041dd52f72c9f6485d8d9cc" + }, + { + "id": 2793003618340933, + "content_hash": "2745a74677fc26d907661f9475b6a069ff9c0038928c5e74f31d9ed713cfb577" + }, + { + "id": 2793003705192517, + "content_hash": "7ff8d79ecd2b86f8284d58c960925a304944724aeb3e7b3bd6e7e8c4c1026f10" + }, + { + "id": 2793003806953541, + "content_hash": "09fdc082c8e3ab196fa0480a32534ca90c5c663867d14cd0c13e9ae087cc89c8" + }, + { + "id": 2793010820304965, + "content_hash": "0ee61f12c483f390ea00c57ba414f9fc01f2e960f8f683f1705bc002354bc899" + }, + { + "id": 2793012902121605, + "content_hash": "1598f548e57874116e40e53e026a649316d03ba95d3970180bedf1f57cab753b" + }, + { + "id": 2793012902154373, + "content_hash": "1942f306f2160610a25509bb65990cef5b72be0fc7e957958543080bf2370f82" + }, + { + "id": 2793012902203525, + "content_hash": "e35a98cbd5239185f1006e90ae395f2e6a3f680fe0f97c35315710dac570bcd7" + }, + { + "id": 2793012902236293, + "content_hash": "49ad66cd6a204df922bcd51bfc59a11929e97cabce8518ce54abaa308cd463d7" + }, + { + "id": 2793012902318213, + "content_hash": "9848cbe71c71795811cd6f10a4eedf3521e43b758c13d9cc425310128e47b172" + }, + { + "id": 2793012902367365, + "content_hash": "ce1278da2fdc2cdc8b1134de00e62fa77ccd521ad6bf231af60945bc78c18686" + }, + { + "id": 2793016660660357, + "content_hash": "5f4b75f42412c3db2e8410f036d98b9f3fa0a4e1bf5b2c9b93e5d9ee0d13f4f6" + }, + { + "id": 2793017278451845, + "content_hash": "e7092404aa63832defd515e568233fd9c358b8a0108451a278cf06d3b1448a24" + }, + { + "id": 2793017278533765, + "content_hash": "1e66beba3fd15255f034492c9eae6264464c5c18233d512589e3ae447ba50237" + }, + { + "id": 2793017278582917, + "content_hash": "f97f1af11e0286705d6b787882439c4cf4b6b113e68bcf97d47f800c3cfe11af" + }, + { + "id": 2793018776604805, + "content_hash": "d82db938e258911b20e6b193c278043a26bcdd14c6c4ae8fd1cec50b8195b7ee" + }, + { + "id": 2793018776735877, + "content_hash": "267f905a60e3faafd768aba114685c217e8be0ce9240314e0858c9a4174ab10b" + }, + { + "id": 2793020259897413, + "content_hash": "80cb3550fe1d1a7f99a4a4438eae45dbbedc67818b425b7ae9ec4811c26bd9dc" + }, + { + "id": 2793020259946565, + "content_hash": "cc49744df8286f22be74adca416167df6c0d0cf53ede3a6e98da0052dd072899" + }, + { + "id": 2793020259995717, + "content_hash": "111f857ff74eeed8cc8910fb7524fd95db7ea39ee73bce3fc8b327f6df672cfc" + }, + { + "id": 2793020260044869, + "content_hash": "dfd142843d89de2795a0f06c892fdf080947cad8fbd018c05f4bd7edd640797f" + }, + { + "id": 2793023960551493, + "content_hash": "116fb841a2bd6991399434f61f2c16cdb330f1e2559cdaaccb061d4459af2d7b" + }, + { + "id": 2793023960633413, + "content_hash": "b6b7a7d7179797852fa7daf44c6c5ae3a2373636c26ffbd5e83da9b58d5ce675" + }, + { + "id": 2793023960682565, + "content_hash": "4b880f19ffdc8314d3ef6badcc2a63e1e66d51f3a7b522a3ead222dd37d79e2f" + }, + { + "id": 2851642813353477, + "content_hash": "3f315a51cf54eda1e557e9f6a3e089afee9f0d2acc181b3cdf653e3f444d84b2" + }, + { + "id": 2851643520044485, + "content_hash": "45c34ecb591ea9415ca246b2b410534754087df64fe6357b71b82eb092d0fd46" + }, + { + "id": 2942056832061125, + "content_hash": "3f7c9b823b1cbb4b636f1568dc7f5b229255d36b6d533ca1640021c961350811" + }, + { + "id": 2956247996190021, + "content_hash": "26fb67262f35f51a9fe221918d45c12d001fe8436bca4ca9a4d66698bb4e1e3a" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 26, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "f1bcd41c6aad7e2a3108b473dacc001d5d20fabe17c49d899fb43c1db53e63fe" + }, + { + "id": 2794695800934533, + "content_hash": "2dadec3eba013ab9c0f609cbe488dfee2fc5aabb94d53b091514eb6122d8f54d" + }, + { + "id": 2794695801753733, + "content_hash": "844cbf776236515978fbc6cd1e0d6f06aa7b366acedc834acc98f2f8758a1c1d" + }, + { + "id": 2794695801917573, + "content_hash": "559ac5aeac5f783c87b65962f45b707e3574eea3e42c1118081880213c24d64d" + }, + { + "id": 2828836772432837, + "content_hash": "5983841a9b1a5c92b105cb90b83c1ee0d81f102203639fac53e86b0be8926893" + }, + { + "id": 2793025860145221, + "content_hash": "f8ed3a7ac6ccecf5e5db747245087b613417108bb1a10563da246ec704134038" + }, + { + "id": 2793025861128261, + "content_hash": "d97fd82d22936848cbd735e09c47770c5f92fd080906cf1ae0fac36c491e40b2" + }, + { + "id": 2793025861685317, + "content_hash": "b1ce353cbe84ccedf95c864bdbc825c466382e014efea1ffaf29e20d25d7d121" + }, + { + "id": 2793025862438981, + "content_hash": "e89bbfbf83f79a32f758b5794befe9175d8e6f5674c5410539921e18f34fca89" + }, + { + "id": 2793025862963269, + "content_hash": "4cce1513a855dc09cb754998aed9e2d5f2d420abbd1cf846eb17c6593cbcfc8c" + }, + { + "id": 2793025863290949, + "content_hash": "82ee39449f534416e02f76545cb4be7f7665682e529168be9955d3a9f22d7587" + }, + { + "id": 2793025850576965, + "content_hash": "5a7048c306ef13bd43b363c3aab00b54652240d27599f74f1e50687a452e38f8" + }, + { + "id": 2793026187071557, + "content_hash": "dbd1c9e199076f74e5588c39d7f438ed21880ba8206db17d3bf7ebe94cd7ce12" + }, + { + "id": 2793026188578885, + "content_hash": "0afa5674f61d571b7349799fb475b218f1d9b7208cce319c7799b6e5e362ba64" + }, + { + "id": 2793026185154629, + "content_hash": "aa5ffc18a68168cdfa893c649ce2a45550439abde764e8295f6cce6e37468332" + }, + { + "id": 2791953867886725, + "content_hash": "e65abc7f818f0646d54b654464795b7d5b4059b168121545a5f347b13a906397" + }, + { + "id": 2793026174865477, + "content_hash": "b4340a3a924182f8de0eec8c0e96636596ae508d3d36ce4cab5daf692a7a63a5" + }, + { + "id": 2793026175520837, + "content_hash": "f27ae61ead2f3d7fa6b6b258bd4c6e1c22cebb17b9b8bd8903c8b9ef972322fb" + }, + { + "id": 2793026176012357, + "content_hash": "48395d8a217222e378154a3efa42c0c5dcfeb2b906d10f8c4c50918724d02c95" + }, + { + "id": 2793026180501573, + "content_hash": "db0082c3d96e8fcb9e491ff9b4b99189d59f57e4737bed818058f38c1db76439" + }, + { + "id": 2793026180993093, + "content_hash": "0f9a0cc093051f55c8e9aeabda93df76e06e51b0ed4f5139225ec8539ccaad6c" + }, + { + "id": 2793026182664261, + "content_hash": "1151f9436384f889d5e769085b64f0913142134f9928345144eac70df9583342" + }, + { + "id": 2793026183041093, + "content_hash": "7219a4991ac726485361e1a8cd761b194263eec39684c0840e1129b6a51599c8" + }, + { + "id": 2793026184302661, + "content_hash": "27fa8889780f5090ef0e7502d51b9ac95815947a25bd53b74898269634d47be7" + }, + { + "id": 3004536125639493, + "content_hash": "31c94685fb11859e730d22a54df7a87b59ae2a2d105a95f42c3f4df587adda6d" + }, + { + "id": 3053572251340677, + "content_hash": "d289d815b67555418b76d46051637cd55a38f91144aaf7ccf5a2772138a18b01" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 5, + "missing_samples": [ + { + "id": 3075317929362885 + }, + { + "id": 3075312546727557 + }, + { + "id": 3075309975487941 + }, + { + "id": 3075202198242885 + }, + { + "id": 3075197180298821 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3460, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 3460, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 284, + "total_mismatch": 104, + "total_errors": 0, + "generated_at": "2026-01-31T22:29:26.292301+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18937, + "diff": -18936 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2997, + "diff": -2997 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "897e25b2be663a99bb5d6d6f3a436b6c", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "assistant_id": 3045477940824517, + "ods_hash": "12db3d8a937f68d42228ffa5f308e627", + "dwd_hash": "465301b404d91109743ab2a40e9abee2" + }, + { + "assistant_id": 3053833422211141, + "ods_hash": "8f86bbc3e43dfadc7ad6afd3552459f3", + "dwd_hash": "94b78a860329329dae1cb28936dca229" + }, + { + "assistant_id": 3053834039789701, + "ods_hash": "e3663406908d91dc73f83e0a993cc65b", + "dwd_hash": "6983f70d4aab97e6510cde567ae55518" + }, + { + "assistant_id": 3056644876634181, + "ods_hash": "4b04339a37ad45a991d44a84854a9fd9", + "dwd_hash": "1b8d02bec5c6d7d47f9353724cc15464" + }, + { + "assistant_id": 3058170108874053, + "ods_hash": "59286932fc66399f2df1962a853b2cc4", + "dwd_hash": "e897702ad04f87f26969f662617f700b" + }, + { + "assistant_id": 3067857612671685, + "ods_hash": "1b3aec404cd574f9d90f574206d513e8", + "dwd_hash": "09126c1a2272b43b24ecf1335381709d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 3032780662360965, + "ods_hash": "b600f9af1a380a9d89b06a3fe938cc7c", + "dwd_hash": "c240bcc0ce9781131f993bf3f8350476" + }, + { + "member_id": 3034509269552197, + "ods_hash": "aea2bd32a678926b8548843a12fbb79e", + "dwd_hash": "ae76674899e900cb9898a816de9423ee" + }, + { + "member_id": 3037269565082949, + "ods_hash": "ce0651c217e846352343dabe056a5b5c", + "dwd_hash": "ac14310cfb38427eafa7cee385c892c5" + }, + { + "member_id": 3043883848157381, + "ods_hash": "59f5399e89619f9bef84c4d822875e2b", + "dwd_hash": "2e2bfebf9445c94054d237b647b5ed24" + }, + { + "member_id": 3048238811858693, + "ods_hash": "e4b5578e7c6ee2ef032517b34408039c", + "dwd_hash": "c954b6c3e5796dcd2ef889128ce99ae0" + }, + { + "member_id": 3052749341853317, + "ods_hash": "cafe61c0e3683e460ec30bd3c52510a0", + "dwd_hash": "cdc2943f4870f9c5c0bf9ff3ec444111" + }, + { + "member_id": 3054195561631109, + "ods_hash": "0e4513465f760267d5bdef51ed349dc8", + "dwd_hash": "99f3ea78ed96ea8e06bee69bcbfdb161" + }, + { + "member_id": 3055176918828421, + "ods_hash": "bad6c71354cdd4162018a12be1a36576", + "dwd_hash": "6d458ea9679f98b78a575faf77bb3702" + }, + { + "member_id": 3062388521698821, + "ods_hash": "e3d06b5e55ef8302539f323e5b2a3184", + "dwd_hash": "3e123e4dad3f2fe064e8a9e676892eb1" + }, + { + "member_id": 3066773303512389, + "ods_hash": "6b22b414a97ef65237a40d5b8d2d8b8f", + "dwd_hash": "aff1c8110e009b300b9ea69fdc698900" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356671.38, + "diff": 2081.539999999979 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 20, + "mismatch_samples": [ + { + "member_card_id": 3032780662688646, + "ods_hash": "6fff81d6d97588b98c02a845d73fe670", + "dwd_hash": "5c194b0847894011383fe30b7f185ea8" + }, + { + "member_card_id": 3032781195824005, + "ods_hash": "876b9c19b0ad89083642ac4828bb3db7", + "dwd_hash": "dfcd82abd0d5b839719d979b6b3f0b06" + }, + { + "member_card_id": 3034509269896261, + "ods_hash": "6b4c5e2672ee27073d290229df388aef", + "dwd_hash": "d169ba6a6c4637197c5ad6d5ad0373e1" + }, + { + "member_card_id": 3034509687458885, + "ods_hash": "2200ee4f9a98b77180405b329120a0e7", + "dwd_hash": "049e2972a2c8ffae6dc9cf6275bc300b" + }, + { + "member_card_id": 3037269565459781, + "ods_hash": "99e865958a72e6e5ee288227f93fa70d", + "dwd_hash": "fbb0c5957a3a612777b086e3d4389398" + }, + { + "member_card_id": 3037269815201093, + "ods_hash": "d622c0a4fd9d251e96d9e77c00d07de2", + "dwd_hash": "a00e9a82a2e294aac3a0318558fb4f29" + }, + { + "member_card_id": 3039974286231365, + "ods_hash": "43ff97a970a57a723e99614b97fa0f1f", + "dwd_hash": "e4c9e84e8ebcbb4cc0d624ac67c835c6" + }, + { + "member_card_id": 3043883848534213, + "ods_hash": "e99d6240e9bc8590e56ef6b91053b89f", + "dwd_hash": "28a8badd1eb5e300b5b370cbe4e3c5eb" + }, + { + "member_card_id": 3043884200789893, + "ods_hash": "7f5b9245b1a00e0eb0e59a600aaa9f35", + "dwd_hash": "327fc78b3d9615c9936bfe038bd6c802" + }, + { + "member_card_id": 3048238812202757, + "ods_hash": "a2726dd0a3ae6bf928f3aad43a4f3d4b", + "dwd_hash": "99a72cdb54dd6da31636e586533914d4" + }, + { + "member_card_id": 3048239462909701, + "ods_hash": "864cf1e6b273b8c56098deefce4bd5ca", + "dwd_hash": "d6023e64d7a6f72936fe64264d4d37d9" + }, + { + "member_card_id": 3052749343442565, + "ods_hash": "1b735f8edfd83da4a89f6a33bfbccdf9", + "dwd_hash": "f1a0671a9022298e73d782ad775e9c67" + }, + { + "member_card_id": 3052750402162821, + "ods_hash": "5a536e7b4e427b7eb2c451aeda1390bd", + "dwd_hash": "fce93364484ff6715b54ee70969174db" + }, + { + "member_card_id": 3054195562007941, + "ods_hash": "ebfb77bddcc5f7980bbd9f6848020b13", + "dwd_hash": "7bfab03a555723dae25e69610ffa71d4" + }, + { + "member_card_id": 3054195913755845, + "ods_hash": "51dd0309ed622dcaec04c619acf8736d", + "dwd_hash": "0680c9507c431be4acf68dbe0f08188d" + }, + { + "member_card_id": 3055176919745925, + "ods_hash": "2633a27d5986d4ec171447c84a038b00", + "dwd_hash": "48cd8a6d12c52cc1f459924c4de35d6a" + }, + { + "member_card_id": 3055177241628037, + "ods_hash": "38c6d72db8f56ef81d9b092a4d9584db", + "dwd_hash": "0f7215717144d1bf25bbff11f6842f42" + }, + { + "member_card_id": 3055567606646661, + "ods_hash": "7106561629854140a3023f7ac2802a4c", + "dwd_hash": "ea751b792457e9414ae58c0ed852ace3" + }, + { + "member_card_id": 3062388522452485, + "ods_hash": "4747cbf7e40d5cff9d1f756ffc0efb7d", + "dwd_hash": "9a3230ec996f1e7a3018c69419366742" + }, + { + "member_card_id": 3066773307755845, + "ods_hash": "ec37cf60d8c1d91f160d7ccf66d4a2c9", + "dwd_hash": "3749b1edf3daaa0cede0679d5b755b95" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 3047844876503237, + "ods_hash": "e031e38f24bf2f639fedbdde97f30650", + "dwd_hash": "7db6dead2458f9d56556509dec8b9b1a" + }, + { + "tenant_goods_id": 3053571772270213, + "ods_hash": "009d00acebd3ff550da04cc4482f2c28", + "dwd_hash": "440e378fcb708453c939052bc6cdfa45" + }, + { + "tenant_goods_id": 3069455434189829, + "ods_hash": "83c63566574ecbf014a66574c0f950b0", + "dwd_hash": "dbe759821f925e72882d4962f4c16f7e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "0e13226ab6da66231dbd8f9273449271", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "f2c1501d47f4b9d297484705745039c4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "5b32edfe6c55d3dc1e8df98f70ea59da", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "8ed913f86990f9861b65aeac0b38851b", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "91aaff65f5741ebc1554355465240d93", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f02d03981a952577762d4563ae741081", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "8df181a9d64e1a051512c75d94134493", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "843f10a934324c5ef274776a3d927901", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "1bbda8b787a106fbc712b04a47fc5620", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "c38125aca24f0c32be3eff828b1f83e4", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "0b4bce416d24b3ec3e0ccd660418c1c8", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "fb3e2bd128442d5068e6b6fb901407a0", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "43149afdc18aa1f0d3c52a615fc205a5", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "28d724e6a448fa913251a4b4c7bc8552", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "c88966e5d57c2498e106c7373919a087", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "f517f9776776896d83188cc905318f2b", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "d8dd98c63c5d250db13d9dff2e2f6c62", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2882, + "ods": 2997, + "diff": -115 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 57169.8, + "ods_sum": 60900.33, + "diff": -3730.529999999999 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + }, + { + "column": "ledger_amount", + "dwd_sum": 348798.59, + "ods_sum": 363988.31, + "diff": -15189.719999999972 + }, + { + "column": "member_discount_amount", + "dwd_sum": 20970.02, + "ods_sum": 21298.74, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 146832.65, + "ods_sum": 132582.4, + "diff": 14250.25 + } + ], + "mismatch": 2882, + "mismatch_samples": [ + { + "table_fee_log_id": 3031559653985413, + "ods_hash": "a4231f36c9e17310e5fb9d1cd9d00c57", + "dwd_hash": "b4ddc5a912f43c767d4a58ec3a133f1a" + }, + { + "table_fee_log_id": 3031559793577029, + "ods_hash": "a6653d3a8b9d04101d09fa54587351cd", + "dwd_hash": "8007376af5617d2e25e791611f3846f6" + }, + { + "table_fee_log_id": 3031580140031045, + "ods_hash": "c9904c84b048f900a8f22fcb0f6d16a1", + "dwd_hash": "c765827ddc6af911670c6aa4084a9c8b" + }, + { + "table_fee_log_id": 3031591025855557, + "ods_hash": "0a28f9d305631f2420735b0ec7f4d932", + "dwd_hash": "b2a7a7df125746f9087045e65c13a860" + }, + { + "table_fee_log_id": 3031604210961285, + "ods_hash": "f383fd1ac981ecc2f39001437c082170", + "dwd_hash": "b0a9089dd7781824ad75746865d1d691" + }, + { + "table_fee_log_id": 3031604945357701, + "ods_hash": "0db1ba92b205d7011c5a77dece15c891", + "dwd_hash": "b9fbb6994629c2f3c416ffb8602616c4" + }, + { + "table_fee_log_id": 3031646428072837, + "ods_hash": "d9b5f54f80d0bfa8c4f012e9fca7657e", + "dwd_hash": "9ba7d31747cc9be59c78c89b5d80371c" + }, + { + "table_fee_log_id": 3031646482844741, + "ods_hash": "6fce90ad8252f8233dd8354b0836f9a8", + "dwd_hash": "3608d1ef3e73219aaf77ebd6ba820848" + }, + { + "table_fee_log_id": 3031647113382789, + "ods_hash": "503b40495ea92f9de20759c4d106a114", + "dwd_hash": "7dba7d22cb7fd6a06e8498b313834da7" + }, + { + "table_fee_log_id": 3031653085531013, + "ods_hash": "4e0857c801f7c06417c53b8d2edc2bd9", + "dwd_hash": "d6770f38a83cfa6d344f126191dcfdf7" + }, + { + "table_fee_log_id": 3031700025838469, + "ods_hash": "7cf57c36ca16c098986309f667c159f3", + "dwd_hash": "d73b5126df88db3059e93ee6118354a1" + }, + { + "table_fee_log_id": 3031742588291909, + "ods_hash": "fcbd92f83ef9aa675abc0e1b934fcee5", + "dwd_hash": "9c9731fcc734d1f7195cd2fb04aa0239" + }, + { + "table_fee_log_id": 3031896028252997, + "ods_hash": "5b7a0cb3f8f67301d56dfc33951a3edd", + "dwd_hash": "2be5912a9be79e92ee87c0f13c374463" + }, + { + "table_fee_log_id": 3032262315019397, + "ods_hash": "44a6246f7ce7478d12270b01054bb1b5", + "dwd_hash": "98aaad870a6f7e4eaebdccfb586220c0" + }, + { + "table_fee_log_id": 3032291881634885, + "ods_hash": "d44a8cc57db59c5b228af1f216744675", + "dwd_hash": "2bf0272fe2a5660fe57209e56564e49d" + }, + { + "table_fee_log_id": 3032388006530181, + "ods_hash": "43e2c94ec47874dfa344d8f3687cbbed", + "dwd_hash": "2a06d1afe794155f1489136cb183cc91" + }, + { + "table_fee_log_id": 3032388075818117, + "ods_hash": "e465269bd822a7bf542494e41b174750", + "dwd_hash": "f437022f1b14a0629fe07622a967078d" + }, + { + "table_fee_log_id": 3032388340042629, + "ods_hash": "fe7c5fbc754085fd693938004fd2e660", + "dwd_hash": "da07a00eccf7c93f3bfd04f66816e283" + }, + { + "table_fee_log_id": 3032390342462533, + "ods_hash": "ade76ebdbb6d33dad7da38253969e6d1", + "dwd_hash": "556d5e7b7d91758817e598cc9796fdc2" + }, + { + "table_fee_log_id": 3032467840732229, + "ods_hash": "4b315d25146f605bb632ebe66115a841", + "dwd_hash": "72ad465b274c29fa5bf4b8c442ca1a83" + }, + { + "table_fee_log_id": 3032476573535301, + "ods_hash": "1df0fcde75b736f75c70e659dc373117", + "dwd_hash": "d69b4b804f440b03cdb47a5a36072af5" + }, + { + "table_fee_log_id": 3032476648852357, + "ods_hash": "93c50db023681fc9ade0ab83bffc6dc6", + "dwd_hash": "994a96583a1c4f7d29600c2848160253" + }, + { + "table_fee_log_id": 3032490422373253, + "ods_hash": "e89063861189f3b5c2cdd6f76ef9092a", + "dwd_hash": "4e72ea4ba5f23a0cc81d83fe9505cca6" + }, + { + "table_fee_log_id": 3032499558157125, + "ods_hash": "bb7cc8b0131203b43488e074f93b9c51", + "dwd_hash": "32bde565f3dd2fdd0048a0d26ef4ea91" + }, + { + "table_fee_log_id": 3032509393144901, + "ods_hash": "cde9de300174c5790118527929a41703", + "dwd_hash": "c53348671aafeb9d25c8407f2960aabb" + }, + { + "table_fee_log_id": 3032514936408965, + "ods_hash": "531c96d4216026e45e4aaef06c9742fe", + "dwd_hash": "9266b4a3687e9066dd91859c152e8fcd" + }, + { + "table_fee_log_id": 3032530123787333, + "ods_hash": "dd8e57e5ab30124c0020e16e98a9d6b9", + "dwd_hash": "d8ffc976e74cdb34a437114a5e2c1767" + }, + { + "table_fee_log_id": 3032531255479365, + "ods_hash": "26ca68bf884b05d64b3503b3c0b89254", + "dwd_hash": "045cf98d57b8dd391e6ef8a5a908725c" + }, + { + "table_fee_log_id": 3032536349264773, + "ods_hash": "db367f2007a1d3d541633ee98a09d4ca", + "dwd_hash": "e3f226c4b89a779f4c1a81ef9377afe2" + }, + { + "table_fee_log_id": 3032538554715013, + "ods_hash": "e7ba1c3954523564cd0c445ca65dc4cf", + "dwd_hash": "e7a2660d01b265d5f1445d7d8d65641c" + }, + { + "table_fee_log_id": 3032538605521989, + "ods_hash": "806d71c8f28e7f984f33b8edb9a27333", + "dwd_hash": "a1f3fb62f51289821653e79d4bf62876" + }, + { + "table_fee_log_id": 3032547975646021, + "ods_hash": "5f40aa0b0e8ffc0a9c9e01636be11d6b", + "dwd_hash": "639fd1d438f1d8d86f30687264bb04ae" + }, + { + "table_fee_log_id": 3032548020833093, + "ods_hash": "09219b3edacc715788928b6a66939d58", + "dwd_hash": "2e65f265c4b8d1c57903b6e7260dd4e0" + }, + { + "table_fee_log_id": 3032569593547845, + "ods_hash": "4f6c8732b2f0eecf1e0ae6207a314cd3", + "dwd_hash": "39d7e237a67ed4e9e19a70dbff37f51d" + }, + { + "table_fee_log_id": 3032573208611909, + "ods_hash": "840152fd5bb0866eda678b7e2b5d341c", + "dwd_hash": "c6257b04becd8a300027b6dd1c066e0d" + }, + { + "table_fee_log_id": 3032582392908933, + "ods_hash": "0d9476468494e4c30d0cec7b26de0648", + "dwd_hash": "05484960ff6aac3bc7013ff9d6d9491c" + }, + { + "table_fee_log_id": 3032586920758149, + "ods_hash": "94176fea2a3a615ad0d4acdfe1cc9e6b", + "dwd_hash": "9ae9fb94ff657c994d182f11dc537267" + }, + { + "table_fee_log_id": 3032589576997957, + "ods_hash": "e699ad9c7313e975d25efcbf30047347", + "dwd_hash": "a422e03a6526d1032e93bddcb69a3a04" + }, + { + "table_fee_log_id": 3032591296498821, + "ods_hash": "1df175d6f3ce72e4a2859d93ead87b08", + "dwd_hash": "b708bb00876a6194f273f645544eec2b" + }, + { + "table_fee_log_id": 3032596136610949, + "ods_hash": "b7050d384a4ce121ba97b0cfac486410", + "dwd_hash": "388ce6c6015247a754ceed73789be46a" + }, + { + "table_fee_log_id": 3032596384910405, + "ods_hash": "2d87b3318b7c3dc3ccc9434b56c01c0c", + "dwd_hash": "d0788f984875f2aa1f53c9d4958b2235" + }, + { + "table_fee_log_id": 3032598310341701, + "ods_hash": "d43d0f08ab8f0ef700ef0e8c1a3d1e29", + "dwd_hash": "edac5b654d04227d4128541b8c4b36a9" + }, + { + "table_fee_log_id": 3032600070311045, + "ods_hash": "f24ca3448c64293b317e5f375bf7cdf1", + "dwd_hash": "f255f4e067cf7754d9f12c7f0e664ae4" + }, + { + "table_fee_log_id": 3032601787796549, + "ods_hash": "1f8fcda24ead52c1bf3d8840e57830e3", + "dwd_hash": "6a47aa474e11434c0062aca37dd2e381" + }, + { + "table_fee_log_id": 3032603778223173, + "ods_hash": "49670be5aade3987ab50baab457ca59a", + "dwd_hash": "5bf9b72b1d81cd789beba2c8613e1912" + }, + { + "table_fee_log_id": 3032608238963845, + "ods_hash": "1070364996f7c22ddfb76aa427af5927", + "dwd_hash": "7f55a88ced1b05b280546c56d080fa2e" + }, + { + "table_fee_log_id": 3032608727223429, + "ods_hash": "21b2b472e1152b31441ad0697a96ccbd", + "dwd_hash": "648bb9589543c7d98c6b4c075a3987a4" + }, + { + "table_fee_log_id": 3032626777984133, + "ods_hash": "62813b542d701218de0b95b7429979c4", + "dwd_hash": "dc6e0a46732f5b3779ab94d1de3cde5b" + }, + { + "table_fee_log_id": 3032632194124613, + "ods_hash": "679988e002f47bd79a713581aa13d290", + "dwd_hash": "e34d37ff20bdab4a671e331137cd45d1" + }, + { + "table_fee_log_id": 3032632254565509, + "ods_hash": "31dd30a4d771bde5f52bdcd9b638798d", + "dwd_hash": "fbfe553fe78d8cc98fa0f40b0efffda8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18937, + "diff": -319 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 348842.08, + "diff": -14494.650000000023 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2943, + "diff": -54 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 769, + "ods": 785, + "diff": -16 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 237326.17, + "ods_sum": 243794.62, + "diff": -6468.4499999999825 + } + ], + "mismatch": 769, + "mismatch_samples": [ + { + "assistant_service_id": 3072498777589125, + "ods_hash": "2060c6a06b9854434b32079db51dec29", + "dwd_hash": "6bbe9f2e16d163cf9d9e176b7658148a" + }, + { + "assistant_service_id": 3072489929852549, + "ods_hash": "38c0c97b9a50759dea389e54095fc22d", + "dwd_hash": "816186ae61c2d82d13e6b430c2c06d25" + }, + { + "assistant_service_id": 3072432452519365, + "ods_hash": "cc8a07bfcda75b5b69b47667e8e2b034", + "dwd_hash": "4e6a31e461651e4d00dec46a21e1c3a6" + }, + { + "assistant_service_id": 3072432452044229, + "ods_hash": "a0225ebc7ed7ca34f702c01d87dd004d", + "dwd_hash": "525a901c8549889226106156b4b9e587" + }, + { + "assistant_service_id": 3072332756567429, + "ods_hash": "c4278ef063798d19c0eb71990865f42f", + "dwd_hash": "4a00f343b03f6274edd5431b323eab0f" + }, + { + "assistant_service_id": 3071367860668421, + "ods_hash": "3eed257d25edef824383d9262c240fb7", + "dwd_hash": "b95f589c73ec7823a40ce76ef2b3ce8d" + }, + { + "assistant_service_id": 3071358041343941, + "ods_hash": "0762726897a211eb8c39e23dd9edf924", + "dwd_hash": "7df403fdc5abad644dc0e1a77df8cf27" + }, + { + "assistant_service_id": 3071351518152645, + "ods_hash": "d47bd598cc12eb43d5bfe513cf26c831", + "dwd_hash": "c4b6cb272689bda9fd1f15804637f38b" + }, + { + "assistant_service_id": 3071287355164549, + "ods_hash": "0b8919944649bf5012db2685c4885ec7", + "dwd_hash": "f9cfd335caae6f9044cb2107ed8f47a6" + }, + { + "assistant_service_id": 3071287354689413, + "ods_hash": "b53e4e8646bbaeea6f3807f2d52eed81", + "dwd_hash": "7bce358a8696e6ae48cd97ad9452c63c" + }, + { + "assistant_service_id": 3071254450259781, + "ods_hash": "f948df396f3fcff112da78ca61438423", + "dwd_hash": "eb31a650f75fb65935f5cb2c523bb172" + }, + { + "assistant_service_id": 3071254449801029, + "ods_hash": "a9cfba5ae75c346813854e20e2f5439a", + "dwd_hash": "32a090bebac98ed6bed12b1fbad34e86" + }, + { + "assistant_service_id": 3071238591776773, + "ods_hash": "eaaaa91e927a3c4eb57f78dad1b1b99d", + "dwd_hash": "a7640e27d5baec2e056336c907e4bcf1" + }, + { + "assistant_service_id": 3071222366504965, + "ods_hash": "574a3df052524a843df9356ea6fe30ae", + "dwd_hash": "772c0c0be612f68a93204fcea8b68b6c" + }, + { + "assistant_service_id": 3071188925302597, + "ods_hash": "3c6f0b49f1efe2d11cbeb8c624d90c76", + "dwd_hash": "75d2055faacaa3d1ca5b128de2656526" + }, + { + "assistant_service_id": 3031647113857925, + "ods_hash": "f1e2708a2721e0cbdf787d4fceadd0b6", + "dwd_hash": "a423b576523a3c113543a15f7b218800" + }, + { + "assistant_service_id": 3032586921134981, + "ods_hash": "07ed88b395961692bd926998a3e266b9", + "dwd_hash": "6699701f52c5d1ca67f6dda0e6ee1fc1" + }, + { + "assistant_service_id": 3032616943061893, + "ods_hash": "d4a8b03fa531699e10265dda59fc25be", + "dwd_hash": "e5e309b1013c41988c91c1666557bff2" + }, + { + "assistant_service_id": 3032705702579333, + "ods_hash": "443587ba69ca2a2c6c1faac7780b4444", + "dwd_hash": "99ea9a0c241f2a7a9b99cf059b181552" + }, + { + "assistant_service_id": 3032752214559813, + "ods_hash": "5d2866baafed012becdc480a30f38174", + "dwd_hash": "38bd6219def38a363ec9e54e1085661d" + }, + { + "assistant_service_id": 3032784447064903, + "ods_hash": "78dfa9a8c3a5de6e97990feaa01807b3", + "dwd_hash": "83ee47c42c466f3425565f7e5f5329ef" + }, + { + "assistant_service_id": 3032784934783877, + "ods_hash": "d00943612933a43919471188eee78d0e", + "dwd_hash": "ffd2c8154de7a52cea4c9affa5b115b1" + }, + { + "assistant_service_id": 3032800838175557, + "ods_hash": "ea8d15f56368eeb3493eb24ec52872a9", + "dwd_hash": "3b76e4d4371bcf7b3e08c49702e5d741" + }, + { + "assistant_service_id": 3032832541150085, + "ods_hash": "2b22c461eca2a6aaebc2daa4524998ee", + "dwd_hash": "c02adff2d044f371fdd1bf12bd7bb19a" + }, + { + "assistant_service_id": 3032961529236613, + "ods_hash": "80dc15fb09dfdeb7a88854872839798a", + "dwd_hash": "a49478f3e9bd4b78021a59e24adbb177" + }, + { + "assistant_service_id": 3032984261888837, + "ods_hash": "8f704fa75e381e4a043f259734da1e93", + "dwd_hash": "72acc8ba05ff710d06d0177f9259483a" + }, + { + "assistant_service_id": 3032992040815685, + "ods_hash": "ce8bac9f066e7f82732538f4e1fd4ecd", + "dwd_hash": "29c49eaf8316feea66b7b44759d09120" + }, + { + "assistant_service_id": 3032992041225285, + "ods_hash": "4099b129c64e77be22d4c2c61bb8ca99", + "dwd_hash": "7268c5900ab95f7bfe895a9f6cd583f2" + }, + { + "assistant_service_id": 3033035276454789, + "ods_hash": "ff65bf56b437ce80e65ab2d1a6d53b1d", + "dwd_hash": "d1df8cb1d17734f9be975fcf5626ce9f" + }, + { + "assistant_service_id": 3033036460723333, + "ods_hash": "e362e387b89d2efa318a61f99be26bb5", + "dwd_hash": "7f79310e014d395fc6997dc4eeea43bc" + }, + { + "assistant_service_id": 3033059689581637, + "ods_hash": "ebdc5c0eb80b916238094361289bcd39", + "dwd_hash": "fac55aa6b96da1559d71bebea6fb3032" + }, + { + "assistant_service_id": 3033075316296837, + "ods_hash": "dcbdcf3566b5260dd29aad560297861e", + "dwd_hash": "2c1f11ffc297623876456d13f73ada53" + }, + { + "assistant_service_id": 3033151343856773, + "ods_hash": "7743bf02b82869664d88cea5deb6b582", + "dwd_hash": "93fa71d80c10fa11d888e94232188db3" + }, + { + "assistant_service_id": 3033151344282757, + "ods_hash": "0a63c5dddef0f9bf784d6e2edf81d8cb", + "dwd_hash": "a3e04d9c82481709d50b2c4bf59d0b4b" + }, + { + "assistant_service_id": 3033153312410501, + "ods_hash": "babb12eb3e1181b18c8f753f2eb1a127", + "dwd_hash": "03edd8e8df9423f6086f2143e27ff753" + }, + { + "assistant_service_id": 3033216557583493, + "ods_hash": "fe0f61fc86f86ed1a33ca244bed02116", + "dwd_hash": "9438baf7cd03531f45364736cf4ab7cc" + }, + { + "assistant_service_id": 3033216557993093, + "ods_hash": "2cd528edd393f80fd2b1128816261118", + "dwd_hash": "cd07f215eff345fc5630d797e5b9f4ac" + }, + { + "assistant_service_id": 3033994724952965, + "ods_hash": "ff4e832664a85097c72fa71ce096f7bc", + "dwd_hash": "ea50c10d2677936165a3eb14d3f98d42" + }, + { + "assistant_service_id": 3034136732207941, + "ods_hash": "facaefd5fca52ab13f05609dcb85106d", + "dwd_hash": "e85ee9ec0a91d5a0e49990a605cc3e0d" + }, + { + "assistant_service_id": 3034136732617541, + "ods_hash": "f89451d15afcc2365cd117e98b30b428", + "dwd_hash": "a88b976225db0e23954f30df51bb2007" + }, + { + "assistant_service_id": 3034167772171077, + "ods_hash": "2974a41e96ec9af5136e76762e10e639", + "dwd_hash": "8b06b19007d66b3e91fca4b9e599fce0" + }, + { + "assistant_service_id": 3034293330824325, + "ods_hash": "cd643ef9dec95959162d0048753422d3", + "dwd_hash": "3b26bcee0e10f6986d05372d53c7d7c9" + }, + { + "assistant_service_id": 3034301979495301, + "ods_hash": "c6254f9287a35d97e91fa7907fcb8f9b", + "dwd_hash": "49d30627dacf878b8883677a4404f283" + }, + { + "assistant_service_id": 3034387344018309, + "ods_hash": "b70c152f2ecb0b91e8e9f54546dbc7e4", + "dwd_hash": "0f53a11b08e0f1ca83d2d7d71cf421e7" + }, + { + "assistant_service_id": 3034392506305605, + "ods_hash": "0a020086563807ddfe0674dd41a3ae5e", + "dwd_hash": "c222dc096d1c6164c8c406e350205d80" + }, + { + "assistant_service_id": 3034424323247173, + "ods_hash": "6a041f02ecc8dee729d1b027fc8ef152", + "dwd_hash": "fa51ab5608179291a794a46ef0b3c283" + }, + { + "assistant_service_id": 3034503749291141, + "ods_hash": "df5cf4fa828c4cc2fffcc34b3bc2737a", + "dwd_hash": "db3c2cf3d19a05c1b2d3caf65f2505d0" + }, + { + "assistant_service_id": 3034510282181445, + "ods_hash": "64f62a918461b99d43a2cbdae7621982", + "dwd_hash": "370fda095843f99ab3f6ca813a1c4129" + }, + { + "assistant_service_id": 3034510282607429, + "ods_hash": "c60aca8533cdb010a0c5472e501d984f", + "dwd_hash": "a2d867835186af109e0339b744c0224b" + }, + { + "assistant_service_id": 3034510283197253, + "ods_hash": "12dba63c9177f4fdeeed81bfdd833328", + "dwd_hash": "7edb6e5958d29477b9aea9b64a25249c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4868, + "diff": -66 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2272, + "ods": 2349, + "diff": -77 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 150912.0, + "ods_sum": 155904.0, + "diff": -4992.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + } + ], + "mismatch": 2272, + "mismatch_samples": [ + { + "redemption_id": 3031559794101317, + "ods_hash": "d3b6a010b5606dad4d4f591400e2de9a", + "dwd_hash": "721637552736d25012ae3438f75cb277" + }, + { + "redemption_id": 3031559794101318, + "ods_hash": "3c38dd63fb29195e2f0491ac30a216a7", + "dwd_hash": "ba9c2a2104dbdd31b3e927af5677dca6" + }, + { + "redemption_id": 3031580141112389, + "ods_hash": "2ddf2b0b14bece86caa237387ed74314", + "dwd_hash": "7a7c5c2afdeac4bee1d858f9072e4e26" + }, + { + "redemption_id": 3031580141112390, + "ods_hash": "566c4dad317e4b6537067429da758e6d", + "dwd_hash": "f17f6514d3314decc5e7d1ad817d188b" + }, + { + "redemption_id": 3031591026478149, + "ods_hash": "ae98eea0e5b63ee944f721bc7c14f031", + "dwd_hash": "b7b289faf0f54730980ee5793b025825" + }, + { + "redemption_id": 3031591026478150, + "ods_hash": "2026be819bce666e517ee4e7527800bb", + "dwd_hash": "cc84848e4793284a6e9341601b1b621a" + }, + { + "redemption_id": 3031604945914757, + "ods_hash": "e94dd06ccbf0250886d79fc0b03d90db", + "dwd_hash": "43f9acfa3890b393114c09f835af798b" + }, + { + "redemption_id": 3031646428629893, + "ods_hash": "7d9e8d149c603c3b21bf65bccdc7fde8", + "dwd_hash": "74a8a8e2294d8659e8693b719807a559" + }, + { + "redemption_id": 3031646483352645, + "ods_hash": "5ca028125cb4a43cb2fc0d22f71ecbe9", + "dwd_hash": "b8b224ca0d4bdce819147f52655dee54" + }, + { + "redemption_id": 3031653086219141, + "ods_hash": "f78c01e5c5a076b2fb02ebadf6555cff", + "dwd_hash": "24dc2a3afa400ab989be59f52d26b531" + }, + { + "redemption_id": 3031700026379141, + "ods_hash": "2e113c88276083b1211227d2953e01ca", + "dwd_hash": "ec9b7dd3a44f54576124a2a9a622bf59" + }, + { + "redemption_id": 3031742588881733, + "ods_hash": "d0d6ef61213ba3870561b30ab7cdc14a", + "dwd_hash": "4a79e4e3876e763de8765625e9ff8ed0" + }, + { + "redemption_id": 3032262315560069, + "ods_hash": "6eb9ebe384c7f511f22ade1298491ca9", + "dwd_hash": "f5681ab06b5c5a88cbaf29c7546420c7" + }, + { + "redemption_id": 3032291882159173, + "ods_hash": "11eea89b8c28480039e3b84cc1441d4e", + "dwd_hash": "66ee2cf53879da3bb5deaed40e11971a" + }, + { + "redemption_id": 3032388007038085, + "ods_hash": "88dd3531c3dbd2fa18c2e712f04e831b", + "dwd_hash": "8e86d9502f066b421cf8e4e1decd2699" + }, + { + "redemption_id": 3032388076342405, + "ods_hash": "b3135bd8e5892d044a381564eef17027", + "dwd_hash": "e7801130d8c7bf31d4c79ecf90be2072" + }, + { + "redemption_id": 3032388340599685, + "ods_hash": "3bb409664ff552e370e9cf012addf285", + "dwd_hash": "0feb620370471eadc48512f63cbbc88c" + }, + { + "redemption_id": 3032388340599686, + "ods_hash": "10c72a985d7c0c44c5715d835ea153a6", + "dwd_hash": "4b447a6794b5917f24d7311bbb955b04" + }, + { + "redemption_id": 3032390343035973, + "ods_hash": "53344df20c7a35e385fa5a06c93ae465", + "dwd_hash": "ef633f1ca14c14bc042dfd0bf33f8c2d" + }, + { + "redemption_id": 3032467841453125, + "ods_hash": "5557882541cc33349b54ffaf2d589e63", + "dwd_hash": "18c4c74d84382595a2e198f3f1a19e39" + }, + { + "redemption_id": 3032476574026821, + "ods_hash": "2ff498c6a7c3711c1c964b85d48f2736", + "dwd_hash": "811271ef5a6f3036f211b3b6df745913" + }, + { + "redemption_id": 3032476649540485, + "ods_hash": "ef1ab340e34683d101e0f44afd5e30f3", + "dwd_hash": "9637bbad93d886cd41ed1a914e71b9fc" + }, + { + "redemption_id": 3032509393685573, + "ods_hash": "498a3ea7de7dc676946c8b07f408a01f", + "dwd_hash": "168efdf7b6d212c3346f606d03029921" + }, + { + "redemption_id": 3032514937097093, + "ods_hash": "d8ac8bdbac4a2366fdde90f78b7d5ea4", + "dwd_hash": "87e560e76b5d120fc6f8b5e3a58beedb" + }, + { + "redemption_id": 3032530124278853, + "ods_hash": "6bfcbf08790d94de4a46e155695b778d", + "dwd_hash": "9b13199760f1d356799b273a72e04656" + }, + { + "redemption_id": 3032531255970885, + "ods_hash": "25c25b78c316b6c96e8965f1c68aef6d", + "dwd_hash": "0c1ecee67df45c08c450993796620cea" + }, + { + "redemption_id": 3032536349821829, + "ods_hash": "d6ae1277be5ea755a3e674052b79f0f0", + "dwd_hash": "03584f6d330d2fee4f8b333757491c5d" + }, + { + "redemption_id": 3032538555501445, + "ods_hash": "ba4c149634d6a4df59ab2d2a479c0386", + "dwd_hash": "5d0b2d23f2995e5e2e74c724987d200a" + }, + { + "redemption_id": 3032538555501446, + "ods_hash": "e34652a07055b2d16dee9d3f8391a9e3", + "dwd_hash": "88c08edba509e526942afa6b70939b83" + }, + { + "redemption_id": 3032538606079045, + "ods_hash": "3c7601a03613d754a14eecfd6624fd5b", + "dwd_hash": "fbb4d77b4ad131b62296cb93df5dd8af" + }, + { + "redemption_id": 3032538606079046, + "ods_hash": "8e9b05f74ba8161404025c3f69ae9450", + "dwd_hash": "96646945f5fdd5520d58e913fb51601c" + }, + { + "redemption_id": 3032547976235845, + "ods_hash": "392a9a62371fa368c5668d22fb765e73", + "dwd_hash": "8134b556070d15a3f82363076710290d" + }, + { + "redemption_id": 3032548021472069, + "ods_hash": "5d1f38d6101d981c80b698d72df6567e", + "dwd_hash": "f4ecd361f33185faf5b8d242319b9ea6" + }, + { + "redemption_id": 3032569594252357, + "ods_hash": "5f415838a4974346365186f4bbeac834", + "dwd_hash": "ffa85cbcf47b6a38aa48e32a9bcf4a23" + }, + { + "redemption_id": 3032569594252358, + "ods_hash": "1286e48bbdbc96517ae36bb070ce918c", + "dwd_hash": "2196f4fcfd18a563b0ab8d604bbdd999" + }, + { + "redemption_id": 3032573211348037, + "ods_hash": "8c29a5b745c650fe654f270ccf18eef9", + "dwd_hash": "79642e1b529d16223cb513f8e42cd803" + }, + { + "redemption_id": 3032573211348038, + "ods_hash": "6c88a46a34b4542305c996b5c120431a", + "dwd_hash": "9c51ffdd3fbb6b2bc3d1ac44b6024b41" + }, + { + "redemption_id": 3032573211348039, + "ods_hash": "1510c6bf52b5ee0ec3802c1e35f80703", + "dwd_hash": "5b34b18b636f227fe7857fb69e3c03b2" + }, + { + "redemption_id": 3032582393482373, + "ods_hash": "97edcb7b79d97402d26dc34cdd646bfc", + "dwd_hash": "9ccd610f2b91f312ae9525db9b4e2f53" + }, + { + "redemption_id": 3032582393482374, + "ods_hash": "e7e633368674872090a82c6b6a48d8f4", + "dwd_hash": "109d31bdcd33f2309562c9c6601ff247" + }, + { + "redemption_id": 3032582393482375, + "ods_hash": "0fc16db85a0413562c36cf52ae6f924a", + "dwd_hash": "75afa67d6887c52a32ac2d8cfabbac57" + }, + { + "redemption_id": 3032589577718853, + "ods_hash": "6b37e8ad126d96a6141685942327c395", + "dwd_hash": "7d299b9a398d61f2b7ffe07bd70c1990" + }, + { + "redemption_id": 3032591297186949, + "ods_hash": "4c6687338673be8419fd4df460e292a6", + "dwd_hash": "4da5547b6862e0a8a1daf4ba897aa6a3" + }, + { + "redemption_id": 3032596137151621, + "ods_hash": "34e8856d54b6683d6211744b886a5b65", + "dwd_hash": "1b5088e03e938f496bb5ee809a55b0dc" + }, + { + "redemption_id": 3032598310898757, + "ods_hash": "09e23717dfdef1240413acaa4a3db93d", + "dwd_hash": "c210b35a9baefa5be2fcafdc7bc33d1a" + }, + { + "redemption_id": 3032600070884485, + "ods_hash": "7a56df3ded69608ef6844c4fe8e3fa9c", + "dwd_hash": "0c54cb115a07fea8e1554418767771aa" + }, + { + "redemption_id": 3032601788353605, + "ods_hash": "90927160ac0765c4ab0e2e6088f6ed1a", + "dwd_hash": "8b76fc23a1abbe1ac16b688a4a8adbfa" + }, + { + "redemption_id": 3032601788353606, + "ods_hash": "4bf9d9bf464f26e20d3a26836e79da1f", + "dwd_hash": "c3374a683281fa884431ac0db1749786" + }, + { + "redemption_id": 3032603778796613, + "ods_hash": "837cd030444a3a506c6219b9bbcd57db", + "dwd_hash": "ae7b62ca2b432a33f6f2e87c2300b6ed" + }, + { + "redemption_id": 3032608239488133, + "ods_hash": "9ea786371c01d784c393e6f9e14905ad", + "dwd_hash": "9e514139559313d5ccf07e19ee1530e5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11812, + "diff": -223 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2273, + "ods": 2343, + "diff": -70 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 151190.0, + "ods_sum": 155480.0, + "diff": -4290.0 + } + ], + "mismatch": 2273, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 3031566334823557, + "ods_hash": "ae5861d8c8307280630a49f3146473b0", + "dwd_hash": "da63472d135efffdbbf6b1290b065950" + }, + { + "platform_coupon_redemption_id": 3031571380046725, + "ods_hash": "f482cf8d4b638e360da0f87db09d790b", + "dwd_hash": "fb0afbb69714227d48b1307869138ceb" + }, + { + "platform_coupon_redemption_id": 3031582234463365, + "ods_hash": "883860f548576479ff4975b1a597015e", + "dwd_hash": "dd5647d92cdf02d1ea9e42e46f3aab8b" + }, + { + "platform_coupon_redemption_id": 3031592727219013, + "ods_hash": "85bca9a0b0e5c93a7f5392a99bbaa44a", + "dwd_hash": "b3888cafc63a9e7236df50cffa5eca87" + }, + { + "platform_coupon_redemption_id": 3031624320945285, + "ods_hash": "1662f56d7a5f4c46ce5b54e03b22d01c", + "dwd_hash": "1560c8035feaba295bb246fb66356895" + }, + { + "platform_coupon_redemption_id": 3032172310170437, + "ods_hash": "afad7ca4f527af3ed13e89f36900c7d6", + "dwd_hash": "c61f609f2bae185975442d6eeaa96a06" + }, + { + "platform_coupon_redemption_id": 3032178624793477, + "ods_hash": "3c88ae5df9e3d0cddf9e1c411b65a76b", + "dwd_hash": "b5e63afa912314b2ddeb5c8457cdea76" + }, + { + "platform_coupon_redemption_id": 3032178624793478, + "ods_hash": "6bde5d3ca6ec46a639e0bc27d9273386", + "dwd_hash": "2e0d69124b5329c90a1c1bcad8742e6b" + }, + { + "platform_coupon_redemption_id": 3032185400380229, + "ods_hash": "c4d42107be7dbf85de23ac1363e19aec", + "dwd_hash": "25560f4e216a24ee24ee97b941d8e1a4" + }, + { + "platform_coupon_redemption_id": 3032269820840773, + "ods_hash": "00897227ee829d4a4ea1c2b746d4e34c", + "dwd_hash": "6bcf9118c83639230c919572dfbb401d" + }, + { + "platform_coupon_redemption_id": 3032323186822277, + "ods_hash": "503f8f89b4f03a636762189bcdf043d5", + "dwd_hash": "29b7d4e4da6877ecd24abae4c52d3fb5" + }, + { + "platform_coupon_redemption_id": 3032337653041989, + "ods_hash": "db93f739c5fb68927e22a6455321beb9", + "dwd_hash": "f71e330cb3861637a2bb9b3567004a13" + }, + { + "platform_coupon_redemption_id": 3032396589386821, + "ods_hash": "8db02614fa30daa8be2be3824bf01d4e", + "dwd_hash": "1b44d0d0b6fab3da57abbf63893f5a02" + }, + { + "platform_coupon_redemption_id": 3032405477034885, + "ods_hash": "b543e50697c3d1b1e116fced7e17e00c", + "dwd_hash": "f39ddac58017529ce37f5fba1d53b8bf" + }, + { + "platform_coupon_redemption_id": 3032405609090181, + "ods_hash": "a01873a652def5102c05fce3b3d8ec5e", + "dwd_hash": "f3f45ee9601aedb35091294b9eced8ec" + }, + { + "platform_coupon_redemption_id": 3032406297791365, + "ods_hash": "636ca360c66a23d7878c8b9f67e70e21", + "dwd_hash": "d68811847668f2e703ef9ae28ba2d74e" + }, + { + "platform_coupon_redemption_id": 3032417371704133, + "ods_hash": "243482831bd9e8098633450e9fbd5791", + "dwd_hash": "d9ebe7c64a1e4af12e02ec562a98645a" + }, + { + "platform_coupon_redemption_id": 3032417612893253, + "ods_hash": "c505e505c39b52b22c3f52a848a91db2", + "dwd_hash": "a5fbf2276dc82431009d0042d78cbe8f" + }, + { + "platform_coupon_redemption_id": 3032420373433157, + "ods_hash": "145ab430f52513bced3dffff390f3a2a", + "dwd_hash": "d58949f0dda678b28fc18174e2519ad0" + }, + { + "platform_coupon_redemption_id": 3032420525739077, + "ods_hash": "ebc627e3643c10498f917b089f6983a0", + "dwd_hash": "88d24aef108c652378e7d5ba9d100a68" + }, + { + "platform_coupon_redemption_id": 3032424348830853, + "ods_hash": "8053f8a95e368a5b8a7ebbdea0909a63", + "dwd_hash": "f2e8c8fddb8f855b4c16505397b82dd5" + }, + { + "platform_coupon_redemption_id": 3032425854290821, + "ods_hash": "72df081110b04e8436a0afe691c9c79d", + "dwd_hash": "f15c9be48b9b2a73b32ff8c60e46b5a5" + }, + { + "platform_coupon_redemption_id": 3032425854290822, + "ods_hash": "f4a28a6ed34c38d3928f737067ff5a14", + "dwd_hash": "b41b0a4860c4d7bf0fd6e15b0159517b" + }, + { + "platform_coupon_redemption_id": 3032426090515525, + "ods_hash": "0bb7c9c02efd9e372c2e53287604731c", + "dwd_hash": "5d49929125f20ace7a68065e2a59fa37" + }, + { + "platform_coupon_redemption_id": 3032429216893765, + "ods_hash": "de6554c0d6b77304559dedfdba30be52", + "dwd_hash": "19e3a2b099064b1a28e163b1d9205635" + }, + { + "platform_coupon_redemption_id": 3032445562260357, + "ods_hash": "9493caf6d98bf2fb8198930ec52ee0f0", + "dwd_hash": "6fa5c081a13557d8b53b7cfe466699d3" + }, + { + "platform_coupon_redemption_id": 3032450343259013, + "ods_hash": "0423c831824dfbab1392ff211dc6c590", + "dwd_hash": "81f941d66e09bb0fb0d5ed78f8e050ce" + }, + { + "platform_coupon_redemption_id": 3032451254537349, + "ods_hash": "1b7a1fd74e2691366ea2e8a6c07f2e9a", + "dwd_hash": "533ab3905f88368034b9c006ce4a9103" + }, + { + "platform_coupon_redemption_id": 3032451886779269, + "ods_hash": "1f4032209fae06d05277d9a889aeb15d", + "dwd_hash": "cc17d4c4fd26766722c5df05fbc63982" + }, + { + "platform_coupon_redemption_id": 3032467741543493, + "ods_hash": "150a66a40b750caecb093712704eb19b", + "dwd_hash": "134ffc89f0aa5fc0534b6ff655dbf72b" + }, + { + "platform_coupon_redemption_id": 3032468863568965, + "ods_hash": "773c718c1ab1e0c8f5db01a5506fd0a5", + "dwd_hash": "a9743b58610f0e811e4486e2bc55f7d6" + }, + { + "platform_coupon_redemption_id": 3032469377485957, + "ods_hash": "2389f7026681a12fd164740136f00542", + "dwd_hash": "056e9bf8ad8f242ffc17a5eefc050e1f" + }, + { + "platform_coupon_redemption_id": 3032472322100293, + "ods_hash": "018213a602969b9bec744079f130f4ee", + "dwd_hash": "b346d68947fce5deaac13ca862aae80b" + }, + { + "platform_coupon_redemption_id": 3032473337252997, + "ods_hash": "599a500a19f7ee4f6a3efccb13a60966", + "dwd_hash": "659546913402b7d3c7a3d9b36fa4f67e" + }, + { + "platform_coupon_redemption_id": 3032475223575365, + "ods_hash": "6616c2f51c486c898e59cc25ac8b3dc4", + "dwd_hash": "c5db32c6644d6fa86a11ad3eb0e9138c" + }, + { + "platform_coupon_redemption_id": 3032475372292933, + "ods_hash": "6192fdddad693e6b830de56e00d1ae03", + "dwd_hash": "2855b6d29d6369102e50a0284e7180f0" + }, + { + "platform_coupon_redemption_id": 3032477129886597, + "ods_hash": "d31372d994f924ed0aab652bd7927830", + "dwd_hash": "b67178e393562ac2339de4cb73826868" + }, + { + "platform_coupon_redemption_id": 3032478156491589, + "ods_hash": "ec10e4590356cc2001002b113a3983eb", + "dwd_hash": "2993d843f8d69ce29f24c5190dc4cf21" + }, + { + "platform_coupon_redemption_id": 3032479225351045, + "ods_hash": "b86a9f98227bdeac1764a74f01b17879", + "dwd_hash": "c20e2f34707b2d264773e0ae23032f5b" + }, + { + "platform_coupon_redemption_id": 3032485824564293, + "ods_hash": "57f5d07dca5bd07a1b53954ab293304c", + "dwd_hash": "e0f3b055396d07172654e13847ebd686" + }, + { + "platform_coupon_redemption_id": 3032487075646277, + "ods_hash": "82daff37a6627cd225e074858e9e0766", + "dwd_hash": "7490b7f1e472b989886217626d59c736" + }, + { + "platform_coupon_redemption_id": 3032502695480197, + "ods_hash": "5287bb370a679da53e9cfbf2259e8c86", + "dwd_hash": "03e7c4f9e1f5819091767bc21a499398" + }, + { + "platform_coupon_redemption_id": 3032503077292869, + "ods_hash": "f1b1930fe1381ab47694974ad27adb11", + "dwd_hash": "555ff8475fb2e4384240fb2b8e9889e6" + }, + { + "platform_coupon_redemption_id": 3032512750996549, + "ods_hash": "6ed120c0db6f3be773d51f4d0b08c9cc", + "dwd_hash": "a47cd663914c02ca01c18cf9b56ce3a7" + }, + { + "platform_coupon_redemption_id": 3032513693092677, + "ods_hash": "e219cd2c6df3adfcb49254a7ee7b49e0", + "dwd_hash": "aa89eb9506448a9163f7284ea5423dd3" + }, + { + "platform_coupon_redemption_id": 3032532181863301, + "ods_hash": "90d8c127090692de212431ab2e018aeb", + "dwd_hash": "bfcc7e15776a14b4c9ae6ba0c3f3db9e" + }, + { + "platform_coupon_redemption_id": 3032532565429381, + "ods_hash": "931c8d2c49719a5a07f285021c8037ff", + "dwd_hash": "8a028eab855ed366fc673b4ad10c8253" + }, + { + "platform_coupon_redemption_id": 3032532664470597, + "ods_hash": "3d824180d46382ef8bdc899d161abf13", + "dwd_hash": "e09bdc55674f89a41b135e793f227ed3" + }, + { + "platform_coupon_redemption_id": 3032538489785413, + "ods_hash": "a872a53844ca922ce5eac90849f79a6c", + "dwd_hash": "2c4f470ed97a31ea007f49cfb840a56c" + }, + { + "platform_coupon_redemption_id": 3032539059047301, + "ods_hash": "a6e9829bf80c02e4178a7edc5a964a31", + "dwd_hash": "e46444f45e79023a1f14f7b5fce5e7cf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17367, + "diff": -229 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3327, + "ods": 3460, + "diff": -133 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 377823.0, + "ods_sum": 408957.0, + "diff": -31134.0 + } + ], + "mismatch": 3327, + "mismatch_samples": [ + { + "payment_id": 3067985682090309, + "ods_hash": "3fc1b0c33317dfa665a27e4c6951df35", + "dwd_hash": "68e84fef61dbb87e816dc7e07215c439" + }, + { + "payment_id": 3067992371906693, + "ods_hash": "e2ddca032d65f2b469cbcb5a1c62726b", + "dwd_hash": "1e5418966ac5df8c9a3c24f716ba1cf4" + }, + { + "payment_id": 3068007471024261, + "ods_hash": "d07ee5a773f8c1af4ca71aa56cadf0f0", + "dwd_hash": "cb4016f4d6fb77c0482ab422cbb53f68" + }, + { + "payment_id": 3069705957428357, + "ods_hash": "75de018db3d090ea2f7249a56a1cf83f", + "dwd_hash": "1103c0c2a988aa1fbaa32f7bc98fdd74" + }, + { + "payment_id": 3069707204529285, + "ods_hash": "625ddfdd081bbad30d0789283b7eea93", + "dwd_hash": "5d84f9836e4dbf21c8ad9fc9f1d39e9c" + }, + { + "payment_id": 3071062798206917, + "ods_hash": "57bc2de7e2d87f91c284c6845295dc84", + "dwd_hash": "3bb47e477051979713efde7400b0c51e" + }, + { + "payment_id": 3066726317919173, + "ods_hash": "e7fb6c3b34a6b147e07ef160a7749612", + "dwd_hash": "3b6963719d96e8fe04a1293c5bd0cf71" + }, + { + "payment_id": 3066729697627013, + "ods_hash": "fce0b9a0525f58bad7469554d2bb7d08", + "dwd_hash": "77831e2280589e0aafef46569cc4c455" + }, + { + "payment_id": 3066733822840005, + "ods_hash": "0337e765c51fbb925f2d9926a1cd70d7", + "dwd_hash": "d432644ec0b3d97a203af7cff8db7ff1" + }, + { + "payment_id": 3066743160998853, + "ods_hash": "6c79a5590b187a8a44ef482f934d19f4", + "dwd_hash": "b918366e25755c42b19b3b0bc4284461" + }, + { + "payment_id": 3066743226895301, + "ods_hash": "f3c5c20af54cb98cac558c3b4fac4936", + "dwd_hash": "747e22c0e8d0c5d7d3e6d1388edf7a4d" + }, + { + "payment_id": 3066744116235205, + "ods_hash": "e0bf5cadff6916c75fc70b6332b79071", + "dwd_hash": "c4007f4997df7e0d373a3aa91d7fc14b" + }, + { + "payment_id": 3066756385196869, + "ods_hash": "f2ca95c9c7298dfbc9e8cd02f633c277", + "dwd_hash": "7e8f76a4a6626a263cdf6cd0175d9b06" + }, + { + "payment_id": 3066762563636421, + "ods_hash": "5456847292f64d3e236472c77bc89385", + "dwd_hash": "4cd94ecf6f48073fe9596dd95053b7f9" + }, + { + "payment_id": 3031559651576965, + "ods_hash": "4ced7f3c79c478fd2e39311ac26bd1d1", + "dwd_hash": "918854dbb3ed9e47d3fa8be767a8ef94" + }, + { + "payment_id": 3031559791479877, + "ods_hash": "c33f4c968c36c045fe27c5dac7a36fa9", + "dwd_hash": "6f505b04cebeee84d1d2d6ceddca817b" + }, + { + "payment_id": 3031580137622597, + "ods_hash": "a6996a8ad524e13ea90e4b01c814e9e8", + "dwd_hash": "d52aa1811ad27cc6eed1802d758ac250" + }, + { + "payment_id": 3031591023610949, + "ods_hash": "887ee97530f861952835641816e81294", + "dwd_hash": "6fec69fa0bbb1c3a6aa471734749ec79" + }, + { + "payment_id": 3031604208847749, + "ods_hash": "03b427294627273812cd64ee019d1da8", + "dwd_hash": "df41fb225fa4159577ebbbc2716ea46f" + }, + { + "payment_id": 3031604942982022, + "ods_hash": "9aa7b299abaa47385f87d54b61220588", + "dwd_hash": "708514880d545fee4c3316d847763458" + }, + { + "payment_id": 3031610632621125, + "ods_hash": "e7262fb8a1c678298c92b047248bea69", + "dwd_hash": "33bd17f9216f7809552e20129066e79b" + }, + { + "payment_id": 3031646425893765, + "ods_hash": "f8151734b915899e20227405044bda41", + "dwd_hash": "cb7c87075da05bb6ebc609b93296f4ce" + }, + { + "payment_id": 3031646480878661, + "ods_hash": "816620c41d30d521efc2751160d2d73e", + "dwd_hash": "7d73f8ac50236a1c7c29753c014630b7" + }, + { + "payment_id": 3031647109942149, + "ods_hash": "54e65fa1d8e984329dacc5739f5131fb", + "dwd_hash": "3ffbce0e28cec58cfdbaa9110d39b222" + }, + { + "payment_id": 3031653081467781, + "ods_hash": "e8713ce3d63ab21c528f1ac7eafdf0c6", + "dwd_hash": "00e1cc3afd7df7bcbf3dee7b818d3b92" + }, + { + "payment_id": 3031700023708549, + "ods_hash": "dae1e620171439059e1ad53e082d4d95", + "dwd_hash": "5b3f94f2ad5e908ddd8a9f702dc707ca" + }, + { + "payment_id": 3031742585817925, + "ods_hash": "beca4f96297e8635c51eda185c6dc6e1", + "dwd_hash": "0faf2ef54714b0fba73d9a58c35ec9f0" + }, + { + "payment_id": 3031896026073925, + "ods_hash": "56a2b3a10862628d2e9b3a685606787c", + "dwd_hash": "037ec8cea5c0bbc776f516cf70abeb56" + }, + { + "payment_id": 3032139308223365, + "ods_hash": "516d638f963cb1d46ccc928db7494538", + "dwd_hash": "48c362eadfdda2a53bebbfc46b8e18ed" + }, + { + "payment_id": 3032262312545413, + "ods_hash": "91f8848ed6ff3d00862b0409d7377c24", + "dwd_hash": "44c6078d24e95f8826364aec126fc378" + }, + { + "payment_id": 3032291879341125, + "ods_hash": "7bfed360999a0868b2dc355e3361e659", + "dwd_hash": "b9d539abffdc9d6251cc5419db6982d5" + }, + { + "payment_id": 3032346301270917, + "ods_hash": "2f99b1844a028a64085f4a8202bfc955", + "dwd_hash": "440f021106a87d8b36d5810324573ec7" + }, + { + "payment_id": 3032386576796549, + "ods_hash": "80f02a9cd2a937a9443d2aaf13a79ce5", + "dwd_hash": "18cd2213a5dc6c77b1ccd96cc4c2ef6d" + }, + { + "payment_id": 3032388004400261, + "ods_hash": "8b84cfc9553cfa3b5f69d2ba4f95a2a5", + "dwd_hash": "d26f4f3d6612a374492cfd8d89631d0c" + }, + { + "payment_id": 3032388073573509, + "ods_hash": "db04895e512287533819ed25c4095d16", + "dwd_hash": "485d7c31c8c8892dd8c43d3b2c5b2891" + }, + { + "payment_id": 3032388337109893, + "ods_hash": "7bda329477f028f81f2cb93b02ad4ccd", + "dwd_hash": "bc1e200319bb51e01f5627d927b92ce9" + }, + { + "payment_id": 3032390340365381, + "ods_hash": "5d37a665aff58e8578cf6644cc98dee8", + "dwd_hash": "81f178683b1e1152c6eb916cee47144c" + }, + { + "payment_id": 3032455170378629, + "ods_hash": "94734928709786d31010613b42c4a33a", + "dwd_hash": "7ea6cc4b19de175374d4b88fd11234c7" + }, + { + "payment_id": 3032463726283589, + "ods_hash": "2c4a63008373938cde980cb327402657", + "dwd_hash": "8682da46640d227ffe9bdf023185cbf3" + }, + { + "payment_id": 3032467838585925, + "ods_hash": "6157bc429a95ba31691502df02eff4ad", + "dwd_hash": "3fb1312af27b220b09bd6e6115c1a78a" + }, + { + "payment_id": 3032473028955205, + "ods_hash": "84e2e961964af31be3e25a3e1d3d0a36", + "dwd_hash": "e57dd08f65cf7a2acd80fcf333f55266" + }, + { + "payment_id": 3032476571552837, + "ods_hash": "631ebaeb603a0092a195fcfda72de6ed", + "dwd_hash": "81900c740ee338bfe70bd56dfa16d83c" + }, + { + "payment_id": 3032476646411141, + "ods_hash": "e53bafbdc5319917ca463d9c9a45276c", + "dwd_hash": "3acf561dd6b1f63a62da8b70a59deb8a" + }, + { + "payment_id": 3032490419719045, + "ods_hash": "91054d96271815777c4861ccea8d1424", + "dwd_hash": "b2c4a5e03e8bb44ac5b2605f61ef7156" + }, + { + "payment_id": 3032499555765061, + "ods_hash": "100d3cd73e7221d8f4821997415d6ad8", + "dwd_hash": "2ceb2d51f7702de5fcabbf85784bf438" + }, + { + "payment_id": 3032509391080517, + "ods_hash": "706ecd51f4d51ba3f77dc488e1250311", + "dwd_hash": "f009eb3c08023e7345cf36f4248c5c9f" + }, + { + "payment_id": 3032514145766213, + "ods_hash": "09f424040e8033657fb3322e278802b0", + "dwd_hash": "f28f431afae481130b65824a3f67ab93" + }, + { + "payment_id": 3032514934295429, + "ods_hash": "6136c67d552535812c9973192745636f", + "dwd_hash": "b0ca057779e94b718b2fcc24d1ddc8fd" + }, + { + "payment_id": 3032522596600709, + "ods_hash": "1fc3bebd163defec3198415146b54895", + "dwd_hash": "a418de66933f44544379b82b4cadf622" + }, + { + "payment_id": 3032530121657413, + "ods_hash": "2edd4a13b39b12021bbd120398d27dda", + "dwd_hash": "82bf518495efc13cf592b5b4e80c3c13" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 8, + "diff": -1 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -10087.0, + "diff": 10000.0 + } + ], + "mismatch": 7, + "mismatch_samples": [ + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 46, + "diff": -1 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23639, + "total_mismatch": 47825 + }, + "generated_at": "2026-01-31T22:29:42.982189+08:00" + } + ], + "api_to_ods": { + "total_missing": 519, + "total_mismatch": 785, + "total_errors": 0 + }, + "total_missing": 519, + "total_mismatch": 785, + "total_errors": 0, + "generated_at": "2026-01-31T22:29:42.982218+08:00", + "backfill_result": { + "total_missing": 293, + "total_mismatch": 128, + "backfilled": 391, + "errors": 0, + "details": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "missing": 0, + "mismatch": 32, + "backfilled": 4, + "error": null + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "missing": 2, + "mismatch": 0, + "backfilled": 0, + "error": null + }, + { + "task_code": "ODS_TABLE_USE", + "missing": 14, + "mismatch": 0, + "backfilled": 14, + "error": null + }, + { + "task_code": "ODS_PAYMENT", + "missing": 18, + "mismatch": 0, + "backfilled": 18, + "error": null + }, + { + "task_code": "ODS_REFUND", + "missing": 1, + "mismatch": 0, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "missing": 3, + "mismatch": 0, + "backfilled": 3, + "error": null + }, + { + "task_code": "ODS_MEMBER", + "missing": 0, + "mismatch": 1, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_MEMBER_CARD", + "missing": 0, + "mismatch": 1, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "missing": 1, + "mismatch": 0, + "backfilled": 1, + "error": null + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "missing": 9, + "mismatch": 0, + "backfilled": 9, + "error": null + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "missing": 0, + "mismatch": 26, + "backfilled": 26, + "error": null + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "missing": 240, + "mismatch": 0, + "backfilled": 240, + "error": null + }, + { + "task_code": "ODS_TABLES", + "missing": 0, + "mismatch": 42, + "backfilled": 42, + "error": null + }, + { + "task_code": "ODS_STORE_GOODS", + "missing": 0, + "mismatch": 26, + "backfilled": 26, + "error": null + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "missing": 5, + "mismatch": 0, + "backfilled": 5, + "error": null + } + ] + }, + "post_check": { + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 4, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10198, + "records_with_pk": 10198, + "missing": 2, + "missing_samples": [ + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12024, + "records_with_pk": 12024, + "missing": 2, + "missing_samples": [ + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8318, + "records_with_pk": 8318, + "missing": 2, + "missing_samples": [ + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 7, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "6c2850095d0b3027f62ff752d71b7f3fede0b3a960d7cdfa99e519d4a4e9c50c" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "dda7ed403e883dd8543546b43b54c0d60d2348ff3b9ffd7e58881ae79bf09940" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "a30b1c5e7c29af7c8c67f8f801c134d20b16cc3bd5a08138a871743c05e966f3" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2793026180993093, + "content_hash": "08070197a597e2f91644251afc8c034a74733ea1b2f707d908cc1b76df78432d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 7, + "total_mismatch": 17, + "total_errors": 0, + "generated_at": "2026-01-31T22:46:29.948709+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -20283, + "total_mismatch": 36277 + }, + "generated_at": "2026-01-31T22:46:49.302897+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10198, + "records_with_pk": 10198, + "missing": 2, + "missing_samples": [ + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12024, + "records_with_pk": 12024, + "missing": 2, + "missing_samples": [ + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2512, + "records_with_pk": 2512, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8318, + "records_with_pk": 8318, + "missing": 2, + "missing_samples": [ + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 7, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "6c2850095d0b3027f62ff752d71b7f3fede0b3a960d7cdfa99e519d4a4e9c50c" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "dda7ed403e883dd8543546b43b54c0d60d2348ff3b9ffd7e58881ae79bf09940" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "a30b1c5e7c29af7c8c67f8f801c134d20b16cc3bd5a08138a871743c05e966f3" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2793026180993093, + "content_hash": "08070197a597e2f91644251afc8c034a74733ea1b2f707d908cc1b76df78432d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 7, + "total_mismatch": 17, + "total_errors": 0, + "generated_at": "2026-01-31T22:49:54.529096+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [], + "mismatch": 23, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "8d78e002b0e218a7a6762063f7fc1a41", + "dwd_hash": "21510054842f82ca1f66350009a26111" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "9c952c3acb0dc876475a5b1f3894ec11", + "dwd_hash": "1d5f7efb2d5a18ff05819b6c3281103b" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "7ba006db5bb328146c796ee7995b9173", + "dwd_hash": "971e8c68a7fe3c9f57b4e1c2c9bb77d3" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "707180b7f63682b712ced21d0dceca0c", + "dwd_hash": "776c04ce71c8d365f2e21c8b91b0fb8d" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "a7cf68b4b97f3a5ed1df6a0a1b42c45d", + "dwd_hash": "cb82df04044977c1d94c27220220a575" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [], + "mismatch": 466, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 751, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [], + "mismatch": 149, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [], + "mismatch": 14, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ], + "mismatch": 1246, + "mismatch_samples": [ + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "635a080b86f7af49aab18ed75b91cd6e", + "dwd_hash": "ee82937f347622507b50f33433d49911" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "6c70037436cfdc541b885bbe3547a67c", + "dwd_hash": "a136063725a992c5acbd206f9e016256" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "496c75098880ca0710ca0157f5c85842", + "dwd_hash": "7fc6eee1b67441324c8ab7b485802ce6" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "04af4411bc3e2208ac427aa01a5c2a5a", + "dwd_hash": "518bc8e6e636e3d57a9af0252ce7e832" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "86c2ee476c4c2e10b6eca6c5ef2fdef1", + "dwd_hash": "f5d841bea237b191886b2f3f14fafd87" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "eb164bec2a6cdb600dcacbbe5133c033", + "dwd_hash": "2f85443bc2d5dd923d549e98347922e5" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "06b975f861ac4a92ae59ef7670d703fc", + "dwd_hash": "3eaac84a7dfc55bc28e124f2b4665491" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "ce4a9d03acffb7c1c7ba13378574ac17", + "dwd_hash": "1fc70488d4d8b52c101b37dfbc90a641" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "06294ca72c6157e220455a77ff336906", + "dwd_hash": "4eec0c8c5788067144e15f60e6eca543" + }, + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "8592ee771a6c1455d8f37d07fbf255fa", + "dwd_hash": "1a6e8491dc07bb85dccb17a6724e7364" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "f27c5816b184dc03f03ecd4ff031b011", + "dwd_hash": "f7e5819db114a6d1c95d26aa84274961" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "f31457b5efd822e31f4e90e0052ceb67", + "dwd_hash": "d54df55a88b9fd06a11292c70783020f" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "23dfdc8f61bc3f0383369aec66d55a7b", + "dwd_hash": "d5d7d08060f9344bd11339bd08b3d567" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "bc6df0bb6c02a401550aedd9c3dfd06c", + "dwd_hash": "aaf24a15ba1e80bf7c893ba4c0bab7e9" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "02cc736e12583b33d76cab92ac552d2e", + "dwd_hash": "d3c600362e36778cf4a79f99d42019db" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "01180cf5c90c9032856625329f898598", + "dwd_hash": "e4b1f93cffcf5e755edd55e3f28fd4f0" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "5cf954b04d395767b483e618e6ccbf6b", + "dwd_hash": "12080ae3f0c6b93629b29356293b28ae" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "cf73511f62a212de32cd0350c59909b5", + "dwd_hash": "a8ed437c79f4c00339d8aad3a683e6c7" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "8193ec59d29f5b16f67da09703064058", + "dwd_hash": "98e0a780d184c3b2fddf57ac27fd509a" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "8164b762a9db344c69220e23bb42c256", + "dwd_hash": "a2d0d47d939b60f9f1040521e96a7901" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ], + "mismatch": 1575, + "mismatch_samples": [ + { + "store_goods_sale_id": 2803522768178373, + "ods_hash": "01e7cc478a0234643d579fcb4d5ce33a", + "dwd_hash": "46a8ddad80a4b89d2d6fbc30ee255cc3" + }, + { + "store_goods_sale_id": 2800360636794885, + "ods_hash": "7366d9c36c1ae2cbc3ec6e970dbdb669", + "dwd_hash": "2da140d65f5751dd531cb432e2739452" + }, + { + "store_goods_sale_id": 2800363077912517, + "ods_hash": "fc2652ae2814485cd9bb12742efbc512", + "dwd_hash": "500d4df95567ccbd6a0dec3c136711eb" + }, + { + "store_goods_sale_id": 2814899857361605, + "ods_hash": "923e5ae4e9c7931f6d89dbb26c893237", + "dwd_hash": "21f31b7c51e685dc81c90063b2c3966d" + }, + { + "store_goods_sale_id": 2800372000393221, + "ods_hash": "94623a8d0771d17bca848df92b9bc6da", + "dwd_hash": "5a0186b46a0a506c0447d86fcad08f3f" + }, + { + "store_goods_sale_id": 2800383251105733, + "ods_hash": "7eca6cf5f9b68799196c8d8551138edf", + "dwd_hash": "156dd405837738359d2549745283cc4a" + }, + { + "store_goods_sale_id": 2800388503783429, + "ods_hash": "0c24516db7919d18ec5ea01710b43e3e", + "dwd_hash": "de881da5feb5a4e119588377c5c31a08" + }, + { + "store_goods_sale_id": 2800388807428165, + "ods_hash": "9313f060e26128c90f07ad414171e1b3", + "dwd_hash": "7d2ce2e7a6dfd3613a1cbf68172c9241" + }, + { + "store_goods_sale_id": 2800392615839685, + "ods_hash": "d3b8a9f24daf1789cddf21964d102a4a", + "dwd_hash": "96fba07d0af2dfb1e7ad243c41ee98e1" + }, + { + "store_goods_sale_id": 2800410964068357, + "ods_hash": "51af7ed2c80097c5a4f4e6b1583216d0", + "dwd_hash": "cc867646e4e4bebb037337ad376aa2f5" + }, + { + "store_goods_sale_id": 2800423576078277, + "ods_hash": "7d4599a12d95b937b60b2baefeaa3c34", + "dwd_hash": "de8a58b62e001e564b8c63b578a49596" + }, + { + "store_goods_sale_id": 2800423576094661, + "ods_hash": "5f3cccbd69c294bb3c8bf37e1d2d8000", + "dwd_hash": "f665b813a328265efd16b44904a1a019" + }, + { + "store_goods_sale_id": 2800433691871237, + "ods_hash": "86e144d832fb2a3c55faddc0cd1a8cbc", + "dwd_hash": "c68b2b0721d6ef5da5be916ebeff4aac" + }, + { + "store_goods_sale_id": 2800448081463301, + "ods_hash": "fe4be1b71517a7892c9046401e4a9854", + "dwd_hash": "249a99119156a1b0f50b402203cab089" + }, + { + "store_goods_sale_id": 2800454939133957, + "ods_hash": "32b89a5da506d066a6b1ca023a0cd657", + "dwd_hash": "6cd9712d7f9c54d40691e59b9f466fb3" + }, + { + "store_goods_sale_id": 2800479196317637, + "ods_hash": "1a6ec43be685e3f971b63a3e771e7700", + "dwd_hash": "19565d4ef0dc568fac5bae5ffdffb071" + }, + { + "store_goods_sale_id": 2800524098013189, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098013190, + "ods_hash": "2c8822d34ae0f8e78f1d9faed988b827", + "dwd_hash": "003414c3e17e1173f3e0de5b851d23c8" + }, + { + "store_goods_sale_id": 2800524098029573, + "ods_hash": "6d15a3abb6f37dcdcb16eded23a4f11b", + "dwd_hash": "9e07a7757fe9107cc0e7fab8adff13f2" + }, + { + "store_goods_sale_id": 2800526171703301, + "ods_hash": "c456e1626855c91b20ea56598f61e534", + "dwd_hash": "3d59314ad96be3faa8751bdc4dcf3f0f" + }, + { + "store_goods_sale_id": 2800526171768837, + "ods_hash": "d422052366657d0fa6632cda4129447e", + "dwd_hash": "3b5e5e0d779202b4023e54d963e3b1c6" + }, + { + "store_goods_sale_id": 2800526171768838, + "ods_hash": "73c38b13d88adf0123ae44f552a1a5bf", + "dwd_hash": "669ba84eb9e3e2d4ae08f50c1e944d2a" + }, + { + "store_goods_sale_id": 2800105583071877, + "ods_hash": "1777402d018d7b78045eb26df11fb692", + "dwd_hash": "a0b56214b67eddb53af12d83ec765503" + }, + { + "store_goods_sale_id": 2800121045255813, + "ods_hash": "af361cce35def6de1ef5f1133b2b0d14", + "dwd_hash": "47f2eb069668a83b79eff2c4979e9152" + }, + { + "store_goods_sale_id": 2800177654154629, + "ods_hash": "191045823a52f61c544c2ee2cdd1079a", + "dwd_hash": "d15c9418060e17de2276cb23e0020153" + }, + { + "store_goods_sale_id": 2800177654154630, + "ods_hash": "f088501cd6decd68f79a809be68baadb", + "dwd_hash": "3a9def9be4cbce01b58bf25067f3b023" + }, + { + "store_goods_sale_id": 2800183502440453, + "ods_hash": "6c87c2c47cae68563df648e619e2099e", + "dwd_hash": "75f660ad6c1227caf1cb2b9740ad118a" + }, + { + "store_goods_sale_id": 2800215932798981, + "ods_hash": "d0583dd12dce4dfa024cf16d2112d3f1", + "dwd_hash": "1c39ac6ea38056ec7ef681824074a4b9" + }, + { + "store_goods_sale_id": 2800317000320901, + "ods_hash": "b87c3cf0156b6974e844daf114e0752f", + "dwd_hash": "a1303831425648f3d7f6f3c1a6488e49" + }, + { + "store_goods_sale_id": 2800320956221317, + "ods_hash": "2123bfecffbcac6d9046d2590e219599", + "dwd_hash": "f07769734f027625de3a1bd9df475489" + }, + { + "store_goods_sale_id": 2800343416604741, + "ods_hash": "807b1b55ea4a2d0543e5615fec363fb3", + "dwd_hash": "ae3c2351cf9b62f8a12ff2f7ac8a854a" + }, + { + "store_goods_sale_id": 2800348155381829, + "ods_hash": "1278e1fba205cfe19e786582a1a01c5c", + "dwd_hash": "2ee8193b55446ea8b0c413bfb7f9c7ee" + }, + { + "store_goods_sale_id": 2800353094305797, + "ods_hash": "96d9efdcaa534218bdb2d88e2a536c19", + "dwd_hash": "8efc5b5d399c9ec1673e835c15be0523" + }, + { + "store_goods_sale_id": 2800353215072133, + "ods_hash": "267a67364e48606fc20835e19c4e5d29", + "dwd_hash": "6ac01e723add79abfc06bc2689040bbf" + }, + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ], + "mismatch": 351, + "mismatch_samples": [ + { + "assistant_service_id": 2800843723868293, + "ods_hash": "30264aab171973d97dcb859e465da345", + "dwd_hash": "9b5579192632cd458b2e55baac7c6d17" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "d92b5b471478b93dc08da30595c6da45", + "dwd_hash": "8a4214136f120344a7c15cfb498dfec6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "744df72d790ac987de2257e5c3afaa93", + "dwd_hash": "71a28c396e5496a7449cdd0b33725fb7" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "553caa3a9b88185f70965fcd17cea391", + "dwd_hash": "f625afbaca95ce5230156f12d8c6a1f8" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "cf4c8821d777b23e963d4a69999a8b60", + "dwd_hash": "5e4afe65406bc72a5c3f70312afe5936" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "469bd577cc0e9635074c69a8133ddf47", + "dwd_hash": "3123702fa56545a6f51c39b0d1b8003a" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "ddc02693f12c70389b14f250b66765bb", + "dwd_hash": "00a419a2607fee51442cb73845e32529" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c8a2c5a9d2024298fd55ae91f7bda335", + "dwd_hash": "2f23d1a48e6d64a24aae202be23a2ea9" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "aa096a8e643abd30bcb81a53f3462a78", + "dwd_hash": "814349eb2137889972a26760e2363010" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e0b04158f8fa3a55a2327ea161fedc5", + "dwd_hash": "e1171462bb344cd19f14be18dc738ba2" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "45081118485ed375b5735d680573b504", + "dwd_hash": "08f7ce9b72b6507bd24bf8a6b35e6244" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "8e1d52da7b794e6b754745aaba56259e", + "dwd_hash": "dffb02f7f0f1953e468c2708e2a3d334" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "79c9d7af9ce1f8d8dac2d818e862b8a1", + "dwd_hash": "866bf94e6525b65b67ac348228ed6ea5" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "c4cc3f18b6a96f418bb983ca757aa8b9", + "dwd_hash": "4bc11fcc002294111f7779a03e4ab630" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "db9904734233b220098f99d768040e71", + "dwd_hash": "5bca19b227a3b55ccf7f975817ff11a2" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "c6b6894ccb0577c8eb0b2efa44bdb2b5", + "dwd_hash": "0d8022bddcccc4d98ba5e8cbb0916405" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "0e5c02deadaf16904fd358defff5e738", + "dwd_hash": "36ce094011cf627de1e748649074abf2" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "4ba77fbd5af7aa59774bd74451f81e67", + "dwd_hash": "a6a44c1fb136414ced712104df551bd9" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "619e7c95e57b5e787471755de40df6bc", + "dwd_hash": "48f90fb25e23b6a2b3feeae0458d3a73" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "9f0106808ebe3eeb19899ac5f161d605", + "dwd_hash": "3bf6dd44b5196e0ffad7cba26dacf8b9" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + }, + { + "assistant_service_id": 2802363811252293, + "ods_hash": "93627910a5181e201965a44ca86702c1", + "dwd_hash": "16eb97fb27fcbd1f5ecc683f0bc077c2" + }, + { + "assistant_service_id": 2802363811465285, + "ods_hash": "6c5588429261bd47f8f96b8752ea0952", + "dwd_hash": "20882640d390668cba5a5834d084d930" + }, + { + "assistant_service_id": 2802363811678277, + "ods_hash": "51c818d5ae1917427e60cbd8835797b5", + "dwd_hash": "2116101c9c5f4d21d13f629510fbe591" + }, + { + "assistant_service_id": 2802394734644421, + "ods_hash": "327b45e89b493bcc9e004aedac4ef95f", + "dwd_hash": "7886f0936fc9e5b8335815271699caaf" + }, + { + "assistant_service_id": 2802394734890181, + "ods_hash": "f22f371f9de79af3ef22cd0b76e33338", + "dwd_hash": "f0416ea6ae7289cf65ae1fb00582aaec" + }, + { + "assistant_service_id": 2802394735103173, + "ods_hash": "ef94e963ad77877b106f6df6c90bce57", + "dwd_hash": "5a8b413b21563130fad67d841efddb19" + }, + { + "assistant_service_id": 2802394735332549, + "ods_hash": "397e0023f16027966ab332ea39ff93d3", + "dwd_hash": "c129c37dff5a85cdec85515a3c14ce1a" + }, + { + "assistant_service_id": 2802399882299461, + "ods_hash": "0b13fdafc344807ddfebf663c3f1db04", + "dwd_hash": "c3966341fc20ade840292f89584bc016" + }, + { + "assistant_service_id": 2802399882528837, + "ods_hash": "0221abbddaaa5140a54b28cd708b4b1b", + "dwd_hash": "561472456c6de33ae0ad6fa01770cced" + }, + { + "assistant_service_id": 2802457542379589, + "ods_hash": "8351c42c605e3df4f9706a58486c41f9", + "dwd_hash": "b9f638f1df97e5122fd1189fd7f207f5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ], + "mismatch": 1007, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800019219138181, + "ods_hash": "dfd24d64cdc5067e8bd9453fd905e2f0", + "dwd_hash": "0871eebbbd8e963c49d6ddac734b7f6c" + }, + { + "platform_coupon_redemption_id": 2800047515239877, + "ods_hash": "585344f8b8758ab70a8ef840e564a9f9", + "dwd_hash": "5ebd187e3fb4c4cb756841c4f2ddedd5" + }, + { + "platform_coupon_redemption_id": 2800105072772741, + "ods_hash": "a0bf1d8adb0218690235c567bfdf5a34", + "dwd_hash": "d6c57312f47f1cc4a938c8c56243d87f" + }, + { + "platform_coupon_redemption_id": 2800106678601157, + "ods_hash": "80258340c76ea5d872f6e018c8f63625", + "dwd_hash": "b3b78ce06a5c2ed093a42e50f405b81e" + }, + { + "platform_coupon_redemption_id": 2800107723100805, + "ods_hash": "15d4b5528f13d37d10bce83a05ad691d", + "dwd_hash": "c1a9649fdca3f71e26f73612630115d0" + }, + { + "platform_coupon_redemption_id": 2800130347648453, + "ods_hash": "fd89f35e82a9e6674b56779e767a1f59", + "dwd_hash": "e485e0e2cf51e7fb945eb9f34326b91b" + }, + { + "platform_coupon_redemption_id": 2800008264287621, + "ods_hash": "8e0723f162f854156953cfa8ce86e910", + "dwd_hash": "a14b4d018437e794190556c2d5315f53" + }, + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ], + "mismatch": 1833, + "mismatch_samples": [ + { + "payment_id": 2800177653106053, + "ods_hash": "d9944d96522ad081103c0e11e69cbcf6", + "dwd_hash": "cdcf354c4c9f6d077f12f7a05ccea83a" + }, + { + "payment_id": 2800183500736517, + "ods_hash": "ca13259d6e9111d9f0e0415d42eac08d", + "dwd_hash": "701b386bfd3cad5efc19b390bd44c117" + }, + { + "payment_id": 2800194312914885, + "ods_hash": "057bfef9aa9386bd18aaed6b3a2d0260", + "dwd_hash": "45765c1cc817d6b64b0babbf71507534" + }, + { + "payment_id": 2800215931783173, + "ods_hash": "cd98ae57bddaeba2046a4f1a6ba1cb6f", + "dwd_hash": "8017464669c608724b0a2c66742d4eb8" + }, + { + "payment_id": 2800229440390981, + "ods_hash": "6c6cf5d89e4997993ee35030e407da97", + "dwd_hash": "08567329115a3d134549967dd7e7a7ef" + }, + { + "payment_id": 2800239122892805, + "ods_hash": "72c949841cfe7cb199f6e8c71aebaab7", + "dwd_hash": "341a9393618ebcf7ee4fcab84b67bd82" + }, + { + "payment_id": 2800239191459845, + "ods_hash": "5a26b289dbbe093a39acb871dc76bb1d", + "dwd_hash": "79b644c3389ffd2060a1d7180513c108" + }, + { + "payment_id": 2800259332867909, + "ods_hash": "86a448638d141da78c768c9bed921624", + "dwd_hash": "79615040bdffabe27ba40af438f13a6e" + }, + { + "payment_id": 2800262081677317, + "ods_hash": "0fa1a522ed7344ad6a5751d7a33eea52", + "dwd_hash": "556409073a1ed4534a446357feb735fb" + }, + { + "payment_id": 2800265378842501, + "ods_hash": "ed8f7d7e058ddaa99b49ad73587d0621", + "dwd_hash": "d4b92b498569ca10674baf08da3b620e" + }, + { + "payment_id": 2800272210315141, + "ods_hash": "af8651f144ebafdc396146ee06fd712d", + "dwd_hash": "7587112b930da33baefe9a0add4ce178" + }, + { + "payment_id": 2800301295667205, + "ods_hash": "a28b261baefb89e188d523e4491aabe6", + "dwd_hash": "449a62fb9f5f2be80779b1dabc47f9c2" + }, + { + "payment_id": 2800311970187205, + "ods_hash": "1becbbe65f1e83be6ba3f769df9e3a40", + "dwd_hash": "f3fbccc1b1aaf3b11f5da1c4289b07dc" + }, + { + "payment_id": 2800316998600581, + "ods_hash": "03f8e5657dc6931e45667390213dfcd3", + "dwd_hash": "e2d34e0723fdf0a037a96b9e2fbe891c" + }, + { + "payment_id": 2800050343954053, + "ods_hash": "525f0f3221d79f6e0e020f4917ac9f16", + "dwd_hash": "be18f7b6cf0a1a2e25eb843b6dd266da" + }, + { + "payment_id": 2800105582072453, + "ods_hash": "c43c4953a67bb933b6f3dffe5d065741", + "dwd_hash": "cf70fe6e52d58772a6e66d1d68876385" + }, + { + "payment_id": 2800121044076165, + "ods_hash": "7de8e975fbe0215e2361ffc814c29cec", + "dwd_hash": "3a89f2eeb795a0add90926577c8b56d5" + }, + { + "payment_id": 2800144143107717, + "ods_hash": "928431d63c0f49007820d62e1186b583", + "dwd_hash": "18b4cfde5a46fb44d1c27cf5dc2e9b80" + }, + { + "payment_id": 2800144210924165, + "ods_hash": "cbcd3b9f74fcf63e6000702e6fcb8c70", + "dwd_hash": "88ad32240772bc739650c18c8769fa18" + }, + { + "payment_id": 2800144332935813, + "ods_hash": "7921be755007265828b2789905e45765", + "dwd_hash": "1b257aa214288e06ff0f2341c9511cee" + }, + { + "payment_id": 2800169000388037, + "ods_hash": "4ac5f9c5cd7a0a8fa43c74e4be8d0b8a", + "dwd_hash": "205eee880dfd727d663700f4e9f06686" + }, + { + "payment_id": 2800169063600773, + "ods_hash": "503fcf875540a38a62234a2a4a3c3195", + "dwd_hash": "99ff9f82c804c4919c0cebbccb095336" + }, + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21529, + "total_mismatch": 43692 + }, + "generated_at": "2026-01-31T22:50:08.908439+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10198, + "records_with_pk": 10198, + "missing": 2, + "missing_samples": [ + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12024, + "records_with_pk": 12024, + "missing": 2, + "missing_samples": [ + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8318, + "records_with_pk": 8318, + "missing": 2, + "missing_samples": [ + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "ad570076c51b6feb0a41f4cc4c0ee893174bc90a5b2311992a902dea42d52125" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "af9a67e0de8b1ad8c8bf3e449b88ba22e87727f4faf9bcd9d17e1912b8bf7b3d" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "71881fde1570a4b61de2b3b1e843193f84a8635f54233ab0a7263fa9274f7cb1" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "d07f506ba20cbf4945408f205916f0613222762c44a64bb13a84a265f88ba2fc" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 8, + "total_mismatch": 22, + "total_errors": 0, + "generated_at": "2026-01-31T22:54:38.654764+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [], + "mismatch": 7, + "mismatch_samples": [ + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c5273140a0bc55d286b1009cdd86dc8d", + "dwd_hash": "e5f1e1595f54c343589bbc174d053f7f" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [], + "mismatch": 18, + "mismatch_samples": [ + { + "member_id": 2817491019861701, + "ods_hash": "64715bf3a0935051f3110e208951224a", + "dwd_hash": "7324e3394ea605678aece7cf0c6a2d69" + }, + { + "member_id": 2820625955784965, + "ods_hash": "0a67b2b237aec2a3cc8fc49c3b134af9", + "dwd_hash": "1c1b03ba65e51c08259e3b5dc221228d" + }, + { + "member_id": 2824666609323205, + "ods_hash": "ba649eda785c327c9d56f2c62122dedb", + "dwd_hash": "89d0e57e5490e1b6611bb37f6a3e166c" + }, + { + "member_id": 2827380844252229, + "ods_hash": "68a7985928f282bda0381d0efd886ec8", + "dwd_hash": "68cae67c8f7235842cb6ffd4280d2a35" + }, + { + "member_id": 2831769896094917, + "ods_hash": "2b95d2b57f6e865af2bcced6d95dadaf", + "dwd_hash": "56c1c617e03d245ff1b460f266a16cc4" + }, + { + "member_id": 2834033031598725, + "ods_hash": "c85bcf991b075ee72ee992d0861a8226", + "dwd_hash": "b4956ce392d2bc937dd92417793a4ac3" + }, + { + "member_id": 2837539913779333, + "ods_hash": "3d5d7aa85551cbf1cad3c8d43940ba9f", + "dwd_hash": "8c4fb65492a8beb02538f8e0e32aa2fa" + }, + { + "member_id": 2840365873464901, + "ods_hash": "c3dd902083269aaa6776bd5180694f55", + "dwd_hash": "e5102dca54441fd3758b614c21a7e66a" + }, + { + "member_id": 2844424744569925, + "ods_hash": "c1fc85e8ec09470cf7dc0752869364bc", + "dwd_hash": "844d50965151cd09a927ba36d40ea81c" + }, + { + "member_id": 2844990190242821, + "ods_hash": "fef89181b49d82a61c2f09c86638d501", + "dwd_hash": "122c1fce738b1869e2206e9ab2e8df2a" + }, + { + "member_id": 2846153189592005, + "ods_hash": "c0148f7488b45b173c12b99b59259f11", + "dwd_hash": "14f9e49775a7b3e6b130f58b90cffb3f" + }, + { + "member_id": 2847747357002757, + "ods_hash": "8bbcb917330148f8cf7cd33bf34f1d53", + "dwd_hash": "48cf196622f0912d2687810b0527815c" + }, + { + "member_id": 2848686922632133, + "ods_hash": "44138d9e6d291d52db08690be1672054", + "dwd_hash": "c02ea97a603de03eee3cf45445e77f98" + }, + { + "member_id": 2849995548625861, + "ods_hash": "f1f4c5c7a6410582c7b7171f009c8d63", + "dwd_hash": "ebb2ecb6ae8356ae9ead021c9d1494a6" + }, + { + "member_id": 2852938817408709, + "ods_hash": "ec31b57177373e8ee152e8e1375287fc", + "dwd_hash": "dc8ff664d887e4243cb30f584cf6810c" + }, + { + "member_id": 2853881398644101, + "ods_hash": "fc06b5550d56dd4501de4e9ee42b506e", + "dwd_hash": "48276af881a50472a25b84a83f3765f8" + }, + { + "member_id": 2854141942400709, + "ods_hash": "04c88b7f6e22c2d025ec410737757bea", + "dwd_hash": "8126c94bd4844a6bdef2c3a6c1433acc" + }, + { + "member_id": 2854163871024645, + "ods_hash": "c5e67b4719cec4c87e572b569db98851", + "dwd_hash": "877829ada3c7804274967b060a17bda3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 51, + "mismatch_samples": [ + { + "member_card_id": 2815108067970885, + "ods_hash": "8ef14472dfa2ad17821a22c95b68a8b0", + "dwd_hash": "3b3893f61d3f1bb865892314341a3585" + }, + { + "member_card_id": 2817491020107461, + "ods_hash": "8d357bc754709dcd013f9371cdd2aa99", + "dwd_hash": "6b8729e71c2b7108ab9aa3ce25cd9d79" + }, + { + "member_card_id": 2818031136034501, + "ods_hash": "78e9198960a52fa21bea0ec72db9410f", + "dwd_hash": "057c4c3e33a8f964d2a21b0901354ba7" + }, + { + "member_card_id": 2818227314724613, + "ods_hash": "e120c9e3616b645ed9d807515efddef5", + "dwd_hash": "ec488059079281a84be83394f5cab3e4" + }, + { + "member_card_id": 2818731958570565, + "ods_hash": "d6987c6ad3fc5290014a6eefb59dfe76", + "dwd_hash": "7c5299e8dc3134786064d1cabf66ab12" + }, + { + "member_card_id": 2820249101142021, + "ods_hash": "ad10d2f939ace02add7117b6480ae934", + "dwd_hash": "9de5cc377ebcce317ff81050e8a5f503" + }, + { + "member_card_id": 2820625956014341, + "ods_hash": "253997bed3c0ecfcc63fa2fb75549553", + "dwd_hash": "a5c541d04de316f08c0b82658af41543" + }, + { + "member_card_id": 2820628725778629, + "ods_hash": "faca824b7a0ec79dd904f0e94dae3111", + "dwd_hash": "d73d9c173b69ab1a4a214efe57bc0c93" + }, + { + "member_card_id": 2820628983728389, + "ods_hash": "8c5262b1977849b8f7289114ec4a0a6c", + "dwd_hash": "05535934847b4e114071e4d7e0435e4e" + }, + { + "member_card_id": 2821727959238917, + "ods_hash": "269d66184b379df5b264c42c027c9e5e", + "dwd_hash": "b706968ccd79c84d821e5147dd8262e4" + }, + { + "member_card_id": 2821947676182789, + "ods_hash": "af29f4c139e011764e44755088c5fa7c", + "dwd_hash": "c6dfccf610beb228484eace2dd5e851b" + }, + { + "member_card_id": 2822329141528837, + "ods_hash": "45b12856bd3e0279086d3501140f0771", + "dwd_hash": "19c37e24c97f6a5b52ca4531ab1012f1" + }, + { + "member_card_id": 2824666609552581, + "ods_hash": "29d6f7d69a740bfe8f8fb10d27f7d255", + "dwd_hash": "b29493a99d47f34cdfedbba5653fea58" + }, + { + "member_card_id": 2825889494584517, + "ods_hash": "373db7faa6f0ac7f0278cd384ec0c548", + "dwd_hash": "2865ac01a9ec78425d55a706a9270465" + }, + { + "member_card_id": 2827308686380165, + "ods_hash": "95074b22580d33fa0420bef64c7bf314", + "dwd_hash": "5f2b04f02d41bb6c3d43a3c98d3f9de3" + }, + { + "member_card_id": 2827380844497989, + "ods_hash": "45939f084e61b0034ab9f73c3eb802d3", + "dwd_hash": "867c345954989b2d55e46f1fc4b1484d" + }, + { + "member_card_id": 2827381452835973, + "ods_hash": "342b63611a0361c0afb756bdbe688d4c", + "dwd_hash": "f46c3c16de053816a6de36744d71ba2c" + }, + { + "member_card_id": 2827381540998405, + "ods_hash": "8e1e1bea6b45a80937c484dccceeaf94", + "dwd_hash": "ff5a35df311cb221bdef40e3d606a224" + }, + { + "member_card_id": 2827777100008581, + "ods_hash": "9d8a76477f44e0e22d09da71af04d26d", + "dwd_hash": "c1c500b811d9c602ec19697f0741c6f6" + }, + { + "member_card_id": 2830546961943621, + "ods_hash": "b7eaa7ae78ba4de498fb117a3140fd5d", + "dwd_hash": "ebafa73ada57e05ce682bebaa969ec8e" + }, + { + "member_card_id": 2831769896340677, + "ods_hash": "d29aca1c31e3e75536c27e21325c0b11", + "dwd_hash": "48d940e5d0f2039a4fc542cbeb53bf28" + }, + { + "member_card_id": 2833345652100165, + "ods_hash": "8a43905c7d4ae2db074c7410c1a7c6eb", + "dwd_hash": "595b313de0e4a43c810c38663058cb2c" + }, + { + "member_card_id": 2834033032139397, + "ods_hash": "ae3ed4067dddb337f391cebe87f383b4", + "dwd_hash": "e296072ece42217fb2f89a4ddd22ee20" + }, + { + "member_card_id": 2836326463522885, + "ods_hash": "c0008efbb2b34eab3711a0fae36f1cce", + "dwd_hash": "bdc29f50c819366beebd8ca561a8e7aa" + }, + { + "member_card_id": 2837539914025093, + "ods_hash": "b44598b6c2a7114aa8aa8653a9dd08ab", + "dwd_hash": "e0a08c7aa958422188655cf15a9f1888" + }, + { + "member_card_id": 2837540289677637, + "ods_hash": "f0773aed1d040d78b11ce2b31a1063e8", + "dwd_hash": "41ba45541a2d5649ea4fd71e606b9311" + }, + { + "member_card_id": 2839012675143813, + "ods_hash": "196b60fb8313133f63d0dfc94ccaf343", + "dwd_hash": "d515bb547e4634738ce0784b85a2036e" + }, + { + "member_card_id": 2840365873727045, + "ods_hash": "fc9203211262bd2db8d2bf7a7d75ef16", + "dwd_hash": "47c8677957d8ceb3d8bf71f2255d3290" + }, + { + "member_card_id": 2840366142164677, + "ods_hash": "abe9b46d6829cb018cebaad856575e68", + "dwd_hash": "d07d8b9301ba903f413d8c39fd5ec619" + }, + { + "member_card_id": 2840366209568389, + "ods_hash": "8f8fe547ea43f0d0cb3fe7f176748ea9", + "dwd_hash": "63acc25502d409889ebad5f8084207c0" + }, + { + "member_card_id": 2844424744832069, + "ods_hash": "076ff036484965f3c46e183df3877b8e", + "dwd_hash": "12eac245b67af6e34d09745f09948b85" + }, + { + "member_card_id": 2844990190488581, + "ods_hash": "be48b43d7ccb1fde82dbf9e0e8a2cf95", + "dwd_hash": "0bfe4802d4e27dc17f5093375fbfe697" + }, + { + "member_card_id": 2844990784883781, + "ods_hash": "b0dfb54dc5b608c095ab6e0e32fc85f8", + "dwd_hash": "be4620b58a83881606d198980d983aa0" + }, + { + "member_card_id": 2846153189837765, + "ods_hash": "45d8ad0e1ab9d93a4776fe33bab23410", + "dwd_hash": "306d2e2c31d6254e2862f1991955b06c" + }, + { + "member_card_id": 2846153576238021, + "ods_hash": "a1602543b7fbc1bff0ef6a99d11375bd", + "dwd_hash": "e78e2002831577cc12c4043023cfc42c" + }, + { + "member_card_id": 2847747357248517, + "ods_hash": "4b43dc7b7a17ffb742424cff0987a140", + "dwd_hash": "303c00a6e51a9b38334647917fa33c4a" + }, + { + "member_card_id": 2847747562769541, + "ods_hash": "2cf03128d3b64a840248e0fe8fdf3688", + "dwd_hash": "b3f82fa74b44a8803e4f2a7e41bc734f" + }, + { + "member_card_id": 2848686922910661, + "ods_hash": "6eb03d2428e152a9a974890532cf396b", + "dwd_hash": "cacf0b1b31e863872f67e243b2373d20" + }, + { + "member_card_id": 2848687461583813, + "ods_hash": "3dd69c4ffde10f2c58c1fbf61efb0d48", + "dwd_hash": "f6dad020ef38f69e722b08937d0a71cf" + }, + { + "member_card_id": 2849995548871621, + "ods_hash": "c5e33c687c13aa04ec64fece20a54ff1", + "dwd_hash": "cbd968f4e2648d64f3b77e157a004d3c" + }, + { + "member_card_id": 2849995983768645, + "ods_hash": "c59092c815811c28bb23b5818fbe3e3a", + "dwd_hash": "116b298d64ded26bac81fbe3ad48c6f5" + }, + { + "member_card_id": 2852938817638085, + "ods_hash": "67140d68f8858ea040e2e77d75673be3", + "dwd_hash": "3f4f1c490917908f6255e05a0607bdf4" + }, + { + "member_card_id": 2853799025233797, + "ods_hash": "49b65362a18f556f398898ae78741923", + "dwd_hash": "65479373a9e162ecc21fcbeb0130b713" + }, + { + "member_card_id": 2853881398906245, + "ods_hash": "f435485cc595f2b836fd4a1622776d98", + "dwd_hash": "0e965c1c52563f3acede031dff2f8cb3" + }, + { + "member_card_id": 2853881757159301, + "ods_hash": "bb2218d73bba63c42e5faaf3a29cf16d", + "dwd_hash": "cf5da66c1b3ae9b8b8efd9fd18f1bc9e" + }, + { + "member_card_id": 2853882120703749, + "ods_hash": "e9e12f6de6b9f7fc881013c330c9fca3", + "dwd_hash": "9c776d7cfd027ca5c9020d7dbcbe043b" + }, + { + "member_card_id": 2853883412664005, + "ods_hash": "d5b25d1ba1e7f26bd2a69842ba36d74c", + "dwd_hash": "df37e5f1634eab2c33b0da123b257aeb" + }, + { + "member_card_id": 2854141942662853, + "ods_hash": "337d9097b00eeb098906812d71b973d9", + "dwd_hash": "01b50358ca6864ba3d1cbbfdd23053a1" + }, + { + "member_card_id": 2854163871696389, + "ods_hash": "504929be1836258d7624186bcc720a7c", + "dwd_hash": "786e444fbd6f0bad08e27b3b047adb16" + }, + { + "member_card_id": 2854164219332293, + "ods_hash": "c6527f1693a8620361625397bda8f8fa", + "dwd_hash": "ca7c406ec3638a55796a54be33f80a7d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "tenant_goods_id": 2823319050914565, + "ods_hash": "f4426796897a568385b86cc055b8cbdf", + "dwd_hash": "fa84b3ddd0ab039b664f11f3f0327516" + }, + { + "tenant_goods_id": 2825999662156549, + "ods_hash": "e631b7ac82470837b627bcd071e25df9", + "dwd_hash": "21054342437f62c5dd1b7e5631b26a08" + }, + { + "tenant_goods_id": 2826003270470405, + "ods_hash": "6ad5b263163661c028451fb00eea0219", + "dwd_hash": "54dbac857a236e793e4f24f9ea500625" + }, + { + "tenant_goods_id": 2828836270377733, + "ods_hash": "9a180ba7a6a5264b41119f60cc57cb6c", + "dwd_hash": "6515b154a7980df2e66984c60d062bce" + }, + { + "tenant_goods_id": 2834061165348997, + "ods_hash": "e1b5cf924c741b0df80b48df1561fac1", + "dwd_hash": "3cb63b1bfa8bffc6ee9571018897f3ec" + }, + { + "tenant_goods_id": 2834064312158533, + "ods_hash": "86d1e419613aecff6578298114eca4cc", + "dwd_hash": "6d354e8270f0a3e56279b32b7baa53ea" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ], + "mismatch": 3587, + "mismatch_samples": [ + { + "table_fee_log_id": 2814985972206021, + "ods_hash": "76e3813af265a92d853b13f10c0f1214", + "dwd_hash": "451ca5fa393707b952ca6e7312fbd33c" + }, + { + "table_fee_log_id": 2814998029913413, + "ods_hash": "b245299682524a9bb591b2113138abf4", + "dwd_hash": "c3230b7e5c9d2b83249022ed78992a2e" + }, + { + "table_fee_log_id": 2815007740776133, + "ods_hash": "5faf40762c950c78f670894ba143907e", + "dwd_hash": "6c25c75a34471a15010ef45104942637" + }, + { + "table_fee_log_id": 2815007740792517, + "ods_hash": "c33d9f7bce2f78ad4466efdc05f796d8", + "dwd_hash": "470224891bd0c699176b899cdd4d5a3a" + }, + { + "table_fee_log_id": 2815008603967109, + "ods_hash": "2902f8abfc2d5f2040e074b546386dc8", + "dwd_hash": "aafa01860edbeaf49601e5980a6f161f" + }, + { + "table_fee_log_id": 2815026157325957, + "ods_hash": "5d41edc38dc5264e78fb3737b635706a", + "dwd_hash": "59fabc86d48e1d02089408ed32f715c5" + }, + { + "table_fee_log_id": 2815045005807429, + "ods_hash": "1b0c7bebda4a86501756fe06e3408a2b", + "dwd_hash": "a4e4974083bde827ae5ecb59c5ceb79d" + }, + { + "table_fee_log_id": 2815049223392901, + "ods_hash": "e42ef722c7ab06b23f8f969396460609", + "dwd_hash": "df5551f9e06edb1d5cd7622116f8ba9a" + }, + { + "table_fee_log_id": 2815050753789573, + "ods_hash": "b77ec0e52a937c882a09ff9189061d52", + "dwd_hash": "3c6f2acd41d9719b319d8e5a86c7e5f1" + }, + { + "table_fee_log_id": 2815053686968069, + "ods_hash": "2ce089c20cbddbd395bf7a35b144fc60", + "dwd_hash": "8af56567ac6602166d7146f45a8173c5" + }, + { + "table_fee_log_id": 2815057361407685, + "ods_hash": "d4b57244a4e94f80dfb320cffaa6f42c", + "dwd_hash": "38215f94c24b37b657aa6c1dba6fe61f" + }, + { + "table_fee_log_id": 2815065077092165, + "ods_hash": "b53da518a3abb8cf8c5a619ab760130c", + "dwd_hash": "de2565d74a415ccc1e3738223dd5ee5c" + }, + { + "table_fee_log_id": 2815068579778373, + "ods_hash": "fb9042742f2abc4b4125393bc83a9770", + "dwd_hash": "647f8491ce811dd5207884fe90449525" + }, + { + "table_fee_log_id": 2815068925710085, + "ods_hash": "b01521ee2686b6c2879e08c338b6dab4", + "dwd_hash": "4d9eb0ecfad074d16efd161fefd95bb8" + }, + { + "table_fee_log_id": 2815080294387461, + "ods_hash": "26fc4fef1adf060c4558b43b40ffd5c3", + "dwd_hash": "5e36edceff0b0e8e8c7835f1fa062b93" + }, + { + "table_fee_log_id": 2815081796407109, + "ods_hash": "8bb222d9b4da505d27c8b312b5df64da", + "dwd_hash": "20b442e2ddddc1f24eb556f27d9eb175" + }, + { + "table_fee_log_id": 2815082742222597, + "ods_hash": "3a32f788b69cf53a5314dae98a56bbdf", + "dwd_hash": "60b1ec938f3d5eeb0b49605c09b6a88a" + }, + { + "table_fee_log_id": 2815092451331781, + "ods_hash": "17235596dc03fd1f43a7b32f51fd8fd1", + "dwd_hash": "9c9434a58bd9f7fe4c1394625ba82255" + }, + { + "table_fee_log_id": 2815117514428101, + "ods_hash": "dd66e8f360d38873c0ada5e8ee9dc7b7", + "dwd_hash": "a1852ee4604404d08de7c2291a0b62e8" + }, + { + "table_fee_log_id": 2815120860810949, + "ods_hash": "90a8c93d6979c0348318831cb2c6d7ff", + "dwd_hash": "84bc32633551b53e4b9ff271b83f9fb4" + }, + { + "table_fee_log_id": 2815157254885061, + "ods_hash": "998b36915f9ba1cd3e22893b852e2879", + "dwd_hash": "5196fb4ab7ba25dff2bd30d440217026" + }, + { + "table_fee_log_id": 2815189895171845, + "ods_hash": "d43b803e48a68b5cfccc08a2000ad6c4", + "dwd_hash": "691e2efd12eebda8d2cd5193dc3c54ce" + }, + { + "table_fee_log_id": 2815192882155141, + "ods_hash": "b951662d9d75d2254f1bfccebcccbdd6", + "dwd_hash": "f5f3803c4f584d6b3e0414075ff8606c" + }, + { + "table_fee_log_id": 2815293410987653, + "ods_hash": "09a1e60e0f91da06e8471eafa1fc5dd6", + "dwd_hash": "2d59951646a40027aa5204ad2f9838b3" + }, + { + "table_fee_log_id": 2815315341791045, + "ods_hash": "5f98dd39935952acd9ce080b88166f4b", + "dwd_hash": "4d529848eec955b7e03a40282fce3840" + }, + { + "table_fee_log_id": 2815777846021893, + "ods_hash": "e717572450b079d8ea645e0e0a2b86bf", + "dwd_hash": "24ff6f0ffd21d0ae28fd559117328f18" + }, + { + "table_fee_log_id": 2815783875481349, + "ods_hash": "4d9dfc69d2da8bf77447e11bd82ae0a7", + "dwd_hash": "98bb7c2840229448991d760f368cbcff" + }, + { + "table_fee_log_id": 2815835682541381, + "ods_hash": "acbf4bd9ea18d4ac08e03672b6e1fcd3", + "dwd_hash": "decffd69a10d9440d6d46f8944396046" + }, + { + "table_fee_log_id": 2815914438299397, + "ods_hash": "41e03b28d3153983693f7f75a0b62f8e", + "dwd_hash": "c240bec354ddc3c89d13447b49a6cd98" + }, + { + "table_fee_log_id": 2815916694834949, + "ods_hash": "a066b23255ac4ec68a21b1a48ae32b42", + "dwd_hash": "34e06c02f057869e081e992f21f6f9e1" + }, + { + "table_fee_log_id": 2815919540670213, + "ods_hash": "54c4727507d463871cc01a5af1c5ccf9", + "dwd_hash": "3a1a09ed0c8b0403ab71a67de6ff7aa6" + }, + { + "table_fee_log_id": 2815946582118149, + "ods_hash": "4a7b68dfe202dca075120fcefb092f3f", + "dwd_hash": "26f03c8a4a2cf4b33e9612d3c1e51356" + }, + { + "table_fee_log_id": 2815974002560645, + "ods_hash": "fa6d2e228494d46b002d1146ecd15227", + "dwd_hash": "af48790b9cf09096e4a575d00373f16c" + }, + { + "table_fee_log_id": 2815986131783429, + "ods_hash": "9b98298c1680f6698784b3153daec7a3", + "dwd_hash": "a85546d319d31ec656565a566178aefb" + }, + { + "table_fee_log_id": 2815994029494021, + "ods_hash": "cb4eec5723e0f284ab339353e69bde65", + "dwd_hash": "1b9e4fd8f73dff4b3be89beb8c16605e" + }, + { + "table_fee_log_id": 2816001166020293, + "ods_hash": "45041b503af34eba0021392c8a915047", + "dwd_hash": "74a263a9c0f55bfee1806d2fcba1c212" + }, + { + "table_fee_log_id": 2816030066708229, + "ods_hash": "138ce994c52ff0367f1fc4d651269d25", + "dwd_hash": "72a75b3ae0189b72e192ff84737469bf" + }, + { + "table_fee_log_id": 2816034617790085, + "ods_hash": "3cbf660aa4d414836fb1a08084a32fe0", + "dwd_hash": "4d57c85b8d50be8fa82a86d7aa1ba0d9" + }, + { + "table_fee_log_id": 2816047032813893, + "ods_hash": "735e4d39787e8aa02948b37a5e2000a8", + "dwd_hash": "709439bb0047b4752ed58f6d80e565fd" + }, + { + "table_fee_log_id": 2816053946255621, + "ods_hash": "cbc66e7cabdf8b46cc3feed47559de35", + "dwd_hash": "f22cd5bd397d406a4e9cf06a5c2ec708" + }, + { + "table_fee_log_id": 2816069549148486, + "ods_hash": "d0ab8d535a8a09e471c997cf138df502", + "dwd_hash": "eb82eef96c1ee02af1a991c99a108285" + }, + { + "table_fee_log_id": 2816070476810693, + "ods_hash": "8543f1ae383db4f2c63e38ef7166ef39", + "dwd_hash": "f47c29a81fcc38295a1412af56e2537c" + }, + { + "table_fee_log_id": 2816072417446277, + "ods_hash": "cfa2bee4503f7399ec4f8f4b23a76b50", + "dwd_hash": "a135d6d1950ab8e6e92fc002b255775b" + }, + { + "table_fee_log_id": 2816073294760325, + "ods_hash": "5e3377ba644653778c45b794078641da", + "dwd_hash": "57833ac0d3206359b0819c925a994960" + }, + { + "table_fee_log_id": 2816082352130373, + "ods_hash": "e4c750c7f4b9e7f3735accc4dc21516e", + "dwd_hash": "defcb45721a38a852d3d925eb3b565b8" + }, + { + "table_fee_log_id": 2816090994903493, + "ods_hash": "9ce31fde0382b799e197f4da6fd6343e", + "dwd_hash": "4eed84f06d6e3aaa5709599c344e08e2" + }, + { + "table_fee_log_id": 2816095192927237, + "ods_hash": "40d3e71f731ab561b6824cf4f020e6fc", + "dwd_hash": "22f656df4b9d784779556f1395df5cd6" + }, + { + "table_fee_log_id": 2816097542671173, + "ods_hash": "b26c9afd7684a9a632dd14e95deb1616", + "dwd_hash": "ef805730474d447bee4d39dd76fd1b74" + }, + { + "table_fee_log_id": 2816107865738245, + "ods_hash": "553b90946a5b841e8e0cf3229695a90d", + "dwd_hash": "28bad0d4aa9e0d565b36afddd02bfcab" + }, + { + "table_fee_log_id": 2816112411675653, + "ods_hash": "d397fa94c16b29426dbbf3ccb80b6e7d", + "dwd_hash": "7d6ac591c783ec7132fe01046f7c87f3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ], + "mismatch": 4305, + "mismatch_samples": [ + { + "store_goods_sale_id": 2814989979093637, + "ods_hash": "fa3c286285345f94e47d74ee9a8d2e26", + "dwd_hash": "ccb9467c6be12d62b029f58e5513a0fe" + }, + { + "store_goods_sale_id": 2814993035152005, + "ods_hash": "a66f0c86a9cc6b53ddb13502fbbe1f0f", + "dwd_hash": "febdea29512fe4d2f1aa0a89e8a5a778" + }, + { + "store_goods_sale_id": 2814997899349509, + "ods_hash": "c848c8d7d3380b9c11753371ddfb55de", + "dwd_hash": "d6d4d8e5cfc65c03745fc02e2e81bec5" + }, + { + "store_goods_sale_id": 2815007741349573, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741349574, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741365957, + "ods_hash": "857f85eb20bee8090041bd9a44ce55c5", + "dwd_hash": "65a54bce3024938bdbfef3f7a8b0c964" + }, + { + "store_goods_sale_id": 2815007741365958, + "ods_hash": "321b047af492099f22536597eef7dae1", + "dwd_hash": "44f6ce0b54908e76b5500c4172f51c2c" + }, + { + "store_goods_sale_id": 2815026157538949, + "ods_hash": "36d7fff34fd912cd53ee1fc77863b8a5", + "dwd_hash": "48f27bf97049d650917f1d5fe1e8cf84" + }, + { + "store_goods_sale_id": 2815031624896325, + "ods_hash": "c79ac9417886bcee03e880e5cbc1494e", + "dwd_hash": "9b5e70abcbe840edbe931ff44753d6e5" + }, + { + "store_goods_sale_id": 2815050754297477, + "ods_hash": "98e866b5d52a77ec7b7f8ce0c968cce7", + "dwd_hash": "1579a5d0b90082029e718914d81e545a" + }, + { + "store_goods_sale_id": 2815050754313861, + "ods_hash": "ccccda71619845595eb1f57303f8ea53", + "dwd_hash": "6374079d462672c7a9720ab363d41cda" + }, + { + "store_goods_sale_id": 2815053687164677, + "ods_hash": "fcca4157529b4b599f5c7c8d5960033c", + "dwd_hash": "b65787a349eee7c0ee932e60261c00ca" + }, + { + "store_goods_sale_id": 2815068580499269, + "ods_hash": "a9fcab426eb3fcb2f68db1fbb48dd6ba", + "dwd_hash": "57dbb4e659103d76e2bbaa47d6a8dc52" + }, + { + "store_goods_sale_id": 2815068580515653, + "ods_hash": "e2252c090fdfe2c3c2dcab5473f01609", + "dwd_hash": "79ff193df285f9450e76dba6d90b7b8d" + }, + { + "store_goods_sale_id": 2815068580515654, + "ods_hash": "b98606aebfca9aabc5c976ff80626131", + "dwd_hash": "99db93af70e63e00615f43122527f745" + }, + { + "store_goods_sale_id": 2815068580532038, + "ods_hash": "36c578f57753260df03adc00169edc24", + "dwd_hash": "948303a0a371960e78627ae98279bf12" + }, + { + "store_goods_sale_id": 2815068580532039, + "ods_hash": "ab797411b6ea59279b632c1bfbe73806", + "dwd_hash": "0c69d25b70be364c709b01e41973befd" + }, + { + "store_goods_sale_id": 2815068580548421, + "ods_hash": "fba6d59e174a2ddd504406e6e868b092", + "dwd_hash": "0c35eac8d838fbac8d7f6fce59d915bc" + }, + { + "store_goods_sale_id": 2815068580548422, + "ods_hash": "593df276997f242ce1a277f27ebc810c", + "dwd_hash": "bcd871eb4dc92401f70c629b6a21e1a0" + }, + { + "store_goods_sale_id": 2815068580564805, + "ods_hash": "ad68991723d07fcebf885b2a71a04572", + "dwd_hash": "87414930033c4ad25ffcf2cdcca5c807" + }, + { + "store_goods_sale_id": 2815068580564807, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581189, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581190, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580597573, + "ods_hash": "89f2a52fb6ac9f5e096efcac4e4320aa", + "dwd_hash": "3683a7e44ed3c5d01da36e6c2e758402" + }, + { + "store_goods_sale_id": 2815068925923077, + "ods_hash": "67fd3334cc096f3d7ee40951ee572dad", + "dwd_hash": "ea242d2335b83e0252fcfa460d66688e" + }, + { + "store_goods_sale_id": 2815072464981701, + "ods_hash": "60518f0bc0fd94bfa293bedb62ac53f9", + "dwd_hash": "680101aeeef29be95a847ab256eaafef" + }, + { + "store_goods_sale_id": 2815080294567685, + "ods_hash": "85c7f035b67caf8e6a066c7631ba2b54", + "dwd_hash": "fdd2c48d710bdf1618c2b551a87ec858" + }, + { + "store_goods_sale_id": 2815080294584069, + "ods_hash": "32dbc77c79263ccc5402e671c94d54a0", + "dwd_hash": "208f4a08c77ae17bc19ace6fd80a7d75" + }, + { + "store_goods_sale_id": 2815081796652869, + "ods_hash": "9f22471d2fef963a064163d793a55dec", + "dwd_hash": "1ec5607522c4feddf4f227b6e5cd8258" + }, + { + "store_goods_sale_id": 2815081796652870, + "ods_hash": "7c399348f4f8f9cf7bd42e77094edec9", + "dwd_hash": "3a437803467856747477ab5c1c992434" + }, + { + "store_goods_sale_id": 2815081796669253, + "ods_hash": "76c461ed03eeb452dfc7f0a3484e7d7a", + "dwd_hash": "2a196dbaf65f6d6136c40a5b06e6b0be" + }, + { + "store_goods_sale_id": 2815091671715461, + "ods_hash": "ac522be15de73083c43d77e916f6b77c", + "dwd_hash": "36c4d584786f30af3d0eb86779222069" + }, + { + "store_goods_sale_id": 2815117514641093, + "ods_hash": "972d33838e9d8260bcd737c41d530dde", + "dwd_hash": "e5fda81376e2032dd9c12d4ee3b44ff8" + }, + { + "store_goods_sale_id": 2815120861007557, + "ods_hash": "e34a88e57ce72843765c34a43e8e7d6a", + "dwd_hash": "44f3937db465fb8f9fc9b2af6f7471fd" + }, + { + "store_goods_sale_id": 2815120861023941, + "ods_hash": "6f79278bb8cb68e1a3c2aa9b2fb32226", + "dwd_hash": "b0a5de1f9dfc56081dbc5ed453192880" + }, + { + "store_goods_sale_id": 2815147245915845, + "ods_hash": "c7ed2e920a5c26bfacc0f40b4c77cb75", + "dwd_hash": "160a4851b4acb0f24815e1d51a7e0d0d" + }, + { + "store_goods_sale_id": 2815189895368453, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895368454, + "ods_hash": "734d41abcca0aadf14bf6ca5906d534a", + "dwd_hash": "a1e47917e84ec9913625eec0b6568151" + }, + { + "store_goods_sale_id": 2815189895384837, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895384838, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895401221, + "ods_hash": "491086a73ed90b2cbb85ae9c138c02f6", + "dwd_hash": "05a3a28c361aca7e4984fb94c2c1a0e9" + }, + { + "store_goods_sale_id": 2815189895401222, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417605, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417606, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895433989, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895433990, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815315343150917, + "ods_hash": "0815aa45bb7157886698e233bb70fe9c", + "dwd_hash": "3ae752abb2be922c918325e52c2cb37b" + }, + { + "store_goods_sale_id": 2815315343167301, + "ods_hash": "6e4be2c3b7d2b99b6ff05c1107d155f6", + "dwd_hash": "0c8a7920d46a058d04fea0862e42a4ad" + }, + { + "store_goods_sale_id": 2815315343167302, + "ods_hash": "35dc4e7db965162b4704384a4858c6b7", + "dwd_hash": "04049fa9b643a05003ba24381652800e" + }, + { + "store_goods_sale_id": 2815315343183685, + "ods_hash": "4872df3bc9d436632860d96f3f3d220a", + "dwd_hash": "c6206cd5369226ee5ec20ab3d863fb8f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ], + "mismatch": 859, + "mismatch_samples": [ + { + "assistant_service_id": 2815007740939973, + "ods_hash": "f9ce7fbcc8fc19c8161a87c44a1c12e6", + "dwd_hash": "e24ea3d86bcf1dc075f05cad49074b78" + }, + { + "assistant_service_id": 2815050753953413, + "ods_hash": "b1a557685b82aa17d919e07b0fbaeb98", + "dwd_hash": "25a3808bd9c829641c9504148e967292" + }, + { + "assistant_service_id": 2815068579925829, + "ods_hash": "7a81c04f3dcf57bf8e204b76637b1e94", + "dwd_hash": "209dd8096c6cd6c486eb82b149f7dd30" + }, + { + "assistant_service_id": 2815068580155205, + "ods_hash": "5e61a83470f06f0994c105114cc8d386", + "dwd_hash": "ac6ffa46a5c8046769ce24b618143d61" + }, + { + "assistant_service_id": 2815192882302597, + "ods_hash": "c45adff8a4715c97b581f627fa6dfda2", + "dwd_hash": "072b72f6cbd844e3a33ffa6e4f6accab" + }, + { + "assistant_service_id": 2815293411135109, + "ods_hash": "3b324c88dbf0cc963f75ffe28ec5fdac", + "dwd_hash": "cc45c3bfb8ff606fd465b45a1a7898f0" + }, + { + "assistant_service_id": 2815315341922117, + "ods_hash": "0051f623fe90ebb5f5ed050dc084cf09", + "dwd_hash": "73c484d7e5f797b9530d83485cc7ceb8" + }, + { + "assistant_service_id": 2815315342135109, + "ods_hash": "9e892b2625ebc56b7fd81201488b92a0", + "dwd_hash": "f64c6a17e155c416513452e29297bab8" + }, + { + "assistant_service_id": 2815315342364485, + "ods_hash": "050470715d70d6a824fd27522cfaeda0", + "dwd_hash": "c06714076008c3959e0074d80f2a4e0f" + }, + { + "assistant_service_id": 2815315342593861, + "ods_hash": "1a0e4994bf2573cc027908ee3f590beb", + "dwd_hash": "b1045eb5cc31df8d61cfabf99e0e2e22" + }, + { + "assistant_service_id": 2815315342806853, + "ods_hash": "4c9992a0088b01b98f592cb09855e77c", + "dwd_hash": "83f802640dd1b35ec058fae19450ee72" + }, + { + "assistant_service_id": 2815904071470789, + "ods_hash": "e5ab401ebfa552c576eee29af660228b", + "dwd_hash": "77bf04dfbd8ae3a800de36db2ebe0b0a" + }, + { + "assistant_service_id": 2815914797567813, + "ods_hash": "cf502b9ea44020f573405f8de20ac07b", + "dwd_hash": "916df74d53de51545d6501b8503ef7d9" + }, + { + "assistant_service_id": 2815944874250053, + "ods_hash": "60fee31ac98a32bf01df401fc6a0f651", + "dwd_hash": "a77e1251c004feed00c35148eb389d69" + }, + { + "assistant_service_id": 2816030066855685, + "ods_hash": "2bf9cc4469a0db29caebe85e45edc6f8", + "dwd_hash": "a2c1140d6b166820622a820280d5cf9b" + }, + { + "assistant_service_id": 2816047032944965, + "ods_hash": "da5f9de03bd3a1fee22b55dd99b3ceed", + "dwd_hash": "63fe5217681b1b401b899f48c40c120a" + }, + { + "assistant_service_id": 2816097542835013, + "ods_hash": "5cc9233ecb68eaca2a27ead046209acf", + "dwd_hash": "f7be57f64692352d195bac3c3b3861e8" + }, + { + "assistant_service_id": 2816097543064389, + "ods_hash": "eaef3de6b3d6be88c30d046dfa3f3447", + "dwd_hash": "e538d750d81ec4501ee9a2cf8efc46f7" + }, + { + "assistant_service_id": 2816112411839493, + "ods_hash": "af7c3be5c3fb270f2559d0899bf3520b", + "dwd_hash": "fc488cf75a35ebd79a8471dfa861b507" + }, + { + "assistant_service_id": 2816112412085253, + "ods_hash": "a43c8e2ff1fc185dd0188950538b0a4e", + "dwd_hash": "aa3b19dd23048684d15f11ea305d87a4" + }, + { + "assistant_service_id": 2816117998341061, + "ods_hash": "2d19ff102f3a526363a3b323a45dd7b9", + "dwd_hash": "e46dc114412a9a50a71193051f1d3dc0" + }, + { + "assistant_service_id": 2816117998635973, + "ods_hash": "1e9a6b6ba7032a538d98eb93fbca3867", + "dwd_hash": "fa085a69fab55f4cbf56933ff57f1b09" + }, + { + "assistant_service_id": 2816249127078725, + "ods_hash": "cbf2a6e55888e2ef7b6a4560d775b670", + "dwd_hash": "ce55856cb47615e05f2aecac7edb42db" + }, + { + "assistant_service_id": 2816269318032325, + "ods_hash": "7d099c5835e5e7c9c293e3da0d924c0c", + "dwd_hash": "6b8ff92fcda1c92ba053d670ecb46cf0" + }, + { + "assistant_service_id": 2816293725277061, + "ods_hash": "23c242055dfbdf6ed5ac95f4d764aa0e", + "dwd_hash": "9bdbe277075886277f876aaaae46092a" + }, + { + "assistant_service_id": 2816339174493125, + "ods_hash": "5591c0e4bc4b49d1459e92c7542e8f3e", + "dwd_hash": "86ad9f1ec4e00067594785a8e17ba157" + }, + { + "assistant_service_id": 2816344718724101, + "ods_hash": "90ba80a419ee28c7ccd8cc55ed5fcc3c", + "dwd_hash": "349c5dfa7e4b0ef7c5ea94808b95aac2" + }, + { + "assistant_service_id": 2816352675613573, + "ods_hash": "3e799052214401cec9018d44969881ab", + "dwd_hash": "28f8ba909f6eb79c4fed977d80c5ddbf" + }, + { + "assistant_service_id": 2816363071605701, + "ods_hash": "f61b73446e279bec5b142b3736bdc790", + "dwd_hash": "14a12eb1fb47a2a9e1874ba4aae0fbf6" + }, + { + "assistant_service_id": 2816378223725445, + "ods_hash": "9d3d42864197ddb3fa8c528ee48ee3a6", + "dwd_hash": "6a6879ee645e013810bdbde893f87f79" + }, + { + "assistant_service_id": 2816383976393541, + "ods_hash": "36857fb57d1d012356d4308f44d21a93", + "dwd_hash": "ee5b056799c852aacabcf022a3c404c1" + }, + { + "assistant_service_id": 2816390074338181, + "ods_hash": "f076df9329383063581c78dc19009aba", + "dwd_hash": "4f0ce10425e4bd5f33e41145e02ba490" + }, + { + "assistant_service_id": 2816390074567557, + "ods_hash": "b265275c59ab0218ec7c564c9ee90129", + "dwd_hash": "f2abe70bb88b0a6aece4ffdcfd1f82cb" + }, + { + "assistant_service_id": 2816402998315973, + "ods_hash": "387b43a62d51b05441f8797776d794a6", + "dwd_hash": "1c99984ef2384442a86d58dd18b1225f" + }, + { + "assistant_service_id": 2816435102649349, + "ods_hash": "b52c92fa4efc547d53f8aa9a673d1612", + "dwd_hash": "5139e73f86b7690b82d21bc176ba5e99" + }, + { + "assistant_service_id": 2816449614121797, + "ods_hash": "abe7c18690009457ca997d48b7c8ff96", + "dwd_hash": "f7b6fa917438fbc602ed421c0c282cb3" + }, + { + "assistant_service_id": 2816450094533445, + "ods_hash": "01627e094ec69c15ac4355de3bc946d9", + "dwd_hash": "9abd7179f4605fb01a0f34beba9a8e09" + }, + { + "assistant_service_id": 2816450094811973, + "ods_hash": "51b410beba14b4384f72524d1d5e8fe6", + "dwd_hash": "97be4007318ae9237b7d6b33c26bde85" + }, + { + "assistant_service_id": 2816456185826117, + "ods_hash": "5d424e7c407279f37aa867f5b560dcbd", + "dwd_hash": "206691651a92a995eaa61372fa136e2d" + }, + { + "assistant_service_id": 2816456774618117, + "ods_hash": "0fdb50d99ab5c91bc82942e813af7b7f", + "dwd_hash": "370c24fa68eac8144d9c5d14da474bf4" + }, + { + "assistant_service_id": 2816456774863877, + "ods_hash": "1a3c8230a827b1f6db34c08236d6b57e", + "dwd_hash": "e63c7b2ba2f2839377f60c807278573c" + }, + { + "assistant_service_id": 2816464057518981, + "ods_hash": "1488b78dabcca9bc95b26ba7f80b18e0", + "dwd_hash": "d4ff94afcd76046a9547bd19cbd780d6" + }, + { + "assistant_service_id": 2816464057748357, + "ods_hash": "44c3245fc0544009d12fbee698fd1dbb", + "dwd_hash": "263ae165f1fefc315b49250cebd45015" + }, + { + "assistant_service_id": 2816464057977733, + "ods_hash": "5082c3bd738dadfcac0954d0947c9ffd", + "dwd_hash": "4a800b57fd0c26234095d5ba3032edb7" + }, + { + "assistant_service_id": 2816482033912773, + "ods_hash": "22adf47bfda80f15b16796f6f38279b5", + "dwd_hash": "47b7b49343c69fcf90d8b16c6665c7b4" + }, + { + "assistant_service_id": 2816500336462725, + "ods_hash": "1ec51b3e541ecc3a6b53e20349b90e4a", + "dwd_hash": "bb5f00fe51db20e5022ffbf7dc45e280" + }, + { + "assistant_service_id": 2816500336757637, + "ods_hash": "7bc49eb8299bc59076bacf7ba658a929", + "dwd_hash": "9d148da2664fbb5a9c648fd214fcb584" + }, + { + "assistant_service_id": 2816500337052549, + "ods_hash": "5060b41e9bd33bf83997bcfee089a8f7", + "dwd_hash": "d6513625851b0f9891810327dc84e5d7" + }, + { + "assistant_service_id": 2816500337281925, + "ods_hash": "9d17f139b9400149ed20471df9427dfb", + "dwd_hash": "9fa44449e927c5cf32e34531f1b712ed" + }, + { + "assistant_service_id": 2816500337511301, + "ods_hash": "d539397d7c835b2544f0d8d739ce12fb", + "dwd_hash": "db2075e86e08d52cca0d1c16dc995aba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ], + "mismatch": 2850, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2814986061335237, + "ods_hash": "3888256320941db1f6ba11d8854224a8", + "dwd_hash": "fab6a8a62d492fe2ef593eaf1a186fab" + }, + { + "platform_coupon_redemption_id": 2814998145469765, + "ods_hash": "c2bdbd213544486ee2285f33209480e4", + "dwd_hash": "9654668bfd14ae0ee695ead73e2eb324" + }, + { + "platform_coupon_redemption_id": 2815038220521221, + "ods_hash": "c24fa1bce5b9386a0e2bf22ac5dda85f", + "dwd_hash": "051a473e67d78507c5f78c35fa78faad" + }, + { + "platform_coupon_redemption_id": 2815050032221957, + "ods_hash": "8fa1bddb32ce46ab37614c05732ece64", + "dwd_hash": "b936fabc032db47c3e257e70bd3309bc" + }, + { + "platform_coupon_redemption_id": 2815670259388229, + "ods_hash": "36efcc93d54d83934db122aa67aea16c", + "dwd_hash": "32617bc5d6220cd8a96919d7781ef356" + }, + { + "platform_coupon_redemption_id": 2815708950073029, + "ods_hash": "37a42453c4512c51ce94dded5274a466", + "dwd_hash": "ed2f262ac353b8cbb010e2f227c7b864" + }, + { + "platform_coupon_redemption_id": 2815714020364101, + "ods_hash": "1add4bbb06f5d06766ba3e71f5717102", + "dwd_hash": "bc701181bf4f68404579e4119abecc95" + }, + { + "platform_coupon_redemption_id": 2815763466932037, + "ods_hash": "959a26a7f7cd55277d48ca06575abf55", + "dwd_hash": "1ea4c19b9922c1b44aee6670031f9953" + }, + { + "platform_coupon_redemption_id": 2815815918718789, + "ods_hash": "9237f9c9441ad647a328b26c242b505d", + "dwd_hash": "0f2e7a9d57ee5566ebb40c237ab6441c" + }, + { + "platform_coupon_redemption_id": 2815835787415365, + "ods_hash": "3146d20bac3d95750b9a7ee2ec31a3a1", + "dwd_hash": "30293354760b5e97c70e021f439f9061" + }, + { + "platform_coupon_redemption_id": 2815857501196101, + "ods_hash": "225c01232fffcdb18becc49d1dfe9e4f", + "dwd_hash": "7e5bd6dfe32b0281f1f0973bff373fd5" + }, + { + "platform_coupon_redemption_id": 2815888248032965, + "ods_hash": "9adf560dc3bf4487214d4f0219730b90", + "dwd_hash": "d19b7958c85cb7c1b24e264cc6a48374" + }, + { + "platform_coupon_redemption_id": 2815915389603589, + "ods_hash": "50987f4f0c859a826ff933dc7045c4af", + "dwd_hash": "f18ca30636612015bdc6602ebe4c8eac" + }, + { + "platform_coupon_redemption_id": 2815924436356741, + "ods_hash": "45739a272156a5afabbcad4fb8f5c4b7", + "dwd_hash": "80d3f583a091319b9ccdae56533fd849" + }, + { + "platform_coupon_redemption_id": 2815928947183429, + "ods_hash": "44ae0fa6d5b4e12dd8f0a2138691b5d1", + "dwd_hash": "dcb54a0a2599da4199ac0b82771e057b" + }, + { + "platform_coupon_redemption_id": 2815929939775109, + "ods_hash": "cb83f3f570df93e1dea68028b809b8d1", + "dwd_hash": "4490c6a24c10bc8622b0ee018017a374" + }, + { + "platform_coupon_redemption_id": 2815934117449477, + "ods_hash": "3e120226e383ed978c313ce0f46a4f6c", + "dwd_hash": "cfb524b7c0314fab5a376ecd3e649a31" + }, + { + "platform_coupon_redemption_id": 2815942572084933, + "ods_hash": "14b10cbc11df659eb6e6b1a94db3c920", + "dwd_hash": "2ffa1f9b54e54a43ba424e38a0682c7a" + }, + { + "platform_coupon_redemption_id": 2815948326112965, + "ods_hash": "411dc014eec78ddcf2a5a522b2ba7f38", + "dwd_hash": "46d2888c307dd277ab9d8b164155c886" + }, + { + "platform_coupon_redemption_id": 2815952511684421, + "ods_hash": "d3d19ac8e44299cc18f3581887cb6328", + "dwd_hash": "3ccd8a5a9ab80b17b5fba1b6a31583c7" + }, + { + "platform_coupon_redemption_id": 2815954552934213, + "ods_hash": "3a7df6ebec1fc17ad5bd8bf3c73f5429", + "dwd_hash": "f1fd4141da918e4b5176e247ee0f0fc3" + }, + { + "platform_coupon_redemption_id": 2815957094158149, + "ods_hash": "9c3c07053f101b9ec8bb6f4e10817061", + "dwd_hash": "844f2e18a71fb921843cf00a6d82c03e" + }, + { + "platform_coupon_redemption_id": 2815968915050117, + "ods_hash": "2a3210ac10e845d0ea0db129a3b21d94", + "dwd_hash": "392bd0e6b45fe6fc825fb5d0bb906fa7" + }, + { + "platform_coupon_redemption_id": 2815987124997893, + "ods_hash": "4a4b7199e69f8fdc879c03f64c464f9f", + "dwd_hash": "d736038d1f623107546fa2a61e7d5862" + }, + { + "platform_coupon_redemption_id": 2815998670311109, + "ods_hash": "55ab64d190eb558f9397276771e9de76", + "dwd_hash": "439cc0badd2d97f77db963a5c94764d2" + }, + { + "platform_coupon_redemption_id": 2816011536912197, + "ods_hash": "7a43de88f3f2b8e0181a9b7f8ee56ec9", + "dwd_hash": "5e89c6afdd68e0347ec1dc3fe4b41539" + }, + { + "platform_coupon_redemption_id": 2816011777920773, + "ods_hash": "5cf2016c72b91e92f0343d95b218ff09", + "dwd_hash": "104231165eb6a10a72cf30036b731b28" + }, + { + "platform_coupon_redemption_id": 2816016143077061, + "ods_hash": "480c5fb78b6487f4a18101868b0ffde7", + "dwd_hash": "05f226eab6ece2ba44f505bcf1ff3221" + }, + { + "platform_coupon_redemption_id": 2816023900737157, + "ods_hash": "10281a653600d80285ad3b6f7d4a93bf", + "dwd_hash": "28a980d1e5fb408d3692fd64703e80cc" + }, + { + "platform_coupon_redemption_id": 2816024269786821, + "ods_hash": "a68ef68891e3a9ac8eb80d6ec5b79e56", + "dwd_hash": "c4250a21e350a4a140cf62b6aa7a5972" + }, + { + "platform_coupon_redemption_id": 2816036284845701, + "ods_hash": "413a2e31f6535d6be3a3db25ad981b79", + "dwd_hash": "05e105f80780f6fe807a66cbf1a00e24" + }, + { + "platform_coupon_redemption_id": 2816057573902725, + "ods_hash": "a6e6f2009d3b0ff5a7959f80eaf037a7", + "dwd_hash": "9cbe17739bd92fd31571330a4a052691" + }, + { + "platform_coupon_redemption_id": 2816067471591877, + "ods_hash": "1903e655014e868f8a6205debc115c66", + "dwd_hash": "417a99057dff8e92276d2b57814348f5" + }, + { + "platform_coupon_redemption_id": 2816069306780101, + "ods_hash": "fd7568620240fdaef5fb1d4a9f381461", + "dwd_hash": "1dc1e84f9cc6330f1c8e6aedc5cbec7b" + }, + { + "platform_coupon_redemption_id": 2816071852886405, + "ods_hash": "976903d2166ad46b8cb84ecaf5c3af35", + "dwd_hash": "fd826931f5480bd3388b4f57da37fde2" + }, + { + "platform_coupon_redemption_id": 2816091699940229, + "ods_hash": "5b8bcb5a54e4c0bd69666aa7b5c1e2b0", + "dwd_hash": "ddaf1d902e25bf8e0ba7cfd4d2eacdbf" + }, + { + "platform_coupon_redemption_id": 2816102986648453, + "ods_hash": "b6abe2a922a07412e7458e7fa0f4d205", + "dwd_hash": "5d8f93c546f7c097dd51aaf96eb1f549" + }, + { + "platform_coupon_redemption_id": 2816109543607109, + "ods_hash": "9c72dafd11f45c66b8aa5974b26f5b63", + "dwd_hash": "cc8509b52672303d76e7f3ea7c08d5cd" + }, + { + "platform_coupon_redemption_id": 2816118965668869, + "ods_hash": "6da932393e17ad05f7448d7bc51e130d", + "dwd_hash": "ba74782281b7cadb563c97e0beed86a9" + }, + { + "platform_coupon_redemption_id": 2816129503628165, + "ods_hash": "277616cd7089578e8a4cdca886c05471", + "dwd_hash": "a484b9bbbe6181dffae2ef6ac97cf3c2" + }, + { + "platform_coupon_redemption_id": 2816131384724357, + "ods_hash": "986806f535c32084a8d7d2b36b7362c6", + "dwd_hash": "0b847adc3565e2e03e2d1a051aa34ace" + }, + { + "platform_coupon_redemption_id": 2816133827038213, + "ods_hash": "d630e70d062bc0b9f91204d91bb1fdc6", + "dwd_hash": "a0a7b85fae9f3218ee949f1ee18fd258" + }, + { + "platform_coupon_redemption_id": 2816138340240389, + "ods_hash": "db360e2fa44735bfdfeec81ee1cf738c", + "dwd_hash": "37acb9679c95f33471f95b03cc984289" + }, + { + "platform_coupon_redemption_id": 2816144492645317, + "ods_hash": "86f6780b11bf05c666a8d8faf0be1838", + "dwd_hash": "1ae044dc19a3f5707a6435f1a172032a" + }, + { + "platform_coupon_redemption_id": 2816150533196613, + "ods_hash": "109e306422a7e2b51474dbc94ab853e5", + "dwd_hash": "f30d0acf1e953a3460bf14d7f4d061df" + }, + { + "platform_coupon_redemption_id": 2816151252011973, + "ods_hash": "7c583b05d3aa7a86f55441066f3b600c", + "dwd_hash": "141f0de3c13a932f3173667d4292cdcb" + }, + { + "platform_coupon_redemption_id": 2816156159249285, + "ods_hash": "7ade0eb0077538810a1f99cb696da883", + "dwd_hash": "1eda86d74e9e37b7ee0363875398896e" + }, + { + "platform_coupon_redemption_id": 2816160355093509, + "ods_hash": "cadc9e9e052c4b4c5c7970f03b999c10", + "dwd_hash": "c4a11c04ea23f01f9ccb1638288e48c7" + }, + { + "platform_coupon_redemption_id": 2816163721071621, + "ods_hash": "72410ef6ca8ddeece0c4cfc9c6783f34", + "dwd_hash": "24463093c5bb4a5e63a4c1e1036dc64e" + }, + { + "platform_coupon_redemption_id": 2816175656422341, + "ods_hash": "1bd76394747e1e1c33f1373ed8d6baff", + "dwd_hash": "a5d5b97b4ec110b3dffff8a6f797acc5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ], + "mismatch": 4763, + "mismatch_samples": [ + { + "payment_id": 2814985970502085, + "ods_hash": "c50be1c89775292425df05286485eebb", + "dwd_hash": "6256ad399f94538bda1e63c6200b3d35" + }, + { + "payment_id": 2814989977602693, + "ods_hash": "3f708b93cba1775c2ed773dfc8ef373d", + "dwd_hash": "888beaf9f13c92474ee523d97a287f85" + }, + { + "payment_id": 2814993033726597, + "ods_hash": "db9f1440aeb29ec385da55cc6d5afbfe", + "dwd_hash": "f0210389f6d7785aef8f515071f83f5b" + }, + { + "payment_id": 2814997897989637, + "ods_hash": "f2287bc74ffa966d962543aa3b30b2be", + "dwd_hash": "68e2d1106ef11e7deeb0bb80af868056" + }, + { + "payment_id": 2814998028193093, + "ods_hash": "3e9df3f6510c23e4244c4f698422fb04", + "dwd_hash": "ab4c8afe8b1a2cd0f529e521582d09d5" + }, + { + "payment_id": 2815007737417413, + "ods_hash": "ed84bfc5560fda937796bdd1f6d23fba", + "dwd_hash": "9c99074518bceeee6fb8884570247893" + }, + { + "payment_id": 2815008601984645, + "ods_hash": "92c5bc2c46dc3e2299465fc1b08f1eb3", + "dwd_hash": "026ea05be0df682601918b4e2c957735" + }, + { + "payment_id": 2815026155277957, + "ods_hash": "68a6558ecf151b4407671be33ab9f1fe", + "dwd_hash": "6c0c6dab582ed102d73c4a8091ec841d" + }, + { + "payment_id": 2815031623470917, + "ods_hash": "66b2a77a82462afae88f00b7c75665e2", + "dwd_hash": "cf09749b9948ab17f8c29c6acd24bef9" + }, + { + "payment_id": 2815045004054341, + "ods_hash": "72196564a81b1f1e4d186efd3fa9cadf", + "dwd_hash": "8b152cc2e100d3a93a226d83f5d544b9" + }, + { + "payment_id": 2815049221656197, + "ods_hash": "6e1e5724eaac9cdbf4d95e3ff3390b17", + "dwd_hash": "56aff7a721276973899c613989a30ea3" + }, + { + "payment_id": 2815050751610501, + "ods_hash": "f5169b7031106fd22742479b17fe227a", + "dwd_hash": "40e1f49ea83959e4870db51e54cca731" + }, + { + "payment_id": 2815053685149445, + "ods_hash": "bba416b66c14f96c301cb287f844430b", + "dwd_hash": "e6dd4ee5b631e9cc372be9b37722a50b" + }, + { + "payment_id": 2815057359802053, + "ods_hash": "399e7d37faed4c6d8fa040c553fd5a08", + "dwd_hash": "bd902ca3aa8180ade7f1a0ff8013f18a" + }, + { + "payment_id": 2815065075126085, + "ods_hash": "db21d1532a9b849080dcb8027b2c9971", + "dwd_hash": "e1b01155f94e6e071293cda1aa5d0d49" + }, + { + "payment_id": 2815068576862021, + "ods_hash": "5f5c7852a984ec339b7fafc69c10f654", + "dwd_hash": "4fdb936142af519d3e2a6d34bfbd8180" + }, + { + "payment_id": 2815068923612933, + "ods_hash": "9f7787973fb275bfb0202277ec704c3b", + "dwd_hash": "205d58a2a910cf38afd5603814a26529" + }, + { + "payment_id": 2815072463474373, + "ods_hash": "e098c24d37883cb9d1518a9484f5b7c5", + "dwd_hash": "a322e15458837c47e3fbd1eac083af4e" + }, + { + "payment_id": 2815080292683525, + "ods_hash": "fb3998b45f48d687d7493058a17a2498", + "dwd_hash": "f02b959c6c5a1a4856b58b8611fafa17" + }, + { + "payment_id": 2815081794539333, + "ods_hash": "f8437e0d7e5692a9f4270d5b01edad77", + "dwd_hash": "1dd7d0afbf3eb8da57968c6204dd5057" + }, + { + "payment_id": 2815082740518661, + "ods_hash": "2ec129fc60b63a9a522dc234432801e4", + "dwd_hash": "6c2917764532a8794c24094738e42b67" + }, + { + "payment_id": 2815091670437509, + "ods_hash": "64e0643e24dacc0b4d5d536eb46edaae", + "dwd_hash": "b6df36012a9dc9161f9fbe347138675d" + }, + { + "payment_id": 2815092449660613, + "ods_hash": "7253c40eb25a68594cd9aebccb55363f", + "dwd_hash": "00ae18e0e01432ba6ac0120a8da9b5d8" + }, + { + "payment_id": 2815107865972421, + "ods_hash": "e2a7f1c0bf1c41fa6bd1f823941e0e4e", + "dwd_hash": "1e2fb8f61bf894c4ebd6de7ad98f5456" + }, + { + "payment_id": 2815117512658629, + "ods_hash": "b54cf1e6f3aaf61ec933722d21e615e4", + "dwd_hash": "15de86cc122b68740540f44442ee4f4d" + }, + { + "payment_id": 2815120859041477, + "ods_hash": "54ec949fad7b3c0d0566ef81447352f5", + "dwd_hash": "c202551fcf0d8bcbab29cbc6e3aa8da3" + }, + { + "payment_id": 2815147244654277, + "ods_hash": "a0b297d1a6adf10a2a9c23ad4aad1c6c", + "dwd_hash": "9fd038e38af8d6a7269535c274187ecf" + }, + { + "payment_id": 2815157253148357, + "ods_hash": "20cbc3291edab7a318c095fa962bf345", + "dwd_hash": "971097851faedfdd2fdb66f1ce32f436" + }, + { + "payment_id": 2815189893582597, + "ods_hash": "45c65c8ea04c4b22754deb4a1e87963b", + "dwd_hash": "a374a0fc8cbed35d32a9b84b1ff3a912" + }, + { + "payment_id": 2815192880057989, + "ods_hash": "a95706200dd2c2a025d93fbd46e2c1e5", + "dwd_hash": "f0c4a56bb3f7d3336570adf1a54c2d37" + }, + { + "payment_id": 2815293409152645, + "ods_hash": "f959aea4cc9f31ad4d140eaca4ed8a22", + "dwd_hash": "da502e9d5afc29fdba78a23171ed8826" + }, + { + "payment_id": 2815315338366789, + "ods_hash": "a6ff0db853fecb14845fd9e7d134df4f", + "dwd_hash": "4d6120b649bd3bc184be6a3462155cd5" + }, + { + "payment_id": 2815321450139333, + "ods_hash": "240500f364d60cc356a097217e40b7d0", + "dwd_hash": "72044f0114ee628081b7ca2aea0f5342" + }, + { + "payment_id": 2815715901181573, + "ods_hash": "511f0309aab6a0dbd827d1b3e65e85c1", + "dwd_hash": "4f91ea47a1c418e9525b882c7f9f4a5d" + }, + { + "payment_id": 2815716522757957, + "ods_hash": "67719a485a90ca1ea8177c0f373a0740", + "dwd_hash": "1f7f5c47b18a3f5ed1b1bfb9b7acf6cf" + }, + { + "payment_id": 2815728942829381, + "ods_hash": "89d0929d0e9fef5e6eba04169cbbfad1", + "dwd_hash": "4d63a711c4b7ec027177bb83f7a5cd17" + }, + { + "payment_id": 2815777844334341, + "ods_hash": "93ab71f685d08d2316775825a72ee761", + "dwd_hash": "e970eca04fd348130f55d27b9c0bc7f0" + }, + { + "payment_id": 2815783873875717, + "ods_hash": "4f55761ef392aa0a2c44ef18b556ecd3", + "dwd_hash": "b1951b5dc16746dcd22a768531a9a40c" + }, + { + "payment_id": 2815808178769541, + "ods_hash": "59ada987d823cab0fbce3b5df33e8059", + "dwd_hash": "4505417bc6c88b9028b69d3ceefabbd3" + }, + { + "payment_id": 2815835680689989, + "ods_hash": "d50100129666ad36039417f9c601bef6", + "dwd_hash": "faa806409279e90c527fc9d2a672beba" + }, + { + "payment_id": 2815904070012613, + "ods_hash": "8950c432bcf84ee40ce2e0fa60161f2d", + "dwd_hash": "d0b8bf6ab0037abe45c1d7b4896e6522" + }, + { + "payment_id": 2815911087017733, + "ods_hash": "55f1660861e7a3d057a9d909cca25563", + "dwd_hash": "3beb253150050a7e1e36dde0dfe4ad9f" + }, + { + "payment_id": 2815913389248197, + "ods_hash": "badc831db99d7dfa23d441e11e308405", + "dwd_hash": "4c3a55cd420d6bb88ffefb1bf4610210" + }, + { + "payment_id": 2815914436546309, + "ods_hash": "e3c6f7d60963b03a646ea9dacf57ce4f", + "dwd_hash": "bb65046f1b871bc8390861c025222e93" + }, + { + "payment_id": 2815914796060485, + "ods_hash": "ed1943483c5e0fbd6291ade8155852fb", + "dwd_hash": "e5d41043552e2298e44688bb4e16137c" + }, + { + "payment_id": 2815916693098245, + "ods_hash": "0001e5c339cf81575c80ad076c6e734a", + "dwd_hash": "ad4dcf64388b3bc9b81c01f2b02c92c0" + }, + { + "payment_id": 2815919539179269, + "ods_hash": "8b2b17fea5296cae77f0280ae93a203d", + "dwd_hash": "233c64df9928d275d0bf7cc7aaa858b0" + }, + { + "payment_id": 2815944872595269, + "ods_hash": "deebfebba9294c54a6746c09f7715ed6", + "dwd_hash": "c732e8f2ddc994dfe82914820a276ed5" + }, + { + "payment_id": 2815946580381445, + "ods_hash": "82bd075aa0aba34961c9bdac0c4aabb5", + "dwd_hash": "3b87223bd39c4510befea513773d9000" + }, + { + "payment_id": 2815952265891589, + "ods_hash": "6be85d999a06db1ddf98996bb6cf532b", + "dwd_hash": "b44edde7c3e01d2117f1d3c08d48c0a9" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23870, + "total_mismatch": 52724 + }, + "generated_at": "2026-01-31T22:54:55.377347+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10198, + "records_with_pk": 10198, + "missing": 2, + "missing_samples": [ + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12025, + "records_with_pk": 12025, + "missing": 3, + "missing_samples": [ + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8319, + "records_with_pk": 8319, + "missing": 3, + "missing_samples": [ + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "ad570076c51b6feb0a41f4cc4c0ee893174bc90a5b2311992a902dea42d52125" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "af84ea43328906e71379e0965a64437a7f531b632fd3dbeec93335ce91725f4f" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "be3f7d611af412e29e87a0007944e5facbe566fbd0f7eafe433a22aa5c46b63e" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "d07f506ba20cbf4945408f205916f0613222762c44a64bb13a84a265f88ba2fc" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 10, + "total_mismatch": 25, + "total_errors": 0, + "generated_at": "2026-01-31T23:09:19.477124+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [], + "mismatch": 11, + "mismatch_samples": [ + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "7978b181e1813e2661feef48298acaad", + "dwd_hash": "10214fc034f209e9268eb403108994d8" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2860039721438277, + "ods_hash": "a1a38e307560d38aa8497c1a3c4f9e54", + "dwd_hash": "ff979b1149a289d17f89026ed24cc6b8" + }, + { + "member_id": 2860045549128837, + "ods_hash": "a37e540dc7961b1ce47fa2f20002dbd8", + "dwd_hash": "ce587d64c55c31569aa5ebd2df9d40ed" + }, + { + "member_id": 2878376367018757, + "ods_hash": "8426041ae5079cd76ca57aaf35b59245", + "dwd_hash": "ec041392cb620e306821a1738248aa5b" + }, + { + "member_id": 2880000482366213, + "ods_hash": "cd1d546ecd5c0fb4fdfc972be628d139", + "dwd_hash": "58e7d781e3fc6dc13dd6ec3be41a6d7e" + }, + { + "member_id": 2881216340641797, + "ods_hash": "1954b0f568dca2f32bddfaaf9b6fd14b", + "dwd_hash": "14ea6d232676bddb0d8b8e54aeb7cc34" + }, + { + "member_id": 2896726929361669, + "ods_hash": "c9f9768694d9da6db0add62971e5d3a1", + "dwd_hash": "a2c750d2a6f119b533430d142dfec278" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 10, + "mismatch_samples": [ + { + "member_card_id": 2860039721946181, + "ods_hash": "3eabe16d72ba7ef7177356cc97f560bf", + "dwd_hash": "02b7be99128f8e213f1158a0d9d3b699" + }, + { + "member_card_id": 2860039882673285, + "ods_hash": "81ece0f90d6287c1faa1f0ac09ebfcd2", + "dwd_hash": "caffd1ac152f811a9c7fa37913dee2cc" + }, + { + "member_card_id": 2860045549603973, + "ods_hash": "5948f84abd215bfcf14a7c3bb2da86c8", + "dwd_hash": "6d087039b107aa409bd5f45b3337a682" + }, + { + "member_card_id": 2868694674264133, + "ods_hash": "575d0eb987c73a450890b476857f2481", + "dwd_hash": "db9ba2a553e6c08cc6a12f15bf521389" + }, + { + "member_card_id": 2878376367297285, + "ods_hash": "5306efdd2facff9c47596032b4f87b70", + "dwd_hash": "b61e578229bcc7e96c8fae3371a7610d" + }, + { + "member_card_id": 2880000482644741, + "ods_hash": "2ff26e86b708caca395819ef96d13149", + "dwd_hash": "4debb84c02d4ded0abb3aef5e7303ecb" + }, + { + "member_card_id": 2880001639385029, + "ods_hash": "97284e94aebc5e9572918c5e76f42197", + "dwd_hash": "843dde010291d2b11c44a1d9e72c4cbf" + }, + { + "member_card_id": 2881216341149701, + "ods_hash": "7427d9ee34ceecd66bac74df58a87753", + "dwd_hash": "065ee10b28f2ec16cd2e43a46c51b758" + }, + { + "member_card_id": 2886024745945541, + "ods_hash": "3742196a475e4972c218ae0d81243ec0", + "dwd_hash": "ff08b9425a29eec0b71778c19cbd8f23" + }, + { + "member_card_id": 2896726929672965, + "ods_hash": "59a4881ce8762e85c2ca1b5fa42ef896", + "dwd_hash": "e8087813e09921dad35fe39eebc23225" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [], + "mismatch": 2, + "mismatch_samples": [ + { + "tenant_goods_id": 2868227554610821, + "ods_hash": "7e73a7a3a8b678a2f59cf40e19ce93d5", + "dwd_hash": "94324959021d51cad98ce0255d9a29cf" + }, + { + "tenant_goods_id": 2878390970471173, + "ods_hash": "c69df2a4dbed64c1bb5df0d673538260", + "dwd_hash": "9a3770d65f62d7e3bef19498841f2e81" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ], + "mismatch": 1264, + "mismatch_samples": [ + { + "table_fee_log_id": 2883738007719045, + "ods_hash": "fb9dd4cee69d5698e6c1fafb797dab1f", + "dwd_hash": "864a9e90630756e3900e1bdd121a520b" + }, + { + "table_fee_log_id": 2883783941360773, + "ods_hash": "9e3d6ada7afb68cc1d7e7b8ff52227f7", + "dwd_hash": "f0eaf2b51ee297a158757c984416f042" + }, + { + "table_fee_log_id": 2883842833550469, + "ods_hash": "3587d9b5174c1a22e19f3fe8675784ec", + "dwd_hash": "3b6f09eed8ede9fec3f60f6d4e231a00" + }, + { + "table_fee_log_id": 2883913640562117, + "ods_hash": "67f6b281bb20869f178fac552c487b59", + "dwd_hash": "ba50bcbbdbe25a880230d2486aea8aca" + }, + { + "table_fee_log_id": 2883925552795141, + "ods_hash": "b4b7a413184b6d648b1999641ce625aa", + "dwd_hash": "bf32a2ed18305522cb6aa0680329ce24" + }, + { + "table_fee_log_id": 2883936115772805, + "ods_hash": "217da08684f425c32f64fdf5e2c26a60", + "dwd_hash": "d90b72f0a709e9aaa89af8cf671c3571" + }, + { + "table_fee_log_id": 2883967682006405, + "ods_hash": "92d0c4e989b1712d8cf79e931b64bf0d", + "dwd_hash": "5ac5708666e89b01d7ec15f251f1ecd2" + }, + { + "table_fee_log_id": 2883972314320389, + "ods_hash": "b5c73967257af950fa5a17a52e8dac5b", + "dwd_hash": "ede1be33418809215766b6136947a6f0" + }, + { + "table_fee_log_id": 2883995919437253, + "ods_hash": "645106b07e943e4a446d1f4622d2efee", + "dwd_hash": "7546137eb7a78b2340b2e9a98632bf92" + }, + { + "table_fee_log_id": 2884035527724421, + "ods_hash": "132d77ddf5a54fb92e2ea39676e8e51c", + "dwd_hash": "5722bda672842a9e81d0d3c8285e2c83" + }, + { + "table_fee_log_id": 2884038344576325, + "ods_hash": "702e04af43efe57006d57827c84e4c98", + "dwd_hash": "ac1a82af95f92c46948f740a39ca6994" + }, + { + "table_fee_log_id": 2884039651315141, + "ods_hash": "25469e1b29ac0b9cf7996637ee9ee131", + "dwd_hash": "760698b4ff3ef5f26aced2309edc76d4" + }, + { + "table_fee_log_id": 2884073990655301, + "ods_hash": "84f978920438351a3eaee4f3e0871b1a", + "dwd_hash": "01886b135ef5168a14a310d13d6142ab" + }, + { + "table_fee_log_id": 2884075079552453, + "ods_hash": "b5aae6a8e4ea21cb73c2fd1a98b97aa2", + "dwd_hash": "bc8918da623a50561d4ccc111d16af06" + }, + { + "table_fee_log_id": 2884084162039173, + "ods_hash": "69f65a6419459c00f9cc6e26fefee3e2", + "dwd_hash": "b183984bb35b92bc3dedcf8ab8363621" + }, + { + "table_fee_log_id": 2884084805455301, + "ods_hash": "2e84fa7b8569b0957792e2c51b60f354", + "dwd_hash": "8b2ad1d21bbc9789ddfeb425ed147267" + }, + { + "table_fee_log_id": 2884102524226949, + "ods_hash": "72b173f1156841a9be459d24fde212ac", + "dwd_hash": "df1e3c764267af56174665dbe32ca761" + }, + { + "table_fee_log_id": 2884112822406533, + "ods_hash": "08eb519571572da3bca154f27ef26940", + "dwd_hash": "b67d538c1475c39acaaada2104ba4098" + }, + { + "table_fee_log_id": 2884113768140293, + "ods_hash": "dc922af02a01f8a217ce90ab40309672", + "dwd_hash": "e4a1c4f913f4b88cbe7c49d760f40a5e" + }, + { + "table_fee_log_id": 2884133674716485, + "ods_hash": "8539580ebdec38d1408b15af1e5c6a5f", + "dwd_hash": "95badeb2bbfb26ee9b6bd7e959243a39" + }, + { + "table_fee_log_id": 2884134140857669, + "ods_hash": "6ee48e53cc27ab671c61ed7fa52c4870", + "dwd_hash": "d419c2cbcdfbcc7cbf446237b021d0a6" + }, + { + "table_fee_log_id": 2884144797437317, + "ods_hash": "5054827ab3c0b4ad85b7d5209f98ad77", + "dwd_hash": "0432a33571d60ee375b314ef1aa34db8" + }, + { + "table_fee_log_id": 2884146733534725, + "ods_hash": "d559b7325d167c11fcdd85aa21669660", + "dwd_hash": "242433d89782cf0e05eeb2298056433c" + }, + { + "table_fee_log_id": 2884146919738821, + "ods_hash": "23982d16002e0c3534709e97fc5dd675", + "dwd_hash": "8e411b6b548a96fe3e121050947bd774" + }, + { + "table_fee_log_id": 2884159167745413, + "ods_hash": "da2d6bc2e509241077826f1ec5841c23", + "dwd_hash": "475085fc91d6fc081f3d16194ed29ec4" + }, + { + "table_fee_log_id": 2884167223102789, + "ods_hash": "69e0fb3662c525c8fb6c22875ae374d4", + "dwd_hash": "3cffb7b4ba1d5488e0d135c1fc288651" + }, + { + "table_fee_log_id": 2884169189674501, + "ods_hash": "15596adb3878f3f4306c7e594b5774af", + "dwd_hash": "955e1874ac1f5e58832f8e66c3d5d081" + }, + { + "table_fee_log_id": 2884176832663045, + "ods_hash": "9cb2644a960586b3c3ade6c236318a5a", + "dwd_hash": "41dcb0dc15b68dc331015c0e0ebb2dbd" + }, + { + "table_fee_log_id": 2884182426881413, + "ods_hash": "d3d4ee0df53ddc473cac3b13f1949ccb", + "dwd_hash": "a028ec8d170218e71215a55b849444ea" + }, + { + "table_fee_log_id": 2884183893658949, + "ods_hash": "218ca627dcacf4a7c3c1a23f5ac7bc13", + "dwd_hash": "f60ed62205aa75e56776faee5d94256d" + }, + { + "table_fee_log_id": 2884187077086725, + "ods_hash": "b8f3628d3e95409605e7911c465a81c8", + "dwd_hash": "5385fe2011965fc3ea63f26a5984b3ec" + }, + { + "table_fee_log_id": 2884192656428549, + "ods_hash": "09146ee3072c01b267182394d07f723f", + "dwd_hash": "09f5630fa5dd8642584848edd5dfb29d" + }, + { + "table_fee_log_id": 2884197687758149, + "ods_hash": "b3d24d4e50873d1b994ddb7c6642d3fb", + "dwd_hash": "36689f6fb530c04ba40740b0d5ae26e6" + }, + { + "table_fee_log_id": 2884199480249861, + "ods_hash": "bd851e9acc6b32dfe946cc3135a3656f", + "dwd_hash": "376c9277cd135eabbc616e56575bdd1b" + }, + { + "table_fee_log_id": 2884199528287621, + "ods_hash": "7b8bcf425dc209ebd300e7d47fa1e31d", + "dwd_hash": "a02d357c50f71f94722c88fe75028887" + }, + { + "table_fee_log_id": 2884206911147525, + "ods_hash": "bbc1b5fa2269e9a0f43309d5be6528a9", + "dwd_hash": "7e3ce036643f5caf03fb879cc8d7c71b" + }, + { + "table_fee_log_id": 2884206979304773, + "ods_hash": "7e8c8d1d6449a1e16ed6ed3c12be57c6", + "dwd_hash": "4e99e1bcea32be42f32601bed5647ef3" + }, + { + "table_fee_log_id": 2884219169066437, + "ods_hash": "a1999cf68000e600bb3e6c1b8ac0211a", + "dwd_hash": "4212c2f914e47082a5b99ddf457ebb94" + }, + { + "table_fee_log_id": 2884226569899333, + "ods_hash": "0cb546dd0eaafbe0354d518acf96b9ca", + "dwd_hash": "b366e734962b9587194631a756223373" + }, + { + "table_fee_log_id": 2884229269982597, + "ods_hash": "f88974799ddb3d389df69084f9ddd369", + "dwd_hash": "32b191fa498b84febcdf1eb50a57313b" + }, + { + "table_fee_log_id": 2884243554258245, + "ods_hash": "1ab802a71bbb484c19751a9fed7a07af", + "dwd_hash": "9aae17c72dc2e9dd7078b7590811b641" + }, + { + "table_fee_log_id": 2884243669323205, + "ods_hash": "c92ad5701a6743a716aeedafc345407e", + "dwd_hash": "1d432244312366d1da469aacd4c8a568" + }, + { + "table_fee_log_id": 2884243721096645, + "ods_hash": "5ccfe315e4918958a679f207b63b7477", + "dwd_hash": "0c4486ec719159c12ece0478adf4d8b5" + }, + { + "table_fee_log_id": 2884244935298501, + "ods_hash": "a07481bf180b6d3a0b2ee9ce673d9ed3", + "dwd_hash": "37b832a29b2736f353176504423fb878" + }, + { + "table_fee_log_id": 2884271138639301, + "ods_hash": "a90973f31a766e25bf64e79524493e54", + "dwd_hash": "d18f634643de88cf9d3e038bc3c42893" + }, + { + "table_fee_log_id": 2884274545347973, + "ods_hash": "ab52f5c147676cb439ece8f3ce918f29", + "dwd_hash": "44588b8e978266779347a01a8d35d539" + }, + { + "table_fee_log_id": 2884276476464645, + "ods_hash": "95fc3a21c24d06c43a330db6261bd288", + "dwd_hash": "9e34f76b94f69f1c137b16c1a7ecb0b6" + }, + { + "table_fee_log_id": 2884278030454149, + "ods_hash": "5a8429d74f20755e09ad7b5573a5aed6", + "dwd_hash": "48ced2afc3a08158982b4b78713c3302" + }, + { + "table_fee_log_id": 2884281067752837, + "ods_hash": "0f22bbf61dac1a8c6d1c9a15d284a5b8", + "dwd_hash": "d93c3b0b5b221a173771ab8ea445b81c" + }, + { + "table_fee_log_id": 2884282419072453, + "ods_hash": "0bd5a3c027857d1e89ad2ed225858bf3", + "dwd_hash": "1bb664720b8de0eae55d42aed510f070" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ], + "mismatch": 1449, + "mismatch_samples": [ + { + "store_goods_sale_id": 2888365943277893, + "ods_hash": "ae551548528929e46cc60f613c423bcf", + "dwd_hash": "c9f394e53a606211cb31b08eff35343a" + }, + { + "store_goods_sale_id": 2883719457049669, + "ods_hash": "a91b64d7fe769cc0f269ddc530b0ba1e", + "dwd_hash": "8d7244d0b526aa59584c42ea20a09918" + }, + { + "store_goods_sale_id": 2883719457049670, + "ods_hash": "5ba96663a0def9f5909a7fbba37ceb3e", + "dwd_hash": "6301817448b64bed6906957c38435d9b" + }, + { + "store_goods_sale_id": 2883719457066053, + "ods_hash": "28f45646fbfe9d68b3edc9a29b631e09", + "dwd_hash": "6401e62de708e347bd78cc2c942ab5d9" + }, + { + "store_goods_sale_id": 2883783941704837, + "ods_hash": "c189bdbccfc5db6cd86f7e422b2ab197", + "dwd_hash": "bc44abd80acd10f7ebc472e9948b5e57" + }, + { + "store_goods_sale_id": 2883783941721221, + "ods_hash": "6cbf93d555eea63b3d4939c9e6080a75", + "dwd_hash": "45b0eff2fa1396d231e6c0e06c78a1e8" + }, + { + "store_goods_sale_id": 2883783941721222, + "ods_hash": "0e0c57748031e56538f99a5cf89eb037", + "dwd_hash": "bc5658a0b35c59935adcea72a62b9e19" + }, + { + "store_goods_sale_id": 2883783941737605, + "ods_hash": "a7359b682225f1dc9da3ac7f74511ee1", + "dwd_hash": "bcf1622ef85aee478496042e79ab9fc6" + }, + { + "store_goods_sale_id": 2883783941737606, + "ods_hash": "106c88898916312a37b8d89320638bf5", + "dwd_hash": "1160e657ee1912714a41dce5b80bddc2" + }, + { + "store_goods_sale_id": 2883856965274757, + "ods_hash": "c3273833abda5351077d27d6e1d4341d", + "dwd_hash": "917b8d16ac8ee609972d60141952e2c3" + }, + { + "store_goods_sale_id": 2883856965291141, + "ods_hash": "584c7d1a3ac154f5f013df1c04415934", + "dwd_hash": "463482d525813f30915dcc169e899ef8" + }, + { + "store_goods_sale_id": 2883856965291142, + "ods_hash": "ef750e65cd14c02c528cc15bbc8b15d0", + "dwd_hash": "938e9d8073e5d660abeb5f52636d4c57" + }, + { + "store_goods_sale_id": 2883924157975877, + "ods_hash": "75b1d10570a40b392f860bd3ab2a930b", + "dwd_hash": "2958e3d456da9c8d5aa944afe79a8e99" + }, + { + "store_goods_sale_id": 2883925553204741, + "ods_hash": "6cc412c799dd4667fb0fbb06f1a64b41", + "dwd_hash": "5306e942404138ad75da2291d1097823" + }, + { + "store_goods_sale_id": 2883925553204742, + "ods_hash": "e10985368e8c75255284de033aa2cdf1", + "dwd_hash": "b29413f78b1e3ae09269c812d778289b" + }, + { + "store_goods_sale_id": 2883925553221125, + "ods_hash": "b5a448d0fada4358be7881d03b73ed1b", + "dwd_hash": "bb0a16bc75665255f6f59971c28429e8" + }, + { + "store_goods_sale_id": 2883925553237509, + "ods_hash": "a68931864e24dba44dd01997c60a1c8b", + "dwd_hash": "705efd4eed87345570f5da9ea0de50e7" + }, + { + "store_goods_sale_id": 2883925553237510, + "ods_hash": "86897dbec65405fe8b786f7e270fb766", + "dwd_hash": "9035e526a4549a35c047f7de7a122ab2" + }, + { + "store_goods_sale_id": 2883925553253893, + "ods_hash": "211e6850ad3cbc00155def5c8ab0fbde", + "dwd_hash": "90c339157e60e57c4899339ff3c99109" + }, + { + "store_goods_sale_id": 2883925553270277, + "ods_hash": "72b25698330fdc84960e4f22884feea9", + "dwd_hash": "02f4ad7d0a5ed0c52b6e42a92878c49c" + }, + { + "store_goods_sale_id": 2883925553270278, + "ods_hash": "6c80b802caf401b58807876d66426e2c", + "dwd_hash": "c5724a5eb045f3c535a3fc19f077b776" + }, + { + "store_goods_sale_id": 2883925553286661, + "ods_hash": "bf255a3e7d53ba761f6e7873a35ed935", + "dwd_hash": "663199a7b6903dba7927d62842c6f201" + }, + { + "store_goods_sale_id": 2883952992161221, + "ods_hash": "4b03de7c8f1ee9aa1a74181aaf9d400a", + "dwd_hash": "db372dc18ad8d2da3aa5aa6e1c859c95" + }, + { + "store_goods_sale_id": 2884028546698693, + "ods_hash": "7018f987e18bcd5c1b78c20e9bf22f56", + "dwd_hash": "167821c747f2cb0b403bb994c46041f9" + }, + { + "store_goods_sale_id": 2884028546715077, + "ods_hash": "81575dc7f561cf3b5d0f605b1901c6ac", + "dwd_hash": "fab2ffce0dbb1de7be22da44f5186b96" + }, + { + "store_goods_sale_id": 2884035528134021, + "ods_hash": "af919ba5ff0e4112a4dd5e4e2aa3dfb8", + "dwd_hash": "4c5cbf148fa99ba2cf8710aa517a0ae5" + }, + { + "store_goods_sale_id": 2884035528134022, + "ods_hash": "d08ef32d2f49c27caeb8090a0486a07b", + "dwd_hash": "4b5b8a78b6e104ffae84a4d63fe76aad" + }, + { + "store_goods_sale_id": 2884035528150405, + "ods_hash": "31165ae7133ba2cea89179aad9745427", + "dwd_hash": "38d4b6e87b087278da88008ce7721c23" + }, + { + "store_goods_sale_id": 2884035528166789, + "ods_hash": "a7675b58bd639867e7f0dbd7e62dba32", + "dwd_hash": "b49f87851e9d273e582c5829df90bcec" + }, + { + "store_goods_sale_id": 2884035528166790, + "ods_hash": "23fc156783e0b243e62430ed4eb03d08", + "dwd_hash": "98a291a4e927cd2de76450eceb9b1b28" + }, + { + "store_goods_sale_id": 2884035528183173, + "ods_hash": "5a3022c5a1dda76f44cdde8d015a6506", + "dwd_hash": "b31e11cc410b23a32740a295ccd90631" + }, + { + "store_goods_sale_id": 2884073991015749, + "ods_hash": "8df8368b42997814a1825e522255fa81", + "dwd_hash": "da501c4fac916f0d858dd16e1ea43225" + }, + { + "store_goods_sale_id": 2884078411140549, + "ods_hash": "cb7a3624485a4fdd2af2b4d9cbdee70f", + "dwd_hash": "ce37fca008859a723cf90392d1a8a695" + }, + { + "store_goods_sale_id": 2884084162399621, + "ods_hash": "754128a8da0760f1fc329ea73ac52c10", + "dwd_hash": "ca6c85e9645964a16e67a5a5a60a1eb7" + }, + { + "store_goods_sale_id": 2884084162416005, + "ods_hash": "bff7f382b16a21304be0a97db123f4ca", + "dwd_hash": "fa5d96a8dc210dd18ab744bd492378f8" + }, + { + "store_goods_sale_id": 2884084162416006, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432389, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432390, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162448773, + "ods_hash": "70b158141c0619a54c1c13acfa9d2d48", + "dwd_hash": "6b449cd166371bfb45866fa259df2e61" + }, + { + "store_goods_sale_id": 2884098831977797, + "ods_hash": "c7b7ba710418e7941da40f9ce2f66fd6", + "dwd_hash": "5f204ece2bbc12c5781dbe6c5fd78753" + }, + { + "store_goods_sale_id": 2884102524636549, + "ods_hash": "9c33cde00e86e171831deee4cf68461c", + "dwd_hash": "4a06c420add98d40fdaa2dae9b1a8248" + }, + { + "store_goods_sale_id": 2884102524652933, + "ods_hash": "1bc93482f3f018b6ea14580d88fd0112", + "dwd_hash": "12331a59520c8db205dd4f5d965836fb" + }, + { + "store_goods_sale_id": 2884102890245445, + "ods_hash": "fde5c30494e2da3f7e17054d48a0f0ee", + "dwd_hash": "9db910f3ba8141084dfe40e8d909ebc8" + }, + { + "store_goods_sale_id": 2884102890245446, + "ods_hash": "1a0ac5832c8b012fff1f9ff845aeef5f", + "dwd_hash": "3d3b9d08393e5e07d10ebafeda6aa598" + }, + { + "store_goods_sale_id": 2884133675044165, + "ods_hash": "be361bca6dff3f43aec6b2675253f9e3", + "dwd_hash": "b4c32c2c3398bbdaf6fa3d1a11229fab" + }, + { + "store_goods_sale_id": 2884133675044166, + "ods_hash": "d52d925c896fca712697acd73f593e44", + "dwd_hash": "3c94ba7089bca3a231447d834e44efbb" + }, + { + "store_goods_sale_id": 2884144797764997, + "ods_hash": "e8656e1b065de3f00822779934c12d3b", + "dwd_hash": "f39fe3f945d77878009a89c7c6381f56" + }, + { + "store_goods_sale_id": 2884144797781381, + "ods_hash": "3c17f17227601424eed5b14e5c87af2c", + "dwd_hash": "9c7a3945f74793135b2be1b77e12e257" + }, + { + "store_goods_sale_id": 2884144797781382, + "ods_hash": "661b0c51cb67b13f44f7f3cf3194509e", + "dwd_hash": "aa7723e85083b6be4526203a98cb56d1" + }, + { + "store_goods_sale_id": 2884144797797765, + "ods_hash": "f7b12d5d10ed0f1003e5753d0f70b3e6", + "dwd_hash": "b80167dcb9346eb517561e795802f1ba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ], + "mismatch": 654, + "mismatch_samples": [ + { + "assistant_service_id": 2859875717614661, + "ods_hash": "fa7b13f743689f91e11ab203bf427a5c", + "dwd_hash": "d099b28ad1a10e462ae753685d9eba6c" + }, + { + "assistant_service_id": 2859875718089797, + "ods_hash": "53843650e53786a55f710b1b9ea85837", + "dwd_hash": "879e73a5d9721c983284ec5a5ef1a38c" + }, + { + "assistant_service_id": 2859890845551685, + "ods_hash": "34e4fc00e77657d1a496e4158515d5c4", + "dwd_hash": "1fe15d3db83ec5df5cec783812894980" + }, + { + "assistant_service_id": 2859919577582725, + "ods_hash": "ef07ea5514697fa6d02a9313cfc0464c", + "dwd_hash": "1923bc7c623f96f7a3693e1d25085cdd" + }, + { + "assistant_service_id": 2859934271933637, + "ods_hash": "d37543700f79b556cf764c58e27f3ed8", + "dwd_hash": "6e5a12638cd1143aa217df1a11a2515c" + }, + { + "assistant_service_id": 2883857218604037, + "ods_hash": "d26a532bfb9c327e3f4ac97f41380ef5", + "dwd_hash": "396cd43c0a4d774a8a782c20e8fda66b" + }, + { + "assistant_service_id": 2883967682317701, + "ods_hash": "9def797dc289e17f5039f2d585bb394d", + "dwd_hash": "957f9a705b8eccce80a52c57af4fe884" + }, + { + "assistant_service_id": 2884112822701445, + "ods_hash": "a1a0b49f0ef316687460de0b4334742c", + "dwd_hash": "ea833b3b513415f97c7ca98d3de2a762" + }, + { + "assistant_service_id": 2884113768484357, + "ods_hash": "2704526d1f560e95279096d3d85b58b6", + "dwd_hash": "75cc09bd6782db5e0d2058366d985327" + }, + { + "assistant_service_id": 2884278030765445, + "ods_hash": "f7c94496409c43c2f5b9e508c12eccac", + "dwd_hash": "cd10b3103ad55ccb8469df38f34ab4fe" + }, + { + "assistant_service_id": 2884299272243205, + "ods_hash": "3ad9d0e8d07220b43595b2774c9cec05", + "dwd_hash": "e33acfecefd734b405c5893de801c0c2" + }, + { + "assistant_service_id": 2884369534961733, + "ods_hash": "dd0bf2b777a37712928b9e0701a31c25", + "dwd_hash": "73bf81ce305e2b1d9937f57cc952a7b9" + }, + { + "assistant_service_id": 2884406405122117, + "ods_hash": "6fdcb0bb6a237c2c1040bab7f2b82ffe", + "dwd_hash": "362edb6447740aee95d1314ae8013710" + }, + { + "assistant_service_id": 2884406405400645, + "ods_hash": "22e6fa5bd194d5cb2cbd692aa84b6b71", + "dwd_hash": "e9a8a52adc2da7a47422c57515920e49" + }, + { + "assistant_service_id": 2884406405662789, + "ods_hash": "d0f360c09d526301c7bd4193dafadc77", + "dwd_hash": "0946a10bec0b8097a172d8c93180f631" + }, + { + "assistant_service_id": 2884406405924933, + "ods_hash": "2e17e68e4ab082d11b6a61509b5c95bd", + "dwd_hash": "d91f464711999ee9a0b5729f75cfa867" + }, + { + "assistant_service_id": 2884406406187077, + "ods_hash": "3114efe09a86fe4a1f2f0a6b3a3c6375", + "dwd_hash": "95e6602ca0696eb84073c6cd4cc9b82a" + }, + { + "assistant_service_id": 2884406406449221, + "ods_hash": "e5113f5bde66585fd8c878c1fd292dc3", + "dwd_hash": "fcc1445a6f6dcfd2de343f6ce8f20838" + }, + { + "assistant_service_id": 2884456168458437, + "ods_hash": "e9f22640f66fdf298685dcaa79799504", + "dwd_hash": "5692e01622cc96cc98f114f3fa9de429" + }, + { + "assistant_service_id": 2884458957047813, + "ods_hash": "be957a1d756656caf62552ec764b5c8c", + "dwd_hash": "dac69c2c8e3248a3303392187f500bdc" + }, + { + "assistant_service_id": 2884477325625541, + "ods_hash": "93c4cfcf34c523a8fb8528c72cc06c2b", + "dwd_hash": "61bdde6bcdcbfce840b707cc51ec9cd4" + }, + { + "assistant_service_id": 2885318693456389, + "ods_hash": "4ecff5e77539115d8efe54ef9fff866c", + "dwd_hash": "03bcfbc2ceed85cabc12ba2753334e87" + }, + { + "assistant_service_id": 2885343969364357, + "ods_hash": "1c281c3b08d05de00a2e0d6335c61895", + "dwd_hash": "d752338048b27f6219cb9cc7d930ee3c" + }, + { + "assistant_service_id": 2885384116226437, + "ods_hash": "095ee4b561bd38d57c6e2c88e839d56c", + "dwd_hash": "8cf48092871cc5f87148d4a4dfd4fc60" + }, + { + "assistant_service_id": 2885409492076869, + "ods_hash": "1ab66eab0458896d70b7b55ba92d44a4", + "dwd_hash": "9d445572e168a5be2d8b60e2505477ee" + }, + { + "assistant_service_id": 2885409492388165, + "ods_hash": "ec1420acad43b65be7073c70e2e1fa78", + "dwd_hash": "6bec50742325277c19f5b7ed9568817e" + }, + { + "assistant_service_id": 2885409492732229, + "ods_hash": "576bd882a5da12c9630e655e40d61218", + "dwd_hash": "5cca314b15ddb7b4a11d5d4e9287eeaa" + }, + { + "assistant_service_id": 2885485592906117, + "ods_hash": "3dc3bc09b291bdacd37c3e260fd9f3c4", + "dwd_hash": "d8ee4d04cc5638de108dd0b6851cda60" + }, + { + "assistant_service_id": 2885491390826949, + "ods_hash": "3510b182200a58e9ac296c809a125809", + "dwd_hash": "563a02874c05472ca66f69bc9093efdf" + }, + { + "assistant_service_id": 2885515567352133, + "ods_hash": "9279f808835fab81649df54c097eef81", + "dwd_hash": "4089a7ab4d4512393a090739f777f30f" + }, + { + "assistant_service_id": 2885677653199365, + "ods_hash": "42d3ba27daa505f7eb899cab83b1604a", + "dwd_hash": "5c776d41f3bbf8bd0c79b6064a11968f" + }, + { + "assistant_service_id": 2885710579550533, + "ods_hash": "8e84155306056401d09e9625aaa5a7a3", + "dwd_hash": "9f3fe106520d68d4b179c4f2572e608b" + }, + { + "assistant_service_id": 2885719805823365, + "ods_hash": "50c018838b728b7fb4bb68adc30db739", + "dwd_hash": "4d7d537a6aef797cc01059a7ed98128a" + }, + { + "assistant_service_id": 2885740978555397, + "ods_hash": "751b1d5025244e01c34e450969cca5b6", + "dwd_hash": "2b74156f7b2f9f8f839a80b2df3db9c4" + }, + { + "assistant_service_id": 2885754168068485, + "ods_hash": "d422a9d2ba5d7f4732629ef4e11b1f76", + "dwd_hash": "e272fafccf5bbee367d16f808a5b49c9" + }, + { + "assistant_service_id": 2885813118175557, + "ods_hash": "c47bc0b1879af2992c29095673549eb0", + "dwd_hash": "6fe62c32640f23950d224fa9406eb21f" + }, + { + "assistant_service_id": 2885814037268869, + "ods_hash": "16720386bb0f6b3cf6576e82fe082144", + "dwd_hash": "90f5b40153b0413aa9c122090bac95dd" + }, + { + "assistant_service_id": 2885816260626885, + "ods_hash": "49c9c38f925e132d6c1370f4dbd7679b", + "dwd_hash": "881527a4dc9a398027258a56f2706e6f" + }, + { + "assistant_service_id": 2885816260905413, + "ods_hash": "a5e28e565f615769e7c5833f1f371c6d", + "dwd_hash": "47e47f4d4de11c5dcfffd2c10d95a14d" + }, + { + "assistant_service_id": 2885816261151173, + "ods_hash": "e44105242583f3188e21c66aa524e37b", + "dwd_hash": "1a45cdd68ecdf29dd4e1c85b2021d063" + }, + { + "assistant_service_id": 2885816261462469, + "ods_hash": "ba2a1cfd2d7dd1973f2aa8fb388191d0", + "dwd_hash": "59959ab9a9f17c2e4347c2cdd63ab9df" + }, + { + "assistant_service_id": 2885824614811973, + "ods_hash": "e47fd1904bcb191a2049265e0450eec2", + "dwd_hash": "62236f1d2ede0c1a243e9fe50bcc3b05" + }, + { + "assistant_service_id": 2885877690354117, + "ods_hash": "ea66b348acdbf6a7873c381e27805a3c", + "dwd_hash": "c2daf181af40b00060de8797e5255b70" + }, + { + "assistant_service_id": 2885912249895237, + "ods_hash": "b3aebdd1746f46fab9cb078b1daef4c7", + "dwd_hash": "b76511cd4e0a1c496947b9bd251d92fb" + }, + { + "assistant_service_id": 2885912250173765, + "ods_hash": "7f0f7cf0488a0ad650bb9d548866018e", + "dwd_hash": "dd4921f18273c16e8da748a0b5b01258" + }, + { + "assistant_service_id": 2886025942993221, + "ods_hash": "713fa40a0ad7d9a89f146d13baca726e", + "dwd_hash": "3246f114e4405535e3ffa1d1d9da11fb" + }, + { + "assistant_service_id": 2886025943238981, + "ods_hash": "00973f7c346335ceba7a431125e60da0", + "dwd_hash": "5a66c1b894541dbcde94df3630226368" + }, + { + "assistant_service_id": 2886705296197957, + "ods_hash": "72a29b3cae317ebc24e585371e601565", + "dwd_hash": "82a84fc0e4412647d0ef2d52c710ec5e" + }, + { + "assistant_service_id": 2886719222434181, + "ods_hash": "4dd9b10254ae61ceaaedf03a51b597a5", + "dwd_hash": "72abe14789e064a5f75ca17b7d1cab92" + }, + { + "assistant_service_id": 2886745517099461, + "ods_hash": "2f59d2ebeb0efc4c2a3eba7294a7dc9b", + "dwd_hash": "e4b8e5e208ebef936a8a1937a680e34e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ], + "mismatch": 1173, + "mismatch_samples": [ + { + "redemption_id": 2884075080060358, + "ods_hash": "a5bdb3fc7cbb326b96ab0fd106c0ac2e", + "dwd_hash": "8c0700916b292bba20391ab8ceded352" + }, + { + "redemption_id": 2884084162530693, + "ods_hash": "a2f317eab87f6ca54dbb8a2e4abae52a", + "dwd_hash": "d85d9deab29210c1551970893ca3bc4b" + }, + { + "redemption_id": 2884084162530694, + "ods_hash": "5c5e14e40e63921419fef11413080484", + "dwd_hash": "46d5897fb292c383e3d0909b4cf0d339" + }, + { + "redemption_id": 2884084805799365, + "ods_hash": "6456cb31e83af29c33bab8bc2bc438c6", + "dwd_hash": "20a1a52f6f8681598004992bc5959e85" + }, + { + "redemption_id": 2884102524718469, + "ods_hash": "aff97b89ca6fb75fcadebe70c0c33f7d", + "dwd_hash": "76ef71ce0a1e0e8f339cd81f00499a66" + }, + { + "redemption_id": 2884102524718470, + "ods_hash": "303a4893d669572f01e7a610d16fd3b7", + "dwd_hash": "8d95abf6e9a8c52898a8bbbb7c40cbdf" + }, + { + "redemption_id": 2884113768910341, + "ods_hash": "e8d7f9f76547536293d43bc746608d03", + "dwd_hash": "6c3e36f12c05caec2578fddff8f92b41" + }, + { + "redemption_id": 2884146733895173, + "ods_hash": "7a67f6e521cbc8fc71988729ee42acde", + "dwd_hash": "02c10eda133d8b9e5b981359ab691f66" + }, + { + "redemption_id": 2884159168187781, + "ods_hash": "53a95aaa52a700b863abd286965c574f", + "dwd_hash": "62b9037d835b9ece1550a0437a1fb71f" + }, + { + "redemption_id": 2884167223446853, + "ods_hash": "483374a0c9a56b6f8d50e5515ec1b687", + "dwd_hash": "88ca21ebefae770e2c7a6c129d5665a4" + }, + { + "redemption_id": 2884169190067717, + "ods_hash": "5c60d65e725491d02ab7e550572c0249", + "dwd_hash": "08a06fe5e27ad1080443af2aa2e72c7a" + }, + { + "redemption_id": 2884176833187333, + "ods_hash": "d2bd608a90aa9d29384cd388ba146617", + "dwd_hash": "8d2d3f2cbcddec164db4d83087228b4a" + }, + { + "redemption_id": 2884176833187334, + "ods_hash": "2dd4f6ede48b5e5b2eb2c82f85e3e84e", + "dwd_hash": "0cf1138bd90266d250f6daa08b160402" + }, + { + "redemption_id": 2884182427291013, + "ods_hash": "443619e4022429cfcc4deb794dbfc515", + "dwd_hash": "2d7b83b883559e0b5d9f2977115d1d8f" + }, + { + "redemption_id": 2883738008095877, + "ods_hash": "0720889512c6c8fc7ff364f108175f0e", + "dwd_hash": "67ac53370f0785ec3f4bab0da1dd7dbe" + }, + { + "redemption_id": 2883842833894533, + "ods_hash": "9e5125e34e713e0c43651d598ebe2830", + "dwd_hash": "c63af5bee9b284d95fb7cdfe9120b332" + }, + { + "redemption_id": 2883913640955333, + "ods_hash": "eea19e544dbb730b4101d7aeafffc0aa", + "dwd_hash": "bee29b19e9ba898baf04388deb57767d" + }, + { + "redemption_id": 2883936116133253, + "ods_hash": "8f6f4f9286f552a160e0ff32b09bfea8", + "dwd_hash": "afe2d300bce310e454def69340d26cf5" + }, + { + "redemption_id": 2883936116133254, + "ods_hash": "4333874cd4843577fbd0b6536665dd48", + "dwd_hash": "804e08ead9c2b55b6d02405f95714585" + }, + { + "redemption_id": 2883967683300741, + "ods_hash": "6cc3eee933c8425aaeebf8967cfb63b7", + "dwd_hash": "80d323b5b1180e7c6750ad45d0582014" + }, + { + "redemption_id": 2883967683300742, + "ods_hash": "c41ed9540b1786f38ada694466c0fc79", + "dwd_hash": "ec0eca4c104317866bd4bdc2c1af39d0" + }, + { + "redemption_id": 2883972314746373, + "ods_hash": "da889eb3a3e8dd802e65541a59e34cea", + "dwd_hash": "2f2ad26fdad50e0b5408b5810bc62f80" + }, + { + "redemption_id": 2883995919797701, + "ods_hash": "885dac641b734b978b93e45e784e1b9f", + "dwd_hash": "b85a8f41aed2002f03d6fddff955b81f" + }, + { + "redemption_id": 2884035528297861, + "ods_hash": "8c75a84f9c00e3a5e74203eb4b021732", + "dwd_hash": "9c6963d624af59208232db022afc4a70" + }, + { + "redemption_id": 2884038344953157, + "ods_hash": "055e2b5b3e33fc73fb038824cf2c7fa5", + "dwd_hash": "b1b16bfeab3e23df12ec73d1fdde1419" + }, + { + "redemption_id": 2884038344953158, + "ods_hash": "0922535ee0f4f1ca877ccddc41327046", + "dwd_hash": "df3fad8886bfee9dc8d402f5d6d0bdd2" + }, + { + "redemption_id": 2884039651659205, + "ods_hash": "86773ad2b5415d7966a3ded57f40983e", + "dwd_hash": "877a92874c76ff0391ad6d984957f692" + }, + { + "redemption_id": 2884073991081285, + "ods_hash": "95689a5c88af7f169c5134a12fc09b49", + "dwd_hash": "0d929f528551cd0404910ac41be356f6" + }, + { + "redemption_id": 2884075080060357, + "ods_hash": "0a7383613a7970907995d98d0599383d", + "dwd_hash": "6d1be03c72207bded6bf968ea099a67c" + }, + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2858900465764101, + "ods_hash": "d555647afea36b1045bc43b3ccc7d6f7", + "dwd_hash": "2d758521312690898acce8bdfd25d170" + }, + { + "platform_coupon_redemption_id": 2858902528526085, + "ods_hash": "d8ace7028679afbe461f0973f26fe57c", + "dwd_hash": "64b0368be845eab6fbc57643fce33374" + }, + { + "platform_coupon_redemption_id": 2858905827919557, + "ods_hash": "bf8e469b41ca3f40043e214df01aeea6", + "dwd_hash": "a87d128a0794b2cd9c2c5b1a82a9c534" + }, + { + "platform_coupon_redemption_id": 2859637215972485, + "ods_hash": "4f32056c11e10fbcbd72a0663c55c0a7", + "dwd_hash": "40db5725164b8f81cb5aad9737f61eaf" + }, + { + "platform_coupon_redemption_id": 2859655212764293, + "ods_hash": "735efffa0ff2fd1bdd7fd725393db6e9", + "dwd_hash": "e7fb277498dee35d7523315612342ab3" + }, + { + "platform_coupon_redemption_id": 2859688383368325, + "ods_hash": "184203ec8995c558a8027f879b9139d3", + "dwd_hash": "f85e5feaf45c6ad06252ef1197c3b1c3" + }, + { + "platform_coupon_redemption_id": 2859741772532933, + "ods_hash": "8a796e30769df7ad1e9968e6bff7da04", + "dwd_hash": "fddc65abfb0a151f9339322c42e219e3" + }, + { + "platform_coupon_redemption_id": 2859741894511813, + "ods_hash": "f03c962a56e7ac2af3abb46c2a053ddb", + "dwd_hash": "98151bd5840e7b53e413b1ff4658eecc" + }, + { + "platform_coupon_redemption_id": 2859771195280453, + "ods_hash": "ab7417ab9e058402d961012bba7f1cbb", + "dwd_hash": "09d3f39fd51730130d87fee7c485021e" + }, + { + "platform_coupon_redemption_id": 2859778292075653, + "ods_hash": "4c681f914d10da481a18c0275db1d068", + "dwd_hash": "2eff2af48e5c5e5fc36aa0ddea2ce1a7" + }, + { + "platform_coupon_redemption_id": 2859807207804421, + "ods_hash": "8a095d41183919964ab7d27cbd12ef34", + "dwd_hash": "cceb4e6c14629cd8b38111c09dcd1518" + }, + { + "platform_coupon_redemption_id": 2859807207804422, + "ods_hash": "e692877ace6c3f8ec2a94258e003baf0", + "dwd_hash": "d42e275d306448c6c1275fe4488d2200" + }, + { + "platform_coupon_redemption_id": 2859811957050437, + "ods_hash": "d74013e55a936ebabbf64719fd4bad7c", + "dwd_hash": "cb4941bbea5198477d5d6d9ba718d0af" + }, + { + "platform_coupon_redemption_id": 2859842889370821, + "ods_hash": "434deb48c705ee2f2559de0e15bd1c9e", + "dwd_hash": "464494f5421bde6666651db2fb01c0cd" + }, + { + "platform_coupon_redemption_id": 2859850500115525, + "ods_hash": "a22473680ff5f5e8f8180135d9eede64", + "dwd_hash": "50361ee1335dff3226b9469a25fad668" + }, + { + "platform_coupon_redemption_id": 2859853566774341, + "ods_hash": "14d1dcc581f41d8621699254662f4d4b", + "dwd_hash": "29b6f300ef63640ed78674b52b214689" + }, + { + "platform_coupon_redemption_id": 2859855025409541, + "ods_hash": "fbfb1b8f3627e182b61359b6547cc467", + "dwd_hash": "01fee07409afbfda1c7777ecae5efee3" + }, + { + "platform_coupon_redemption_id": 2859861867760837, + "ods_hash": "a14f860bd15257bb9aa7399531279bee", + "dwd_hash": "711fd50819c612eb13d8c01599179f3d" + }, + { + "platform_coupon_redemption_id": 2859879443746309, + "ods_hash": "034a57fc03970e95edf48e63dc62bcbe", + "dwd_hash": "94ad6a9a23b2275dffdddce0f1c475a4" + }, + { + "platform_coupon_redemption_id": 2859898180799685, + "ods_hash": "a6c5e23132b504656aa2301d463f19ba", + "dwd_hash": "4f0a46dbafe5a6772f05aae2274bd2fd" + }, + { + "platform_coupon_redemption_id": 2859920996765189, + "ods_hash": "c5935d7b396ab312f4bffc6703b32cb7", + "dwd_hash": "ff6216230529882b0da5a370a3a8078c" + }, + { + "platform_coupon_redemption_id": 2859922909432901, + "ods_hash": "4dc19a0ea7c41978b63b4fdb99537ee4", + "dwd_hash": "b5b8ce8814d6a62b1531df8a2ee685c2" + }, + { + "platform_coupon_redemption_id": 2859946841754757, + "ods_hash": "d6bde963982c9b9010768576c29ab37c", + "dwd_hash": "c9396b60aeb789f551495fc3ba30dea3" + }, + { + "platform_coupon_redemption_id": 2859959157771333, + "ods_hash": "14452109227517616e49aeb334de619d", + "dwd_hash": "558e0ab9c372e589a5557c1a0ba91ddd" + }, + { + "platform_coupon_redemption_id": 2859964348763333, + "ods_hash": "c19024172f8816cd32b2515e15d6fa16", + "dwd_hash": "139c9dd3066f49b23b77aa1c8d3b9a1c" + }, + { + "platform_coupon_redemption_id": 2859978577710149, + "ods_hash": "1a697cde03c97a8645a111b866f5f2a8", + "dwd_hash": "69f334db9e2f60d469f998752ae43873" + }, + { + "platform_coupon_redemption_id": 2859981422775365, + "ods_hash": "4a9f3ee5b60ed38305159279ee7a24b5", + "dwd_hash": "45e242ff6e1a23ed5e896207878355f0" + }, + { + "platform_coupon_redemption_id": 2859989505625285, + "ods_hash": "f09877961b68117702d6383e48956b27", + "dwd_hash": "4ea5c5e90ffec70b5f9766ec148fc3b3" + }, + { + "platform_coupon_redemption_id": 2859999214816389, + "ods_hash": "9b5476bea591a00ac0444f474f1018e2", + "dwd_hash": "ca043ffcc6fa47cfc786356594e9d552" + }, + { + "platform_coupon_redemption_id": 2860002674592965, + "ods_hash": "4731c915f4ccd5b08b3500e9341f51b0", + "dwd_hash": "d8cf49c5b4f423a05dd0cb0aea650ce4" + }, + { + "platform_coupon_redemption_id": 2860014098402373, + "ods_hash": "192ab9bd1e390a9e3d9b20817bc5367b", + "dwd_hash": "e959479a2d64cc71cf68aab8c7709f41" + }, + { + "platform_coupon_redemption_id": 2860014268681349, + "ods_hash": "7fdf46fa401690b2da85c5a692f84fe6", + "dwd_hash": "e2d11054e5de96d5e624cead751a5caa" + }, + { + "platform_coupon_redemption_id": 2860018764319941, + "ods_hash": "c2501354329cee675f5455a2d94fded6", + "dwd_hash": "c7875e9bce6460ee6b0c398b9cda89a6" + }, + { + "platform_coupon_redemption_id": 2860024155819141, + "ods_hash": "aa8079ce3300aeac185edb2d2c1e99a8", + "dwd_hash": "46f592e265005a476441886fe9a2aeda" + }, + { + "platform_coupon_redemption_id": 2860029915352197, + "ods_hash": "2c7db6cea4dba60190f3715a64355912", + "dwd_hash": "1970245ebb1c5f2c1e5688f83b689866" + }, + { + "platform_coupon_redemption_id": 2860042074574021, + "ods_hash": "2864d4087d74073726c00b87f58e0cab", + "dwd_hash": "466799966511952b387fbd770738fdb4" + }, + { + "platform_coupon_redemption_id": 2860058566053061, + "ods_hash": "4eebac273dc9ec57b9812990bf36e6e3", + "dwd_hash": "45ea7927dea6eeac77bbfc16bb7e64f5" + }, + { + "platform_coupon_redemption_id": 2860058705628677, + "ods_hash": "c6b8ccf03331ed6ef8597d9174e0c2b4", + "dwd_hash": "07899e3cf3bf59de51ad577a3a6d808e" + }, + { + "platform_coupon_redemption_id": 2860060060929157, + "ods_hash": "8b4925546789553df80f9977aa16c7be", + "dwd_hash": "8c133122aa8d18378b3c6cea74c0cb06" + }, + { + "platform_coupon_redemption_id": 2860065915669637, + "ods_hash": "1857f033be553f05b09fe508bcb4cfa9", + "dwd_hash": "2bd7b0c300f84121c0c1529e30247b2b" + }, + { + "platform_coupon_redemption_id": 2860071105891397, + "ods_hash": "d0d2e7a4b508af5dd7a09de517afe966", + "dwd_hash": "e7346a284e6c1e45b6176aa8a18b5e53" + }, + { + "platform_coupon_redemption_id": 2860076217486405, + "ods_hash": "e35bc228c7e3f510779be6fad292f9ea", + "dwd_hash": "9694ccbc45b92db21a68eff90bebf088" + }, + { + "platform_coupon_redemption_id": 2860080730885317, + "ods_hash": "017e2f1df29fffc2f3fe13254724b753", + "dwd_hash": "0286c0e1856de4230f89e9290bc47b67" + }, + { + "platform_coupon_redemption_id": 2860083772001797, + "ods_hash": "e4752b06d19a0577ad3ae046977089fd", + "dwd_hash": "c3e6d01a6103bf791598d984c446f995" + }, + { + "platform_coupon_redemption_id": 2860105864302085, + "ods_hash": "31ea606c2b3901317f291ca97da40951", + "dwd_hash": "1331bc5d89e64b0abe096d757a153d56" + }, + { + "platform_coupon_redemption_id": 2860106446048389, + "ods_hash": "be76a73a2658631eecbdbdd77b2ba3ef", + "dwd_hash": "8519c81bed346e8d58ad4c373e62ee8e" + }, + { + "platform_coupon_redemption_id": 2860108627217605, + "ods_hash": "81cc07ace8897f6c1f9dc39df46c6eb3", + "dwd_hash": "2c85c073e1a12234a1792a9b2784488b" + }, + { + "platform_coupon_redemption_id": 2860108627217606, + "ods_hash": "9f5add8b31a19413605013cd0f178578", + "dwd_hash": "522ff74c628291719d27e3f74995cef9" + }, + { + "platform_coupon_redemption_id": 2860108627217607, + "ods_hash": "476a0484f8479af9699a532cd4e4ec38", + "dwd_hash": "a8202a4cb5db90da17f2123308c68515" + }, + { + "platform_coupon_redemption_id": 2860109314755781, + "ods_hash": "6c66f77074b0dbe56e98aa8428200803", + "dwd_hash": "0c691f172c57701b8b4836babd23a8c4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ], + "mismatch": 1544, + "mismatch_samples": [ + { + "payment_id": 2883719454805061, + "ods_hash": "db29d711a8f52a74b74d3a46fd52fdb7", + "dwd_hash": "bd5089bff6ef546cb5dedf636dab6f63" + }, + { + "payment_id": 2883738005671045, + "ods_hash": "d359776dcf5d7f4a816e8fb8877ec639", + "dwd_hash": "26c43e37075c17147aea9dcba250399a" + }, + { + "payment_id": 2883783935298693, + "ods_hash": "1de35716b5924a913781698a90a487b9", + "dwd_hash": "339c63bf54669a6b8352b90b291ddb6e" + }, + { + "payment_id": 2883842831355013, + "ods_hash": "7d1414973661db64a77f626664f03f16", + "dwd_hash": "8770a499dc0be9ee7bb7f0ac0a60e8a7" + }, + { + "payment_id": 2883856962980997, + "ods_hash": "88829b0d95694a241e3896191465f83f", + "dwd_hash": "a0906b99049194eaf90a10b3779fe9b2" + }, + { + "payment_id": 2883857216539653, + "ods_hash": "ee24d77354fa25876f3c47f4f3d897d1", + "dwd_hash": "758c531ecf8c03fa3067d8f65f268244" + }, + { + "payment_id": 2883913637645765, + "ods_hash": "0425cac0f5e536e25591a0fa9e74d88c", + "dwd_hash": "600ff4af30ceb4f25dad06c1a595a64b" + }, + { + "payment_id": 2883924155026757, + "ods_hash": "6282f091cb30ecd1d7ab5858961f8bdc", + "dwd_hash": "2a8c550a1cd4373a2094efa0516403b4" + }, + { + "payment_id": 2883925550419461, + "ods_hash": "a347176d0ad310f8ce659d9cec4d309a", + "dwd_hash": "78c0a8cbb58a84afa3e29d180fe188ae" + }, + { + "payment_id": 2883936113675653, + "ods_hash": "ff8cfc391b6f9ce7550f40b325f39fcb", + "dwd_hash": "5fdd664a2a6901aeff73093353e2b43a" + }, + { + "payment_id": 2883952989851077, + "ods_hash": "3b36506c0cf4121112db4ed958341502", + "dwd_hash": "f06f68cbecd14149873952dfbea6e487" + }, + { + "payment_id": 2883967678762373, + "ods_hash": "2e1abd7f2b4b88fb966622e8eb26e507", + "dwd_hash": "4ddbc2f570ee07dc3c125274e76f58a6" + }, + { + "payment_id": 2883972311879173, + "ods_hash": "a43553ffbf2f8eb27c082c8fef2b8cae", + "dwd_hash": "dfc8c4c9ff84faed0703b2e9d69d20fd" + }, + { + "payment_id": 2883995917241797, + "ods_hash": "162fcb9526578314738d939aaecb9c7b", + "dwd_hash": "7189485c7a5e5a444abe0a0b571c88b0" + }, + { + "payment_id": 2884028544519621, + "ods_hash": "a36fc70e9086d90db1d7f8e1184937ef", + "dwd_hash": "69a3be0ff298c07f49f70dccc26be2df" + }, + { + "payment_id": 2884035525496197, + "ods_hash": "2422c67fcd46e1ae3c508b2e161dbd6f", + "dwd_hash": "3572341b4659d068cec4ecb3cfa2052c" + }, + { + "payment_id": 2884038340742469, + "ods_hash": "b8e81a15ee4050a1221c5eb1bd32ac23", + "dwd_hash": "3b29b4b8c93af5f8258c3cdfa7c34409" + }, + { + "payment_id": 2884039649119685, + "ods_hash": "1a030c9108af7ee2c049c3ddeaede361", + "dwd_hash": "a06547f1dcf620afbd257f40a9c72e31" + }, + { + "payment_id": 2884073988427077, + "ods_hash": "6d9d4e073db89185ad6aa0bad0c00026", + "dwd_hash": "986cfe082f8d1fc2e6d52988ae9818f8" + }, + { + "payment_id": 2884075077127621, + "ods_hash": "15570acc7df32f8e9478c2caa457fd03", + "dwd_hash": "70531878fcabb9fa43c77aa4e22798ab" + }, + { + "payment_id": 2884078408879557, + "ods_hash": "f98f93992faf261d0ae79b6a537c645c", + "dwd_hash": "b0fcac30acd8a208dd3a1d46b6f1d5ce" + }, + { + "payment_id": 2884084159712645, + "ods_hash": "02ca22b3779fda6c56e17330dc34287a", + "dwd_hash": "c2866394126041ea0c631b9d5590dbe5" + }, + { + "payment_id": 2884084803308997, + "ods_hash": "bbe3302e3bb95eda51d00325e4afb310", + "dwd_hash": "4129397feb281c75ad675a5b7961849d" + }, + { + "payment_id": 2884098829208901, + "ods_hash": "c375e399e2680b407cdac4b0600df1e0", + "dwd_hash": "7dc32dd8e84fcc2a5ede4802d7627e39" + }, + { + "payment_id": 2884102521851269, + "ods_hash": "29c5ed749b8c8d1d7a137603df39a3e1", + "dwd_hash": "9976e6c99b169a2ee830be83177be3e6" + }, + { + "payment_id": 2884102886477125, + "ods_hash": "5767a133de8f2b33956bc331b58ffc53", + "dwd_hash": "a374b2ca40b6bb72fe69e7dee7f54602" + }, + { + "payment_id": 2884112819178885, + "ods_hash": "709f76d3291eb749f0075c61594e88c9", + "dwd_hash": "5b015a813c32a1d33decee333cb61426" + }, + { + "payment_id": 2884113765338629, + "ods_hash": "826426c17e9abf441469069380d92872", + "dwd_hash": "56d544d7ce03738d063ac7a63d2eae59" + }, + { + "payment_id": 2884133672586565, + "ods_hash": "6c5e7164a4b75ad1ee6435d9dcf8705f", + "dwd_hash": "7d9e3a8cb2bcb49df18615eab572d69a" + }, + { + "payment_id": 2884134137826629, + "ods_hash": "9fac04f5a4dafe20f1cd40702abf4858", + "dwd_hash": "905d5b3e8bad8571a50efa6377e862ad" + }, + { + "payment_id": 2884144795454853, + "ods_hash": "81668fb7f0ab54c123c52337f36ac4d9", + "dwd_hash": "68ec003b76a0f3517689886902fe21e4" + }, + { + "payment_id": 2884146731175429, + "ods_hash": "aba6964ceef015c01153e5722ed917d9", + "dwd_hash": "646501374ae915b90ca0e0b5de6bd53f" + }, + { + "payment_id": 2884146915184069, + "ods_hash": "e80384fb6c10bb14f3980cf1846c9b7b", + "dwd_hash": "3cec4b56f5e91d5d7cbf9ca569ebd36f" + }, + { + "payment_id": 2884155505954245, + "ods_hash": "07709b5877a814f2f1aba2e10077a685", + "dwd_hash": "e6bdd9726e08455a53f7584b5e106504" + }, + { + "payment_id": 2884159165369733, + "ods_hash": "34b1b7af2a6dd4e96452719c25acbb67", + "dwd_hash": "eee3740851cd35d497e9ebf3019512f1" + }, + { + "payment_id": 2884166277008773, + "ods_hash": "0aec5901c1f895220105ab5ea8467205", + "dwd_hash": "478994c4c3e5db4adffc5b2cc6c659af" + }, + { + "payment_id": 2884167220923717, + "ods_hash": "2a5a6d2afdc6ab21fb5d3da852df3102", + "dwd_hash": "ee69ec3e778275b053cd26fdf7b70e9e" + }, + { + "payment_id": 2884169187347973, + "ods_hash": "656caadf404f38959f30d1febf4809bb", + "dwd_hash": "4e91e051ed961d61e88a1945b50e08c9" + }, + { + "payment_id": 2884176829632005, + "ods_hash": "b9c71bab2a4c5c809efdd44d8fcad056", + "dwd_hash": "b7ace515731e2dd1a8ebcc9eb31fa043" + }, + { + "payment_id": 2884182420262278, + "ods_hash": "3a8cd03afae7435ab318dbbd8ac114ae", + "dwd_hash": "e35a56cd4d14548c20cb15be6ef78f10" + }, + { + "payment_id": 2884183891086661, + "ods_hash": "879972fdef940d60bc5e0f3370fde784", + "dwd_hash": "4fb2e2ea5bfbd084e57e1004ec4d3a78" + }, + { + "payment_id": 2884187074792965, + "ods_hash": "65310fbe3009e55d22f228198bae4026", + "dwd_hash": "839e76b29d15b7ac2fdb6dd67376048c" + }, + { + "payment_id": 2884188922285573, + "ods_hash": "c3520766e8cfe513156c0603160c6e97", + "dwd_hash": "4330b71d9ff375184cb4a28e4e21d181" + }, + { + "payment_id": 2884192648351237, + "ods_hash": "68020e75de25ee8db54efbb2b3e17c14", + "dwd_hash": "7cc82b1d30fb241215dd1f9e0d7324ac" + }, + { + "payment_id": 2884197685284165, + "ods_hash": "ff0e8405f850d6e6249c60e5285bc1b4", + "dwd_hash": "5dba2135c1b27c545547c2b7ee92ffcd" + }, + { + "payment_id": 2884199477906949, + "ods_hash": "0bfbba25d94537c8f2fd9527b1b32136", + "dwd_hash": "7006c06ebe5017cfd9555cc720c64e15" + }, + { + "payment_id": 2884199525830021, + "ods_hash": "f32fff56832782d63960e6a3824dc53b", + "dwd_hash": "89e44ef5850f547114c9dd81b8dfedad" + }, + { + "payment_id": 2884203093233029, + "ods_hash": "5dc3f47209626bfcdc82a497e45696c9", + "dwd_hash": "2ca54fc1186b7c1fd1bb6b354ec1c262" + }, + { + "payment_id": 2884206904872453, + "ods_hash": "d91e2d99f008dd4ad5d11c7ec01d136c", + "dwd_hash": "88e4b1e3cc2bebfa293df4179332a37d" + }, + { + "payment_id": 2884206976929093, + "ods_hash": "fa8a962ce21f666d0ebd0cff9cccf7e6", + "dwd_hash": "e53bca2bbb5f732fffdde576feacb1ed" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21547, + "total_mismatch": 45243 + }, + "generated_at": "2026-01-31T23:09:36.662731+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 203, + "records_with_pk": 203, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10199, + "records_with_pk": 10199, + "missing": 3, + "missing_samples": [ + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 41, + "records_with_pk": 41, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12027, + "records_with_pk": 12027, + "missing": 5, + "missing_samples": [ + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 5, + "records_with_pk": 5, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8319, + "records_with_pk": 8319, + "missing": 3, + "missing_samples": [ + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "ad570076c51b6feb0a41f4cc4c0ee893174bc90a5b2311992a902dea42d52125" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "af84ea43328906e71379e0965a64437a7f531b632fd3dbeec93335ce91725f4f" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 332, + "records_with_pk": 332, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "be3f7d611af412e29e87a0007944e5facbe566fbd0f7eafe433a22aa5c46b63e" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "d07f506ba20cbf4945408f205916f0613222762c44a64bb13a84a265f88ba2fc" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 208, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 208, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 13, + "total_mismatch": 25, + "total_errors": 0, + "generated_at": "2026-01-31T23:12:42.416508+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "e5e15050ade8138c71b21ea8909e48a3", + "dwd_hash": "25b221661fcdafdcda2756fb6cb5c996" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 2901526704180613, + "ods_hash": "aca5a9e67beb1017f97adfe6f73be1ad", + "dwd_hash": "041dbfe0fa2d29d37a7b751fff0a5046" + }, + { + "member_id": 2919518015802181, + "ods_hash": "44c68cbb7007c99a597cf49e70271721", + "dwd_hash": "b6a052437c60029e0b289614b598bc2d" + }, + { + "member_id": 2924186553484869, + "ods_hash": "1e846e736d8d0f8665c2e8b701bc9261", + "dwd_hash": "1c54307e62ff44ed6efb4a3435543228" + }, + { + "member_id": 2929237914683013, + "ods_hash": "2599895d90466e12516eccda0a2d9250", + "dwd_hash": "bedd7f571988568a23605da7ebca5540" + }, + { + "member_id": 2929254989743493, + "ods_hash": "acdf38cf5c017f14fb07562b4cda760f", + "dwd_hash": "c6d3bafe4ebb05976976bd027eda5218" + }, + { + "member_id": 2933647801731013, + "ods_hash": "8400169709f39e03d95311c5abab652b", + "dwd_hash": "ee81f6402de8aa7c9dd836821fdad525" + }, + { + "member_id": 2935271033079557, + "ods_hash": "5fc1b355aababc83c31ed123d94f70c5", + "dwd_hash": "a9b1582473d510e716c0a63db37115e3" + }, + { + "member_id": 2938228399917253, + "ods_hash": "99a46f4e7ba9f5bfe3ab88a0040e9e29", + "dwd_hash": "8ead3b3f9a6402ef9838ab268605a02b" + }, + { + "member_id": 2938229628340421, + "ods_hash": "ea2e215a39521ce8ea0b4bb3fb048bac", + "dwd_hash": "e17db344660168f187e1f52e7efcc746" + }, + { + "member_id": 2939339802315269, + "ods_hash": "564d3f1e999fe4939a414ff7fe07ef71", + "dwd_hash": "ab1b39885fadbd0fb3bfa61eabbd1d4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 21, + "mismatch_samples": [ + { + "member_card_id": 2901526704655749, + "ods_hash": "6e13e5e44bf4f76796e7bf54137a783d", + "dwd_hash": "75ebeb0e553dfa2b5c778086db77d679" + }, + { + "member_card_id": 2911305241249157, + "ods_hash": "40837a84eba1e9366f960f4769d28f48", + "dwd_hash": "2b9be7cd27f0ac9959f684727c7f419f" + }, + { + "member_card_id": 2913393474192965, + "ods_hash": "caa950d833c9b7dafc7f57b828cde836", + "dwd_hash": "8ca788765d427e2e5448e12285c39166" + }, + { + "member_card_id": 2915510109228037, + "ods_hash": "66b63bdcc2d270771eeb1ce4efddedfc", + "dwd_hash": "0cc6e2026f86ffe818307f16ab17c268" + }, + { + "member_card_id": 2919518016211781, + "ods_hash": "4339cef63e8877e507e3a7caa2d81463", + "dwd_hash": "6813ab54cfc2000a8e6ed5eca591a096" + }, + { + "member_card_id": 2919519875682053, + "ods_hash": "94a07b5b402dbe32a7c6a4beb5199a90", + "dwd_hash": "d6758dd91322bdd286037f85ba61ad61" + }, + { + "member_card_id": 2922551501882949, + "ods_hash": "dd082469db1e2e5f849dc4948ac9f6b3", + "dwd_hash": "8c188a31d76a686dec76ed68bd8b3916" + }, + { + "member_card_id": 2924186554041925, + "ods_hash": "8155303f91a9c5c6f88e50c4e3cc3848", + "dwd_hash": "727487784a5e5f19a5881f6032f2b4b4" + }, + { + "member_card_id": 2929237915010693, + "ods_hash": "ad1250205648854d9e478952aef9767a", + "dwd_hash": "9d90c4a852196da6c9448ef36761d49d" + }, + { + "member_card_id": 2929239052289797, + "ods_hash": "a8db59fa094c6fc51c37c1d1b218dd78", + "dwd_hash": "3d35a14429fd052738fe09af3a266e8d" + }, + { + "member_card_id": 2929239275980421, + "ods_hash": "6d30967821fdc18dbd1211ae0fb58816", + "dwd_hash": "4f8f87db60d98fad827633674b5c5343" + }, + { + "member_card_id": 2929254990054789, + "ods_hash": "31334a374b571b8683ff91e68abef016", + "dwd_hash": "d83be957e098a228be59432137330f78" + }, + { + "member_card_id": 2929255974028997, + "ods_hash": "d07d11162eba5ca468faa17d86de78f2", + "dwd_hash": "c5729a20b12388daed1bda05a54542d2" + }, + { + "member_card_id": 2933647802009541, + "ods_hash": "f4ca8a4af73f8d5c2266b1097805c128", + "dwd_hash": "a670cc8a442005026a2641af3809d352" + }, + { + "member_card_id": 2935271033390853, + "ods_hash": "4652c80ffc4c3975796219889e7d1161", + "dwd_hash": "ef200b08ec0df31021ff4801b4fb4bbb" + }, + { + "member_card_id": 2935271252707077, + "ods_hash": "5b254655d7dd4fb5e503c1f2a707f4d2", + "dwd_hash": "872ef459eca10507aa08469aace0d160" + }, + { + "member_card_id": 2936491814488453, + "ods_hash": "07d571f682e7c0b53b3e855154e862a4", + "dwd_hash": "f752775a45a2af5c647461ffcc35060c" + }, + { + "member_card_id": 2938228400277701, + "ods_hash": "35d24bb8a540ad7e753750fd55ba37e7", + "dwd_hash": "f4c58572b950cd2e16bc2b7f6ffecd58" + }, + { + "member_card_id": 2938229629700293, + "ods_hash": "2219ee13d7d8cb322097b48dc8af903e", + "dwd_hash": "87826a895180e3af5f49c554c6b807ae" + }, + { + "member_card_id": 2939339802626565, + "ods_hash": "f17d89ad33f04f3a1a0c790c40dbdb89", + "dwd_hash": "c9643925b00384806f53139321a174ac" + }, + { + "member_card_id": 2939340099193989, + "ods_hash": "ae5ab419342c1759f3ee164f7c99ef02", + "dwd_hash": "0337bb3e51f363ab5602e033c6b5c8ad" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "tenant_goods_id": 2906982633310085, + "ods_hash": "425bf96a2b4d4797f0751e712cb48304", + "dwd_hash": "083f84f2d028cccb9e3e4135f1e867c7" + }, + { + "tenant_goods_id": 2915207513196869, + "ods_hash": "497700730975e280e85e63811b75c774", + "dwd_hash": "f3a662d65b095901ffaf76864b382095" + }, + { + "tenant_goods_id": 2919621323754309, + "ods_hash": "f4248bdf2754227b77e657d300704192", + "dwd_hash": "ed0ba64e5d96cdd5b5252f24a4780fe7" + }, + { + "tenant_goods_id": 2920522145123141, + "ods_hash": "1173332f58bdd2102160f8bd0d8a6376", + "dwd_hash": "d7281161800917e06a09ed3f259c1fe9" + }, + { + "tenant_goods_id": 2940641058311237, + "ods_hash": "dd738933f19f3a95da79fc6d7b12ad66", + "dwd_hash": "dc898f579d9a8f923ddf821603e6d50a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 114826.12, + "diff": 1567.25 + } + ], + "mismatch": 2824, + "mismatch_samples": [ + { + "table_fee_log_id": 2901329636068741, + "ods_hash": "24653d9a5caed209228fb291d55f3ab7", + "dwd_hash": "bfc8a4e160f3a99b3fd97bb2d932bb38" + }, + { + "table_fee_log_id": 2901330304994501, + "ods_hash": "b64fc739c121a07e2366052bb00337e3", + "dwd_hash": "0b2b755d9866065e496d1be1ffc6b8ae" + }, + { + "table_fee_log_id": 2901333642955717, + "ods_hash": "9070add4b1698845e3112d8c27cc0f85", + "dwd_hash": "0bef163529fd7cf2b6d6770afec2b385" + }, + { + "table_fee_log_id": 2901341571255301, + "ods_hash": "5fda69a2cfa454c81c113768e7b89f9b", + "dwd_hash": "ad7cd6ed9ba4258165edd9077209d59f" + }, + { + "table_fee_log_id": 2901348568435909, + "ods_hash": "8eac5231d66df54ef252cbdc1c728e27", + "dwd_hash": "f9740389d7bb9e02da87be18fc0889cf" + }, + { + "table_fee_log_id": 2901348568452293, + "ods_hash": "6b141d148599bf3277302c18773e95c7", + "dwd_hash": "dde30b3ee6e83f6f9651fb83edf21a8b" + }, + { + "table_fee_log_id": 2901348568468677, + "ods_hash": "2a19370ff5a52400e26091fca63b9c2e", + "dwd_hash": "3a6240979eaff7844ad805d9ff5c6121" + }, + { + "table_fee_log_id": 2901349057154245, + "ods_hash": "2d506008683ae74f08caa87e363b4acc", + "dwd_hash": "6c2ddf5b76991a186473a6bc308e8bf0" + }, + { + "table_fee_log_id": 2901349057170629, + "ods_hash": "7a98356278e36e696b1c0e1af79a7605", + "dwd_hash": "594dfd25542b78db349d0b988cbb2538" + }, + { + "table_fee_log_id": 2901349432953797, + "ods_hash": "4cd032731db8aa0302eeae681350c86c", + "dwd_hash": "91721b5afa030e1b880e36d93a4cb11a" + }, + { + "table_fee_log_id": 2901349811358725, + "ods_hash": "b9c2bb84dec142bb3b532e5bd56f6c44", + "dwd_hash": "315ee6854a542ea614eac83702b36e32" + }, + { + "table_fee_log_id": 2901350930369925, + "ods_hash": "e8b9eca56934b02939f5d7f909b1ffde", + "dwd_hash": "9ae4a5384c6b1a8f067600f457bf71f5" + }, + { + "table_fee_log_id": 2901350930386309, + "ods_hash": "b0b496302ca39246bcab961646267773", + "dwd_hash": "d0803fe50ff42f50947c821342410c0b" + }, + { + "table_fee_log_id": 2901350930402693, + "ods_hash": "9720ec9add0576fc4f399a46e1b46953", + "dwd_hash": "2198f726a3907588edfcde0ebc06d78a" + }, + { + "table_fee_log_id": 2901351261457349, + "ods_hash": "b17c67bde4a692fb7fe85480aff6bfac", + "dwd_hash": "375c243d97f21d3145f046f729a1fcff" + }, + { + "table_fee_log_id": 2901351578340549, + "ods_hash": "193a3664869705b3fdac288288ff6f4b", + "dwd_hash": "29b58690cb938bb0aa88e4991a9f7a3c" + }, + { + "table_fee_log_id": 2901352975944645, + "ods_hash": "955440ddf4b50db850e751835b5b5ab7", + "dwd_hash": "c2e93e7a2c8d8bc68a93e450048823ae" + }, + { + "table_fee_log_id": 2901354532801477, + "ods_hash": "da284ef0baedecac8c14d232100856df", + "dwd_hash": "2943610a6cefa5719b73b388b898fc2b" + }, + { + "table_fee_log_id": 2901358843087813, + "ods_hash": "e3b1e224b3ee8663e4421d320c7c8cf1", + "dwd_hash": "d1dbf77fd5d2805572002030901dca92" + }, + { + "table_fee_log_id": 2901364622691269, + "ods_hash": "9c32d00f35ac1b7e53ec4559d752a162", + "dwd_hash": "3b49ed8fd230bf47e5d2f9fad64c4aa2" + }, + { + "table_fee_log_id": 2901367869672453, + "ods_hash": "90859b9f0e9f188516acd106f6921c52", + "dwd_hash": "6aa88c324aeed1b23abb64b61b258c42" + }, + { + "table_fee_log_id": 2901368987651077, + "ods_hash": "32ba5eef7d37e42f09b6e5e4cec83c94", + "dwd_hash": "8b585a446fb9b33b540babd17857d953" + }, + { + "table_fee_log_id": 2901376493538693, + "ods_hash": "d5b34dcff3764f494a6f46bafdcf9a3d", + "dwd_hash": "82ee1cd8d197105bac30f38142a211c0" + }, + { + "table_fee_log_id": 2901385079393477, + "ods_hash": "e34e452aca8a21b6d953a78d5a5855dc", + "dwd_hash": "1175fd5df885e76af7788e23f9e3c676" + }, + { + "table_fee_log_id": 2901395066031109, + "ods_hash": "63345efabefc312a6940a4227c024ed5", + "dwd_hash": "5ca588040fdd4e592885a48e811cd875" + }, + { + "table_fee_log_id": 2901423311916037, + "ods_hash": "bd92b9bb4814b2500d7ee4188fd19143", + "dwd_hash": "0b77023a4ba0419404e7aeab39087e75" + }, + { + "table_fee_log_id": 2901423311932421, + "ods_hash": "a0d33159b10f3c518bfc367d5284cb8c", + "dwd_hash": "90685a2d8f3cebbac7c50d7897898c28" + }, + { + "table_fee_log_id": 2901427659050373, + "ods_hash": "1a93d4e3fcfbcd00bf10f3058c7d78b5", + "dwd_hash": "306676ae22c903f3932c8b80742890bf" + }, + { + "table_fee_log_id": 2901440631753669, + "ods_hash": "25c74521f521b129453db50693c5f170", + "dwd_hash": "14bdad86164784f24bcc38f1c3a08204" + }, + { + "table_fee_log_id": 2901471274601413, + "ods_hash": "25d04d40028ba3efa56f9cb932c04c44", + "dwd_hash": "be512b42b83b14ec4aebce2576ad8046" + }, + { + "table_fee_log_id": 2901509433068933, + "ods_hash": "06e05e3c24472a9485e3a8b5d7e30b91", + "dwd_hash": "a151c0a37229fff5977b88c2809e67c1" + }, + { + "table_fee_log_id": 2901592644783301, + "ods_hash": "82bdf8a23ebf31a5d45347d8f5f8d9b5", + "dwd_hash": "bf02a70c0a9462ab7e0a6fb717724cfe" + }, + { + "table_fee_log_id": 2901680241315013, + "ods_hash": "144bd1311f2aeb1cb62ad6086f153964", + "dwd_hash": "a44e956e23eb9df0ec8357acaafe39bb" + }, + { + "table_fee_log_id": 2902138924682437, + "ods_hash": "d8ab5e0de98e96025bf2a51fa1ad2a35", + "dwd_hash": "31d381bc27a4fd67c8ac493751ea4cb0" + }, + { + "table_fee_log_id": 2902155496803269, + "ods_hash": "1e2321f1770daeaad0afec4b8d5fa931", + "dwd_hash": "7e65dac1837057e82b304f7da9b2c3d9" + }, + { + "table_fee_log_id": 2902214881807301, + "ods_hash": "34884300c2ba8867c8603ad672f481c0", + "dwd_hash": "68499db227795a3f754afbab010b1ffa" + }, + { + "table_fee_log_id": 2902215452560773, + "ods_hash": "3ecc8c623b01142f6d9e7655b20a6848", + "dwd_hash": "bbf8fb01c128f7a8d3ead9bfeb55495f" + }, + { + "table_fee_log_id": 2902216724007877, + "ods_hash": "87abb58b2ed2ea9b65fcf000a4fdd19b", + "dwd_hash": "84845ce035bd7d82b0b2b29288ad77e4" + }, + { + "table_fee_log_id": 2902251205512133, + "ods_hash": "4591ad3fee547044c1c869a406f08bae", + "dwd_hash": "21458d5ea08fdf9694e860976c2a5561" + }, + { + "table_fee_log_id": 2902263457451205, + "ods_hash": "e72df00b9c3eb677cc7bb08da005c892", + "dwd_hash": "00a21de9e2ee3f0d852132d32a744ff2" + }, + { + "table_fee_log_id": 2902274872757637, + "ods_hash": "35cdc77c33de9fb1c5ec8705b38f09dc", + "dwd_hash": "9a238200896fdb47af3d2b90316aa8c2" + }, + { + "table_fee_log_id": 2902278578670533, + "ods_hash": "4f6edfbf9bd7343dca8fb85879feb2b1", + "dwd_hash": "161d2df7cfde980291688f49afe82c29" + }, + { + "table_fee_log_id": 2902280718110085, + "ods_hash": "cdb7f61a22bb0069c766354ef2f0702a", + "dwd_hash": "7fce706b8dfb08d51ae27b02433acfd3" + }, + { + "table_fee_log_id": 2902280786873285, + "ods_hash": "e0f44f6adea8bb2714b940d8734d52a9", + "dwd_hash": "8a3ab8302736c4844b26674c8931508e" + }, + { + "table_fee_log_id": 2902280856702149, + "ods_hash": "77266121377a7b29d4618fa18669e3cb", + "dwd_hash": "76adcbd2c38feb5bf83f940d8bfeca07" + }, + { + "table_fee_log_id": 2902285699665285, + "ods_hash": "15bd1281c3c3adcd928936cf2ea42565", + "dwd_hash": "1ac0875f3585df6f4b7bd94272b5e80f" + }, + { + "table_fee_log_id": 2902298297027525, + "ods_hash": "f1a6a35c8164b15a98386cb1371155e9", + "dwd_hash": "3e8d0a214d54f1d2f0278f85d11a1e55" + }, + { + "table_fee_log_id": 2902301531655365, + "ods_hash": "a39d36a189c2c38a8ea1d7c35e9bb01b", + "dwd_hash": "05c9cd25ee53796e8aa6ee21991932c3" + }, + { + "table_fee_log_id": 2902306129120645, + "ods_hash": "0ad2977ab2c771b70c8de4fcbf09dbaa", + "dwd_hash": "c07e6202c5f1532b0a73368cd26df7b6" + }, + { + "table_fee_log_id": 2902315882384581, + "ods_hash": "5dfcefe1cf5d4d4aa6484d8f7d761a63", + "dwd_hash": "afd24877b5bbeb93595250244a8c875f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ], + "mismatch": 3475, + "mismatch_samples": [ + { + "store_goods_sale_id": 2901329637117317, + "ods_hash": "dadcc183f14e4a03587b8758d8c4f81d", + "dwd_hash": "3a9d42510b39273d867b3391028c3a17" + }, + { + "store_goods_sale_id": 2901329637133701, + "ods_hash": "fc349beb21008caf7766d582b675e9e1", + "dwd_hash": "442d28a2a1c405dcee913a87fb889090" + }, + { + "store_goods_sale_id": 2901329637133702, + "ods_hash": "d168b3d4a618363fc249a0d0f9990086", + "dwd_hash": "becaa131e4f72e374f815d7cb5c33d81" + }, + { + "store_goods_sale_id": 2901330305371333, + "ods_hash": "dd935e5cb8bb22fcd64ef5cca63ccdc7", + "dwd_hash": "14f0ecace53138c84dc89fbad6051fc4" + }, + { + "store_goods_sale_id": 2901330305371334, + "ods_hash": "b6379cbe5723d9fb805813ab7225412f", + "dwd_hash": "b46efb4aadd2f9c30d1b9163e98bab91" + }, + { + "store_goods_sale_id": 2901330305387717, + "ods_hash": "3a22df1d804db1ca134513fe57b9b1de", + "dwd_hash": "cd8475589625c24f44a7549d5d2a3a00" + }, + { + "store_goods_sale_id": 2901330305387718, + "ods_hash": "b723eac7dbffbdfbdc00c7de15e2efe9", + "dwd_hash": "bceb0d825ba0289203f3b919f22ef93b" + }, + { + "store_goods_sale_id": 2901333643365317, + "ods_hash": "18bc0e22defdc64ab530c4b1cdf76f7c", + "dwd_hash": "ea14526a25169c7de90776b26aa5fca3" + }, + { + "store_goods_sale_id": 2901341571730437, + "ods_hash": "ccc9104cc24782430e80f093dd3bc2d4", + "dwd_hash": "44ea8e12fc819c7cdeabcc9a94baaf78" + }, + { + "store_goods_sale_id": 2901350931484037, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931500421, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931500422, + "ods_hash": "97201488b5b027c0e7475ff043afd827", + "dwd_hash": "12499fb2b6e2c9fb1b8d91da33e59433" + }, + { + "store_goods_sale_id": 2901350931516805, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931533189, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931533190, + "ods_hash": "672f772a342293773bd2b351b9acf10a", + "dwd_hash": "dbfcbb2e8bdec6e189e1f75bacfbf824" + }, + { + "store_goods_sale_id": 2901350931549573, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931549574, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931565957, + "ods_hash": "0025646e169f5c52e2506d651e0fc8b0", + "dwd_hash": "0cd60c93f6843f7fc46253b2875a7c3d" + }, + { + "store_goods_sale_id": 2901350931565958, + "ods_hash": "87f88ddedea664407e764c8b42b6a9be", + "dwd_hash": "6305a14cf5f888276e4bcb357b53d75a" + }, + { + "store_goods_sale_id": 2901350931582341, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931582342, + "ods_hash": "2020a69877d6ec6ecb25261fa4ecab35", + "dwd_hash": "76de1d889ea882aebcaef69e480a86d7" + }, + { + "store_goods_sale_id": 2901350931598725, + "ods_hash": "098656a191a408d2b740389b2cc3fcb0", + "dwd_hash": "5125023943b8f688ca9480019f70516c" + }, + { + "store_goods_sale_id": 2901350931598726, + "ods_hash": "d8146cb5ac5b41626c7e89b11054dded", + "dwd_hash": "610363f67218029dfc7d16616d839f21" + }, + { + "store_goods_sale_id": 2901350931615109, + "ods_hash": "5549dfb968b584f93c2aff42961d502c", + "dwd_hash": "5f70975058d4ece661e7a6f26c3a5b90" + }, + { + "store_goods_sale_id": 2901350931631493, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931631494, + "ods_hash": "8c8c7ed76e68f2469e581e322f2ae3a8", + "dwd_hash": "bb10f3ec3e8b9eb126e406af17cb0bc5" + }, + { + "store_goods_sale_id": 2901350931647877, + "ods_hash": "45a8868360fbc41e191f0204073cb85c", + "dwd_hash": "3d35b0667de97acadc37285c6c64c636" + }, + { + "store_goods_sale_id": 2901350931647878, + "ods_hash": "fdfe9966e645a9364b69f6a5f32abc6e", + "dwd_hash": "cb4dd417ee11f04a04c24c92fc86f118" + }, + { + "store_goods_sale_id": 2901350931664261, + "ods_hash": "c4a4d26f46af2c68878d559e4f865115", + "dwd_hash": "5de51c5ffe91a233fe03c7cd56ada049" + }, + { + "store_goods_sale_id": 2901350931664262, + "ods_hash": "fc7e626e8787f1f2bbb7936cf96af6e7", + "dwd_hash": "4fcf2ef4f5744ccebf17958a1aae0dde" + }, + { + "store_goods_sale_id": 2901350931680645, + "ods_hash": "2c3a8ef739419f3cd4722e6b679299b5", + "dwd_hash": "900a846ecef7744a0b75d8e0cc74e901" + }, + { + "store_goods_sale_id": 2901350931680646, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931697029, + "ods_hash": "52b262a5a00ae302b48c61474590a765", + "dwd_hash": "95100136165402ea419d3228d50e4dcd" + }, + { + "store_goods_sale_id": 2901350931697030, + "ods_hash": "a101679723f28ee11f9ce75008cd6cd5", + "dwd_hash": "5de8752efb0234052684abf3a5078943" + }, + { + "store_goods_sale_id": 2901350931713413, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931713414, + "ods_hash": "5a49b3441aa9bd71333c2f4531afcd59", + "dwd_hash": "48826061dda031f40ba131e18ec8ffc8" + }, + { + "store_goods_sale_id": 2901350931729797, + "ods_hash": "875e3f8537a47009b2673da40fac8600", + "dwd_hash": "693f8289d9affb7fcf910bd58ef1ce3f" + }, + { + "store_goods_sale_id": 2901350931729798, + "ods_hash": "c95e59bdf4cf690b27cf5e2ad1a5eac5", + "dwd_hash": "817fdcec3fd572602e820223b931b905" + }, + { + "store_goods_sale_id": 2901350931746181, + "ods_hash": "bd9b100ab620aafdd0c64026b76e6e6c", + "dwd_hash": "dec28b24b539191e9e578df8318d536f" + }, + { + "store_goods_sale_id": 2901351579569349, + "ods_hash": "2a8fb9ac54be4f3413f54e2277fe534f", + "dwd_hash": "c6fe620589469cfdae2f35e3f7a5788c" + }, + { + "store_goods_sale_id": 2901351579569350, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579585733, + "ods_hash": "8c9d17115d4a690f86adcd0db77823f3", + "dwd_hash": "bb18d302fc730b97a2976299a09bd1f3" + }, + { + "store_goods_sale_id": 2901351579585734, + "ods_hash": "a0a093fe0a8d7dd79985eb0b737adcca", + "dwd_hash": "78b051e428a6ac90d188d8e605b738ea" + }, + { + "store_goods_sale_id": 2901351579602117, + "ods_hash": "2fb85fde9f7fb8ea939aedfafab9ddb5", + "dwd_hash": "12c1dd0e1abee301aece3ff2d72f29e3" + }, + { + "store_goods_sale_id": 2901351579602118, + "ods_hash": "605d2b229cbf06dc7b8d480509061046", + "dwd_hash": "98553b9751de5ffbafac780d9e7ba796" + }, + { + "store_goods_sale_id": 2901351579618501, + "ods_hash": "13266c269eec2c3cb1810318ee35812d", + "dwd_hash": "a4745ab4b55e1b672adccd885fda9bb1" + }, + { + "store_goods_sale_id": 2901351579634885, + "ods_hash": "ef905b0a5036c5160c2ab510fcfa0479", + "dwd_hash": "2c67edbf77a26698f2d7c3933b69d003" + }, + { + "store_goods_sale_id": 2901351579634886, + "ods_hash": "e8011443016fdf8a52b448b4ce978772", + "dwd_hash": "c779e0d6ed7dce9301d68160af2ade5c" + }, + { + "store_goods_sale_id": 2901351579634887, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579651269, + "ods_hash": "0ecf3c79f92c976d769725ad0814e08e", + "dwd_hash": "d085acb3f3e648006bc6a3d6d7251b18" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ], + "mismatch": 573, + "mismatch_samples": [ + { + "assistant_service_id": 2901329636363653, + "ods_hash": "3a76612f38d720adfc067fdeacb20747", + "dwd_hash": "1ea4886f32d53860a0aa029f53498e2f" + }, + { + "assistant_service_id": 2901329636674949, + "ods_hash": "52ae46cd58b8f74300451900f9ad7a43", + "dwd_hash": "7fdd43db264ad50edeab4a86766e87c4" + }, + { + "assistant_service_id": 2901348568796357, + "ods_hash": "ce745258d3cd14b5336c384298677441", + "dwd_hash": "23fe621a5c688482c5efca3dbc941697" + }, + { + "assistant_service_id": 2901348569091269, + "ods_hash": "93e1e729b788dfe20f173071726fa5eb", + "dwd_hash": "f9df81e6c194aef8c8a5096e33d83ae7" + }, + { + "assistant_service_id": 2901349057465541, + "ods_hash": "30ed3bb8e0de8a6e78400f204ba86988", + "dwd_hash": "c6ecf62d9e3af988da167c2548d22ce0" + }, + { + "assistant_service_id": 2901349433248709, + "ods_hash": "494d34d64e12bbfe2295273fdec15884", + "dwd_hash": "69f68f5225b9c46b1ac8c7fe0bce9d66" + }, + { + "assistant_service_id": 2901349811719173, + "ods_hash": "f8e6c43d56cabf6cc03e7dd82d17debe", + "dwd_hash": "b1389441c3539be7ce7fa4a2ad2d1bec" + }, + { + "assistant_service_id": 2901350930713989, + "ods_hash": "8f0beaf77b30ba65586a5c4a89e999d5", + "dwd_hash": "ce82753e60462549c85f9926d439b9d6" + }, + { + "assistant_service_id": 2901350931008901, + "ods_hash": "d086eede481a39042408b8ec7edfd00e", + "dwd_hash": "3c3e2f824d9c7d3d24426fc12cd3fc6c" + }, + { + "assistant_service_id": 2901351261768645, + "ods_hash": "16624f768093c4d90150ef0b062efb65", + "dwd_hash": "22ab2043624f9c53850bcd89a29d7faa" + }, + { + "assistant_service_id": 2901352976272325, + "ods_hash": "e20a902adb8d293129969a1c0947e91a", + "dwd_hash": "c4205f5da84adabaab307c4d9d4a2018" + }, + { + "assistant_service_id": 2901423312276485, + "ods_hash": "676da8a281b14c4ef4a5bfae475505bd", + "dwd_hash": "2f16d891e4bb6a771379a51c11e9375f" + }, + { + "assistant_service_id": 2901423312587781, + "ods_hash": "37fefaca070537ff6b72405c2f058db8", + "dwd_hash": "29d1dc8130bdf657bc873114c18f66c1" + }, + { + "assistant_service_id": 2901471275027397, + "ods_hash": "27f28c0334a115ea4f226e2331f3c366", + "dwd_hash": "35f63ed5d99292f290e11c010312ceb1" + }, + { + "assistant_service_id": 2902624284445893, + "ods_hash": "8e7c047fa05f13298f8bfccd7e304265", + "dwd_hash": "4552fe793bcf81b441527d55466e9435" + }, + { + "assistant_service_id": 2902713764203909, + "ods_hash": "8f54b5b50c2c3b0423971e335635bd85", + "dwd_hash": "0b5c76fa12008d23711e858f8f84b6e4" + }, + { + "assistant_service_id": 2902715522616517, + "ods_hash": "215ee92ee24c8d054a68dbbba11a56e3", + "dwd_hash": "691140add0767cb751d3a14eaa0c7110" + }, + { + "assistant_service_id": 2902715522927813, + "ods_hash": "e2bf687f2a59836c3a0362a2d4c1b9b9", + "dwd_hash": "a4f2ab18c89439e61bcdec616678094a" + }, + { + "assistant_service_id": 2902744042458053, + "ods_hash": "97501baed1ed0f78e2d83c1f073e8975", + "dwd_hash": "4399ea42e4bccf3e1827a6b3271d780d" + }, + { + "assistant_service_id": 2902750865149125, + "ods_hash": "c4cb6cbf2a47a119dd02d294c9ebd32f", + "dwd_hash": "3eff3059157c6fdb5dd6b68144506ca9" + }, + { + "assistant_service_id": 2902782670130373, + "ods_hash": "005be52c7b2f1e8283b29d4dfe4b35c7", + "dwd_hash": "998b0af30e22994b4b8d40af7f091718" + }, + { + "assistant_service_id": 2902804684213189, + "ods_hash": "5abfebdac734b1c04c12c78b911b2054", + "dwd_hash": "0c7ead1f5c017e2c7ab4e6b7879f3dd4" + }, + { + "assistant_service_id": 2902804684508101, + "ods_hash": "9950e52ed6e706ecc8b5d4b20bbeb02b", + "dwd_hash": "bbe56bba5815c2f854d7b135d47d8eaa" + }, + { + "assistant_service_id": 2902848282840453, + "ods_hash": "f3e2be4c212ebb0cb0dd2aa4ed5f29fd", + "dwd_hash": "cb1bdc199c7df31eddb0a47196a32f64" + }, + { + "assistant_service_id": 2902848283102597, + "ods_hash": "31c541a256e2c9fb00c39f78ae1dbdab", + "dwd_hash": "5da716d6318949b6a502c40be4f84202" + }, + { + "assistant_service_id": 2902848283381125, + "ods_hash": "b96278026e99745f5acc8dd5580676d6", + "dwd_hash": "0e0d2c372805c5ca8eea9577357a81ef" + }, + { + "assistant_service_id": 2902848283643269, + "ods_hash": "761e97fd555ea400fff71a922cea988e", + "dwd_hash": "72ae117a806323dbe82fcc583c60053f" + }, + { + "assistant_service_id": 2902886167645381, + "ods_hash": "69863e01e5d1bb81249205a4649bfe93", + "dwd_hash": "c7bb76765ec12bd5c46d97e1bd334e0f" + }, + { + "assistant_service_id": 2902956589452229, + "ods_hash": "7549c50e510290bde013baf843c820f8", + "dwd_hash": "eeb6500c533f9c7c8de996dfa1eca1dc" + }, + { + "assistant_service_id": 2903002831424709, + "ods_hash": "accf5f05a9530aff574a361bb70390d5", + "dwd_hash": "5e3f894660ffc9029df7b2a7901a49ba" + }, + { + "assistant_service_id": 2903002831703237, + "ods_hash": "a62cf201d8f5b37206442c4c5a5e4e0a", + "dwd_hash": "dee24c4f51927ce59ff9e84a931737dd" + }, + { + "assistant_service_id": 2903002831981765, + "ods_hash": "ce7cced27db0cc6fc79ae9d14c016371", + "dwd_hash": "60b79bad7de23dacd7bfd1dcd3cb0b49" + }, + { + "assistant_service_id": 2903002832260293, + "ods_hash": "b3a47665e11ce32ba9819615f6eb756f", + "dwd_hash": "ade2812624bc13875b0be975dd9ae163" + }, + { + "assistant_service_id": 2903677044182213, + "ods_hash": "c831622d03073af5be50186dcb8ee13e", + "dwd_hash": "0496967269c13a827ab11a0477811fe2" + }, + { + "assistant_service_id": 2903677044509893, + "ods_hash": "da804dd35252b540a8e20b01c17c4997", + "dwd_hash": "8231f616abbafca65897c2a7deeec8db" + }, + { + "assistant_service_id": 2903677044870341, + "ods_hash": "62e4af4bb0ecb8717a445e94d1139991", + "dwd_hash": "873ded60fb93fefaa5011117caa5a9bf" + }, + { + "assistant_service_id": 2903740383038469, + "ods_hash": "8588373539537ccf49691b50b19cbebd", + "dwd_hash": "e933e99e70591a1ad96e81f2906af207" + }, + { + "assistant_service_id": 2903740478279045, + "ods_hash": "ee81f00364ef9fe0a51ba3a431872451", + "dwd_hash": "24d6ba5863118498095a803f200d6f6e" + }, + { + "assistant_service_id": 2904045994593669, + "ods_hash": "ec8fe156a31af519ba1d6bf504ab6a2c", + "dwd_hash": "1d20fa499384935b9d7cb0393622237e" + }, + { + "assistant_service_id": 2904045994970501, + "ods_hash": "649956f53fca878e0717ea1ac4569b3e", + "dwd_hash": "65898b221b5a637c8086b1e6881f4ad7" + }, + { + "assistant_service_id": 2904049053339013, + "ods_hash": "de286f19e8eaeafcc54e79f6c5faad72", + "dwd_hash": "e455e81199f93ab776e1eb8ef95ea324" + }, + { + "assistant_service_id": 2904116728990917, + "ods_hash": "b393a76882e6c4c743f0c3838fb9782c", + "dwd_hash": "72de3caab1326d0b8d45a3cdb8ed90bb" + }, + { + "assistant_service_id": 2904205160041413, + "ods_hash": "3a0e8b776516a0166b6c6546a23c734f", + "dwd_hash": "f9ce1064376a5b0fac474012501a01df" + }, + { + "assistant_service_id": 2904236312677317, + "ods_hash": "c7fa2195f039c9eb11d21173049c1b11", + "dwd_hash": "9c42971a40bcc246897218fd32d29191" + }, + { + "assistant_service_id": 2904236312955845, + "ods_hash": "839949eb16b850848398d33c8383037f", + "dwd_hash": "5501f72d4c34a3e6102200fd29fc7e73" + }, + { + "assistant_service_id": 2904236313512901, + "ods_hash": "dcd61dcf9f0f6e1bec348fbcf4b74c99", + "dwd_hash": "8fa85210481b965aeb4df4537f072ff7" + }, + { + "assistant_service_id": 2904285454240773, + "ods_hash": "224bb6808f320bb715e5c692560e3b92", + "dwd_hash": "eff5c0b818c805b7b2e2877da5b4c102" + }, + { + "assistant_service_id": 2904285454519301, + "ods_hash": "85a29574ca4bfe44537488f1e6ce244f", + "dwd_hash": "3160deabcbcc8a3a65c9d074f752cb45" + }, + { + "assistant_service_id": 2905207501260421, + "ods_hash": "4adcc4d1baa25b4ba9ecb687c3dc8109", + "dwd_hash": "dcf09bda755f9ae897cf19f76bf97525" + }, + { + "assistant_service_id": 2905216769426821, + "ods_hash": "ebce395e2cf5567b306e759f6e0578dd", + "dwd_hash": "6af1c3e7062708f2a07557b374aa3b1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ], + "mismatch": 2490, + "mismatch_samples": [ + { + "redemption_id": 2901341571795973, + "ods_hash": "2e5107d3fc4c3ccb9a1511f9204c30fd", + "dwd_hash": "ee862366fbdd40a96aa8b91896243aed" + }, + { + "redemption_id": 2901352976747461, + "ods_hash": "b42bb657275b1102da91b879d5493f7b", + "dwd_hash": "2fdb2ae2b6f0ef472b1d61246eb15fc5" + }, + { + "redemption_id": 2901354533161925, + "ods_hash": "82f9d4e19161955bb49ae093f45a6269", + "dwd_hash": "0e30da4f668dba55dd8bb7178733fca9" + }, + { + "redemption_id": 2901358843481029, + "ods_hash": "e270ca28a74f01747b95c51fdfed6da9", + "dwd_hash": "a4e50aba086374c884b0027bacbb81e2" + }, + { + "redemption_id": 2901358843481030, + "ods_hash": "ddb72fb5f3ae80c94e5fd8e542ac4f00", + "dwd_hash": "858f9b63478fef25fde7c13d761ecd6a" + }, + { + "redemption_id": 2901364625198021, + "ods_hash": "59c4ba11565a4ead6a98d61d450c8711", + "dwd_hash": "1c24ec75ad5fa74f68ba084c1bf20696" + }, + { + "redemption_id": 2901367870131205, + "ods_hash": "18874d164ed1aeb39b8dfb7b59045114", + "dwd_hash": "b638b62b19633385aad2971de0f3f3e9" + }, + { + "redemption_id": 2901368988306437, + "ods_hash": "c0a77579b58454beb8da3b8e0a93157b", + "dwd_hash": "9564fd9f187bffe545c7c131b54f18c7" + }, + { + "redemption_id": 2901376493931909, + "ods_hash": "6ccffc5a155749e90f33c7a49082d02f", + "dwd_hash": "d712c20b807101fd5e12a7ca5238bd1d" + }, + { + "redemption_id": 2901376493931910, + "ods_hash": "45499809c4f9e387c1776222ff0c70b8", + "dwd_hash": "38dba49b701373f23c0bc950dca7e96f" + }, + { + "redemption_id": 2901385079753925, + "ods_hash": "8eec1431fd17d4760251d4c347a7ee3c", + "dwd_hash": "ea66fffbe42c7d53f69f864fc32a53ff" + }, + { + "redemption_id": 2901385079753926, + "ods_hash": "d1a845ebf5afb63edecdc6aedaa27ebd", + "dwd_hash": "f64f8e3a54f14b16e308004c83f9ee5d" + }, + { + "redemption_id": 2901395066424325, + "ods_hash": "6c230d7e6d1883aa305ee79f870535d4", + "dwd_hash": "cabc6c7a6a92cde6d508fd259760484a" + }, + { + "redemption_id": 2901423313177605, + "ods_hash": "6a9ffdd83df41a470d6b2fa494f48c85", + "dwd_hash": "8e531f44d49e5c42d0cc8fd4c012fc31" + }, + { + "redemption_id": 2901423313177606, + "ods_hash": "c4b82f5dd3ebf365ead94a7fc05e5617", + "dwd_hash": "e89d3a253b97399cb94a26459658762d" + }, + { + "redemption_id": 2901427659410821, + "ods_hash": "5810f71243bd1493ab2a156f6f21f2c0", + "dwd_hash": "b2653899425437457af2a0c144968457" + }, + { + "redemption_id": 2901427659410822, + "ods_hash": "6cb8bd61cf5f40af84d9d77f97752999", + "dwd_hash": "cc1e4e6842a0acdf7c5da2334d99d67f" + }, + { + "redemption_id": 2901440632982469, + "ods_hash": "0677a628a1d3008b426c7861411c4d70", + "dwd_hash": "239e25b298031f162bce2d66cfd28994" + }, + { + "redemption_id": 2902138925026501, + "ods_hash": "aab96b14e3464121b551457b3f3ef2a1", + "dwd_hash": "203a8ef757a52d5c4e6763b524d4d8d9" + }, + { + "redemption_id": 2902155497130949, + "ods_hash": "151eee6d22747cba6b63f1ce610dd503", + "dwd_hash": "698433cba33ad1d3e16977b0ba979f8d" + }, + { + "redemption_id": 2902214882200517, + "ods_hash": "17b867727cbf93d555ecc54b4970e8b2", + "dwd_hash": "68cb8b0e868f01e5f9b994344cf5268b" + }, + { + "redemption_id": 2902215452953989, + "ods_hash": "ad5ed4cf9725b2b97f4c8d68784989a5", + "dwd_hash": "5ad9317677a9c29d37739e74f82017f3" + }, + { + "redemption_id": 2902216724401093, + "ods_hash": "6f8e509f765cf770ec434e45f27aaf39", + "dwd_hash": "68058edee86f3f192e7702e119761701" + }, + { + "redemption_id": 2902263457828037, + "ods_hash": "385b98bb095a994afbac0566b979c984", + "dwd_hash": "06d1237b213abe04dacdebf6dae1b6c2" + }, + { + "redemption_id": 2902274873134469, + "ods_hash": "7205c58c052ce921b3da6f98e866d260", + "dwd_hash": "09c0644689dc4051eca79b8c6ba7a8c7" + }, + { + "redemption_id": 2902278579129285, + "ods_hash": "5a79771693eeb652b55a24d6f65a61c2", + "dwd_hash": "6b0d8b11b4f9b550036dc4ff5a671e94" + }, + { + "redemption_id": 2902280718503301, + "ods_hash": "e145b3e47f14ddacb0785653cbde0b55", + "dwd_hash": "dc93733863884ee79452d8eb66d5e837" + }, + { + "redemption_id": 2902280718503302, + "ods_hash": "ffee25f6bbb8807002e519b8644e866b", + "dwd_hash": "fe59b86ca8e8ec54cd520ada4779b60e" + }, + { + "redemption_id": 2902280787282886, + "ods_hash": "9e5d8730f883cdb41070867ab30e924e", + "dwd_hash": "8401f4919e4317f6e7a87693649aca1b" + }, + { + "redemption_id": 2902280857046213, + "ods_hash": "fe4c7a8bef643234018007815bb5db0f", + "dwd_hash": "e5495b3859c74f55d109cb6fbb8a36b5" + }, + { + "redemption_id": 2902298297404357, + "ods_hash": "694f771ad6977bea59368c0c917b7170", + "dwd_hash": "4a20a286e6e0cb89f9f5a3258c1c1fc9" + }, + { + "redemption_id": 2902301532048581, + "ods_hash": "a6948697a6e068f09920cc199f792070", + "dwd_hash": "cbd919ee0bf81cf3566b4811ca5f6dca" + }, + { + "redemption_id": 2902301532048582, + "ods_hash": "3866fc81f0c91e7595b1f42025b9715c", + "dwd_hash": "a904ca34c89147587365f0aa4fa44e79" + }, + { + "redemption_id": 2902306129563013, + "ods_hash": "02d79bdaec015ea1e21f95142f2a8e58", + "dwd_hash": "fb1b31011f2d8d4618d37b83705a9051" + }, + { + "redemption_id": 2902306129563014, + "ods_hash": "9ebe1441b947b97aa00ec0fac9b4c148", + "dwd_hash": "e0d0aba2f7a79e2ab98c80029a5425ae" + }, + { + "redemption_id": 2902315882761413, + "ods_hash": "c683a80896a146330eed78bbcb995899", + "dwd_hash": "d4303e9f56585da8878bb510e88a8717" + }, + { + "redemption_id": 2902323382045701, + "ods_hash": "7372871447fe93ea0ed12cedd53d28c7", + "dwd_hash": "0d2d6642f3eb809fbd4a51990ac19590" + }, + { + "redemption_id": 2902325857521029, + "ods_hash": "d1015265bd002a646670d65805f48ec2", + "dwd_hash": "8c891e8fd1f9acee0b271bb029b1cfb1" + }, + { + "redemption_id": 2902332836547525, + "ods_hash": "1fb0fc094d97f7cdce70ebed15e49d94", + "dwd_hash": "b507fce8dce9c33e139239c9db207d96" + }, + { + "redemption_id": 2902343277972869, + "ods_hash": "3cd9dc7d5940967d64f187929ee97fec", + "dwd_hash": "fbea010ce9db7d839475405cfe036975" + }, + { + "redemption_id": 2902343330778117, + "ods_hash": "d627feaf2238b8f7ef540b8e6f25163b", + "dwd_hash": "7d32b123577dfd4e1e13ca0619754400" + }, + { + "redemption_id": 2902356349554053, + "ods_hash": "64d0bf47ad98cf4393f744a432493cbd", + "dwd_hash": "ec1a0c469e2f0d42c0339255108d6075" + }, + { + "redemption_id": 2902356349554054, + "ods_hash": "3f574bbef83f8365e9e3806f5b525837", + "dwd_hash": "6b2c0ffb5d7c673ffe96e9dd96cc496c" + }, + { + "redemption_id": 2902357537459397, + "ods_hash": "23694cd7a92cbaa7b66f5187bd983667", + "dwd_hash": "829f62f9542ca6b3494222d24506c35b" + }, + { + "redemption_id": 2902357537459398, + "ods_hash": "20d08bde0822e4c1646fc574525a2b94", + "dwd_hash": "9f9f4d2c7ba895942cedc4328ae48047" + }, + { + "redemption_id": 2902358470282245, + "ods_hash": "6cf336e0436b2374cb856378dd2a4d4a", + "dwd_hash": "870137571cfd70fbccb8d5d086f16cd4" + }, + { + "redemption_id": 2902358470282246, + "ods_hash": "6833147ce540e590c3d47321b64c5f45", + "dwd_hash": "38e276dd4932aea99103d8eb99008f24" + }, + { + "redemption_id": 2902375367904261, + "ods_hash": "264bb4479593cc754416180e1ab35d59", + "dwd_hash": "990dd0af32329ccfb469aad8dc95360b" + }, + { + "redemption_id": 2902384447540165, + "ods_hash": "fa23525c975350c368f35774ebd48704", + "dwd_hash": "020d030eb2bd68cea8c0fd0f0f74b105" + }, + { + "redemption_id": 2902384447540166, + "ods_hash": "d7519ef77ad0f288eb300e53d3508903", + "dwd_hash": "f86e440be45bc6d4cd824032097f6c5e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ], + "mismatch": 2489, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2901367628860805, + "ods_hash": "f1c06655146f3b02219166be9be1ebd1", + "dwd_hash": "81bbb2be6f62c18f407fd545732fa152" + }, + { + "platform_coupon_redemption_id": 2902088137772037, + "ods_hash": "af0eda0aa077e1a419b065c8f1419185", + "dwd_hash": "c2012ccd9a7f49bf5e75623d87fcac58" + }, + { + "platform_coupon_redemption_id": 2902113205193733, + "ods_hash": "1b8c33998cd2d28dc5fecf954514a89c", + "dwd_hash": "3c79f32bc7cdbff65d94137b8d2f3716" + }, + { + "platform_coupon_redemption_id": 2902128667512197, + "ods_hash": "2359d424f227bfa93912a38c74c1bc96", + "dwd_hash": "996b182390c3c30edcae886654d3fece" + }, + { + "platform_coupon_redemption_id": 2902148701817797, + "ods_hash": "26c2f157681b6cd6403fa3e3ed4697da", + "dwd_hash": "51b8ba13a8f4cd6dfb76de469074827b" + }, + { + "platform_coupon_redemption_id": 2902155668999109, + "ods_hash": "2c1d8984fd23e98ea9e45323b5e75d60", + "dwd_hash": "4d9a9cb2a2561342b4dd7f2ee449d2e9" + }, + { + "platform_coupon_redemption_id": 2902156307909573, + "ods_hash": "6731d318c0dc6b7ea354e413d4fd3d78", + "dwd_hash": "02529e59c46da1be8f878237736f25e9" + }, + { + "platform_coupon_redemption_id": 2902157707152581, + "ods_hash": "c390db75714143e8faf4599cf2cde122", + "dwd_hash": "09f7a6305d7bfa5e4be423b772822e5f" + }, + { + "platform_coupon_redemption_id": 2902161494904005, + "ods_hash": "2920322e66dd181a2ca6a3f424254b9a", + "dwd_hash": "082be41dd3467b5f6d309d2e7de2f04a" + }, + { + "platform_coupon_redemption_id": 2902176789580997, + "ods_hash": "145dac0022c3f2eba6dd20271ad018ce", + "dwd_hash": "2520e0e59acd8efc8d5b3295bf148d25" + }, + { + "platform_coupon_redemption_id": 2902189166562501, + "ods_hash": "7fa855b9114e267f68533c39114d9d22", + "dwd_hash": "255d5c8f71476402804902d2604fbafa" + }, + { + "platform_coupon_redemption_id": 2902196975553733, + "ods_hash": "a6b45772ac37c4d7697f0f8b92ff74cb", + "dwd_hash": "a04c72d920531af347e4813ec630f125" + }, + { + "platform_coupon_redemption_id": 2902204132920517, + "ods_hash": "41871dd9b8fd3b6312f1e567d5b41e6c", + "dwd_hash": "822abdc97ce77265b4413d502a9a3440" + }, + { + "platform_coupon_redemption_id": 2902214514183557, + "ods_hash": "fd9b827ce83f719f2a599d1072985e4e", + "dwd_hash": "13199b8504854dbdd1f59dcf969675fc" + }, + { + "platform_coupon_redemption_id": 2902215716867269, + "ods_hash": "7055622bb91fc75aa86840ffac713488", + "dwd_hash": "82976e78aa88a4363ca04b3a21ea9dbb" + }, + { + "platform_coupon_redemption_id": 2902217978416069, + "ods_hash": "adafc1da595ddc52fa6cf310f6bc442a", + "dwd_hash": "3e6a01f8aeb85a5aa6e922392c4a6e92" + }, + { + "platform_coupon_redemption_id": 2902221416532933, + "ods_hash": "283645d6f173b2b89a3655c8b97e4f59", + "dwd_hash": "b8541fccf259f79dd9c22efcf66838e9" + }, + { + "platform_coupon_redemption_id": 2902221638651077, + "ods_hash": "1e560d1f843cc83dace2d5d374f3a7d2", + "dwd_hash": "dd400a820c8e1eefc3b90479b1c0287a" + }, + { + "platform_coupon_redemption_id": 2902226555997381, + "ods_hash": "ac0d845d635c1e163751ca4812ce1ad9", + "dwd_hash": "d5f30a8e7a7a03d1dc084b1f48cc0976" + }, + { + "platform_coupon_redemption_id": 2902237571337221, + "ods_hash": "4e686e6aebcc912d02fb7843db95c76b", + "dwd_hash": "20f4d8aa3c5aafbfb0e70376cf98561a" + }, + { + "platform_coupon_redemption_id": 2902238584622021, + "ods_hash": "706e1dca0e49478e6aebf4369468d836", + "dwd_hash": "a101780af2cf9f61ffe8b2f123ff1a12" + }, + { + "platform_coupon_redemption_id": 2902240655379845, + "ods_hash": "865f63fb8b79dfca70ceb5baea24fce6", + "dwd_hash": "572a4b871ed79ced43bc9c8571b8db44" + }, + { + "platform_coupon_redemption_id": 2902241126714757, + "ods_hash": "0a03ee7e93abe16ce300d5a051776147", + "dwd_hash": "e2f0c5bf2396108a45de3d87ec29027a" + }, + { + "platform_coupon_redemption_id": 2902243482963333, + "ods_hash": "13e8169cac55984a7d1ec5b8dca330cd", + "dwd_hash": "c05217d24bcc780a282ca534e97a4ad3" + }, + { + "platform_coupon_redemption_id": 2902246805474501, + "ods_hash": "aaebe1bc84cf564b1cb04178d824ca83", + "dwd_hash": "23e6f488fdbf37ade31aeac07a057222" + }, + { + "platform_coupon_redemption_id": 2902249617280197, + "ods_hash": "19939d7ad57192615fea95932656aff1", + "dwd_hash": "4ed785f37ed7e50292bd393fa96f61f6" + }, + { + "platform_coupon_redemption_id": 2902252697652229, + "ods_hash": "160628ece8fae6158f8f41f160fd803a", + "dwd_hash": "7eb7393c3640c35be8fbe7d87cbe80d7" + }, + { + "platform_coupon_redemption_id": 2902253075631493, + "ods_hash": "e24a145f8fb512bce5f44fff34a91ed5", + "dwd_hash": "26156ed47d6dc801e12a777fd81a71f1" + }, + { + "platform_coupon_redemption_id": 2902256480128197, + "ods_hash": "f330b7740cf8354e5377f85622cca27b", + "dwd_hash": "e564aa810a4fdf2288fd05c6df85e8c0" + }, + { + "platform_coupon_redemption_id": 2902262676524229, + "ods_hash": "571028025b21039174fd19d2c7e95f6b", + "dwd_hash": "f90f1ac1d12bd279b6a5f46f5b588552" + }, + { + "platform_coupon_redemption_id": 2902265221811589, + "ods_hash": "cb0961e516e3d5619181d7b8102c0d50", + "dwd_hash": "0947c89b3f05234394bd2709fbee5766" + }, + { + "platform_coupon_redemption_id": 2902270535535621, + "ods_hash": "35bc51ce1e6deb67bbc9a818c9f169c1", + "dwd_hash": "9559f933160c9125cb639e732a853436" + }, + { + "platform_coupon_redemption_id": 2902273000492421, + "ods_hash": "c27a475e7fee5e05d40cac4d547f269b", + "dwd_hash": "1951b3fcf5be5dddb0ecf4cb2401ddef" + }, + { + "platform_coupon_redemption_id": 2902273258998789, + "ods_hash": "ed9557c9f26c855eee763620956333c0", + "dwd_hash": "84228639ccdadd8a996748e8ceeae3b2" + }, + { + "platform_coupon_redemption_id": 2902278702042309, + "ods_hash": "bd39f28a2b7faf3afaf6c8213c1b698d", + "dwd_hash": "194c012f3225e4ae414884d21d1a6979" + }, + { + "platform_coupon_redemption_id": 2902281462353285, + "ods_hash": "1968fb597f753f6745060af438b82187", + "dwd_hash": "b35cedc607bce12c090be170b35e9c0e" + }, + { + "platform_coupon_redemption_id": 2902284193483973, + "ods_hash": "803e7a6804ce9c37751435eb820c4f40", + "dwd_hash": "f350a4959af7d9368aa5a8fa9010c53a" + }, + { + "platform_coupon_redemption_id": 2902286766951621, + "ods_hash": "8301c5747b0894179ae91f7ab442a9f6", + "dwd_hash": "511d2eaa58209e4729d21321ffcf8934" + }, + { + "platform_coupon_redemption_id": 2902299175259525, + "ods_hash": "076030d20936947d02963d69cdd53f04", + "dwd_hash": "23de7c04364c56544ee709ad14fba888" + }, + { + "platform_coupon_redemption_id": 2902303531387909, + "ods_hash": "b8462a60d7d5664b7474d1572839a1ed", + "dwd_hash": "e4010412768300bc5380e8cd8f305339" + }, + { + "platform_coupon_redemption_id": 2902306926546117, + "ods_hash": "9c879f8dfcd58ed378108abb61831dfc", + "dwd_hash": "545b571fcdc6955be6e07159ed7ad6a7" + }, + { + "platform_coupon_redemption_id": 2902310724701381, + "ods_hash": "a7b0d0474372268e49689b76872e333b", + "dwd_hash": "3d2918792aed27c7638f31713d11827a" + }, + { + "platform_coupon_redemption_id": 2902314367339909, + "ods_hash": "3cdd19760844a270633a897b401e61ba", + "dwd_hash": "bcab3712490f965e9916f88031d81801" + }, + { + "platform_coupon_redemption_id": 2902325542423749, + "ods_hash": "4fe09ba3944baae6c753de839940ef8f", + "dwd_hash": "8c10508799bc8795dc7576365c932ee9" + }, + { + "platform_coupon_redemption_id": 2902325747699077, + "ods_hash": "729beace889c969336c6d1b66f25c3a0", + "dwd_hash": "8f165b33af02f8149cbd3ad636565b30" + }, + { + "platform_coupon_redemption_id": 2902335580376005, + "ods_hash": "70b78d93f25311a6999de4797b8f3f48", + "dwd_hash": "ab460d72ded5ab1080df88b58a4ecb61" + }, + { + "platform_coupon_redemption_id": 2902352671542277, + "ods_hash": "9a90ac2713b543b4ceb893cdbed254a7", + "dwd_hash": "377a5bda53cf6211b030b9fe7a8893d7" + }, + { + "platform_coupon_redemption_id": 2902363868777669, + "ods_hash": "79161b8f6d76edb71822968862f2b7e6", + "dwd_hash": "0e4b7f694d803ada2dafab30a4851cc3" + }, + { + "platform_coupon_redemption_id": 2902392764976325, + "ods_hash": "0f7ebcb2fbff3f1667a58346b449b80f", + "dwd_hash": "d109f3fe596240fc7a720ab19c844a9f" + }, + { + "platform_coupon_redemption_id": 2902401247677445, + "ods_hash": "b03b4018abd42f20c5370401721f0ef7", + "dwd_hash": "b17f9fe486c19ba956c4ef26d43d3af5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ], + "mismatch": 3616, + "mismatch_samples": [ + { + "payment_id": 2901329633332613, + "ods_hash": "a17b541a1bf24c373109c9191e1cd74b", + "dwd_hash": "042293e2f0a2bd1d9aa6c7f675981668" + }, + { + "payment_id": 2901330301783237, + "ods_hash": "8da7463f462d765c1a5b5efdd67d229b", + "dwd_hash": "fb8e61db1aa96ccb0361a86201cfd7c1" + }, + { + "payment_id": 2901333640383429, + "ods_hash": "220dc6b4ca853aedeac6db07c4eb252e", + "dwd_hash": "efca71ec5a4660b5c23f98bd0bcd53b0" + }, + { + "payment_id": 2901341568650245, + "ods_hash": "4ad31937f9004a8e70a7627c95850afa", + "dwd_hash": "b6ae7559f7dcf7e903b172d2713555a1" + }, + { + "payment_id": 2901346036419781, + "ods_hash": "0c317b2acbafc03b8261cedd8113e2e5", + "dwd_hash": "1d79f890ddfac44c5b2b35d8aabf28ef" + }, + { + "payment_id": 2901348563930309, + "ods_hash": "8051ffcc096ca9331906c59b0012b07f", + "dwd_hash": "35326c9e59e21542a09ae73b0f203f09" + }, + { + "payment_id": 2901349053779141, + "ods_hash": "7165faadfc1411bc16e70473916a0fad", + "dwd_hash": "0012b440777d1ec47b8da97cfacbc81f" + }, + { + "payment_id": 2901349430414277, + "ods_hash": "e3c487b0652e42b528e0769c024381cd", + "dwd_hash": "481d7db3edcef1babe4a6c710c8416dd" + }, + { + "payment_id": 2901349808704517, + "ods_hash": "6fb1e2386d7690ef155acc4047e93f80", + "dwd_hash": "f1ad376cbb3d1591cc2642dc26a5c30c" + }, + { + "payment_id": 2901350925766021, + "ods_hash": "521a9c7eb218331a0e38507ba21db4e0", + "dwd_hash": "a052054ecad365ac91ebf9151b14b46e" + }, + { + "payment_id": 2901351258606533, + "ods_hash": "6ee9bbaf198a4cdbb36c3580390c0b0c", + "dwd_hash": "88ae7e806754cc200a3688da3579a60f" + }, + { + "payment_id": 2901351575882949, + "ods_hash": "0ba80c72ff417d1e5ffacdc630fe02bf", + "dwd_hash": "c61dd852b4cb09c9c736378957fba43e" + }, + { + "payment_id": 2901352973208517, + "ods_hash": "6469de441d9627b6ed98e846adef67e3", + "dwd_hash": "b93606f0048dc13a84880d11de33aee8" + }, + { + "payment_id": 2901353633533125, + "ods_hash": "26bf9f88df4efbf060e871321806bbcc", + "dwd_hash": "0000142e9cf31279eb3d9fdd7edcd23c" + }, + { + "payment_id": 2901354530589637, + "ods_hash": "4b172a2dcacf4dbc64c6d2a6be1402b9", + "dwd_hash": "f5a4d818ce7e7f891e4f4b77853e1b22" + }, + { + "payment_id": 2901357005196293, + "ods_hash": "a4700931ee5c6e108f49b119977b6056", + "dwd_hash": "a166f4c19e7f1227c10034dd58fff618" + }, + { + "payment_id": 2901358840712133, + "ods_hash": "a00460e5b13d8b6a337b687bcb84e0a9", + "dwd_hash": "ddc94830d07e22a746aa49cb4b232821" + }, + { + "payment_id": 2901362041473989, + "ods_hash": "14c05f2fd8f556f51d6d7dfcf492065b", + "dwd_hash": "7d6b2b022ee45aab4d2e6471831c7fe6" + }, + { + "payment_id": 2901364620659653, + "ods_hash": "1da2d9f291c8a47874cf77f5e2b656a9", + "dwd_hash": "d71e80af7e9875200adc9150a5dfe0fd" + }, + { + "payment_id": 2901367867280389, + "ods_hash": "a1e11bcb74d7fd16e36ada8033d02011", + "dwd_hash": "1351f782baaa8d9770d900b9f7850bff" + }, + { + "payment_id": 2901368984980485, + "ods_hash": "6be0343a4e44d757e106752bce53a309", + "dwd_hash": "bcd7f17d493c817289b4ef7d7cd600ee" + }, + { + "payment_id": 2901374239755653, + "ods_hash": "1f1a376e50aedd383532e96e2e52726b", + "dwd_hash": "720b34cddcdf96c396121b658d15eea9" + }, + { + "payment_id": 2901376491163013, + "ods_hash": "d2f31184e79773f3520c998cd7614717", + "dwd_hash": "6b437743b00a6ac74386d976a5dcd313" + }, + { + "payment_id": 2901377168264133, + "ods_hash": "0f5e8c6ed0089085d0ed21f4ddf35ccc", + "dwd_hash": "bc656b14f7b6e43c6f6196016a9870a2" + }, + { + "payment_id": 2901385077017797, + "ods_hash": "4b7401c2897634f0d872fdc5d3bad243", + "dwd_hash": "79a86cbe14b7ee1fa7d0bd030b626179" + }, + { + "payment_id": 2901395063671813, + "ods_hash": "537ec8448ea455628d9c1cbfd853cc6a", + "dwd_hash": "f8df7b3e33958fe8ed5e2ade4ca45151" + }, + { + "payment_id": 2901396410961093, + "ods_hash": "d213feb8936d3f6a0f6bd2d01ced6216", + "dwd_hash": "dc45d2bb6ad0bd432e4e18ac10a725ee" + }, + { + "payment_id": 2901406233447429, + "ods_hash": "2964dbdc2a9e1c0da383559b9e0eb29a", + "dwd_hash": "d1ee0fd4f4d2f6f5e31403e0f0120d27" + }, + { + "payment_id": 2901414643305477, + "ods_hash": "3b9b5d734f3f6acaf6926486baaec79e", + "dwd_hash": "3491f3c98a659c55f9b417256a290939" + }, + { + "payment_id": 2901419209477317, + "ods_hash": "d9c12f7868f10c3a26bd57a47da0b0d9", + "dwd_hash": "d127cb2c03d4b8a0cfb476875cb8f7e3" + }, + { + "payment_id": 2901423307967493, + "ods_hash": "f4abd15d1d832fe798be75870cf48f37", + "dwd_hash": "0ef9dd994f842de8dbc5cb4aeca5faf8" + }, + { + "payment_id": 2901427656805765, + "ods_hash": "1e9d4f33bfc96aadbfcd4bcf53fb84e0", + "dwd_hash": "68c049d7ef3209e865f8f5ab0e90b06d" + }, + { + "payment_id": 2901433679514821, + "ods_hash": "4b80121771d13238f8c6a98a7588261c", + "dwd_hash": "12f8bab6e4bf6d8c6dd1c3dba346ed72" + }, + { + "payment_id": 2901438573956101, + "ods_hash": "37b74917eeb20ec20d3619af99ebbfda", + "dwd_hash": "66b76ebbfa20ebb6390645a2ee732746" + }, + { + "payment_id": 2901440629345221, + "ods_hash": "2b51f7f88c9846b209756c87e7a199df", + "dwd_hash": "39aa0ab3a6dd218537133ae56a95052f" + }, + { + "payment_id": 2901452813487301, + "ods_hash": "c2e271c24597739fabaec1c82f085e5d", + "dwd_hash": "3455fc793116ec27f23f7c7a9e869d96" + }, + { + "payment_id": 2901463567436741, + "ods_hash": "a7ce0c729de0733c40db038ff8b04843", + "dwd_hash": "eede6a5d2ed33f5214ac2229380c4e31" + }, + { + "payment_id": 2901469448358853, + "ods_hash": "09d2b1bb30b554b35e16c993ca25d836", + "dwd_hash": "b52e4a4fcbcb57c6a1eb3030db8c2e8e" + }, + { + "payment_id": 2901471271865285, + "ods_hash": "79fd7c8e45e5eabddbcff63062f91505", + "dwd_hash": "2d23928c62878558b705688f0eb16236" + }, + { + "payment_id": 2901475700133061, + "ods_hash": "fcb5d09c5ef8ce79fe9a052794fc0360", + "dwd_hash": "d633cc2a9afaef8030fb86304a79bd2b" + }, + { + "payment_id": 2901509430791557, + "ods_hash": "2b58383ae2dd5c041c0c60663f3906b9", + "dwd_hash": "e32172925a5a63cb4778283fbbbb2f1d" + }, + { + "payment_id": 2901510516870341, + "ods_hash": "5fee8d604d267ad3ce2f7aeee9ca848a", + "dwd_hash": "c2f107e0ebccf2ededcffc1508f37afd" + }, + { + "payment_id": 2901523906268165, + "ods_hash": "e3a3e772412ab50423255bd3e253401c", + "dwd_hash": "df76333fe3ad506df6e2d15ea458e470" + }, + { + "payment_id": 2901535958945157, + "ods_hash": "32aef665b683c0fd0e212f2dc82654b4", + "dwd_hash": "cf39184ecac7c86c4a5ef9538aa4bcfc" + }, + { + "payment_id": 2901592642587845, + "ods_hash": "48e58f8cf4d74d75b10ad014e6a9b929", + "dwd_hash": "2de107c0581530a7c69f13de9f0a736f" + }, + { + "payment_id": 2901680239348933, + "ods_hash": "971a0c4494f3b1da49400f28398df9ba", + "dwd_hash": "dd3bfccc8091a571d97069023d46b741" + }, + { + "payment_id": 2902079562812613, + "ods_hash": "1146e8032439b0e68b441b634fd55d3f", + "dwd_hash": "8a6a091764f603dd593245d4b1fba26f" + }, + { + "payment_id": 2902088275250181, + "ods_hash": "114db5dc689ab41dabee8f23d2f065da", + "dwd_hash": "66ab2989639ea160e527f43efc5fe48c" + }, + { + "payment_id": 2902118401379717, + "ods_hash": "bf38fa4e9fd73b1aeb877bff45f45b17", + "dwd_hash": "54fec9c8b429d00282584992e6ed86b6" + }, + { + "payment_id": 2902128928755077, + "ods_hash": "d9ea8705db9f035dc2b384df615b6e70", + "dwd_hash": "33baa2de6cbe80a234fa26c165549b42" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ], + "mismatch": 5, + "mismatch_samples": [ + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23107, + "total_mismatch": 51791 + }, + "generated_at": "2026-01-31T23:12:57.342442+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10199, + "records_with_pk": 10199, + "missing": 3, + "missing_samples": [ + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 51, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12027, + "records_with_pk": 12027, + "missing": 5, + "missing_samples": [ + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8319, + "records_with_pk": 8319, + "missing": 3, + "missing_samples": [ + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "ad570076c51b6feb0a41f4cc4c0ee893174bc90a5b2311992a902dea42d52125" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "af84ea43328906e71379e0965a64437a7f531b632fd3dbeec93335ce91725f4f" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 4, + "mismatch_samples": [ + { + "id": 2793012902236293, + "content_hash": "b8b9413d159be230f29f8a861e75da52133e3235c5d3da83ea7d19bda8685b31" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "be3f7d611af412e29e87a0007944e5facbe566fbd0f7eafe433a22aa5c46b63e" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "d07f506ba20cbf4945408f205916f0613222762c44a64bb13a84a265f88ba2fc" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 13, + "total_mismatch": 26, + "total_errors": 0, + "generated_at": "2026-01-31T23:16:46.679153+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [], + "mismatch": 12, + "mismatch_samples": [ + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + }, + { + "assistant_id": 2964640248745157, + "ods_hash": "32b25f8128d54a365bf9a7443585bd3f", + "dwd_hash": "a3183239d5fcef78c20c882bcbf7300f" + }, + { + "assistant_id": 2964641017858885, + "ods_hash": "367d26706274a18293225f2165772376", + "dwd_hash": "2dd48d3a8a7786db73f924d55c72830c" + }, + { + "assistant_id": 2964673443302213, + "ods_hash": "d9f0774973a53c49d886a4a06970f097", + "dwd_hash": "c8884cbe959baa753e7a3220a407d403" + }, + { + "assistant_id": 2967523548220229, + "ods_hash": "7c6ba3b49a5d7e89ff6127e37158514f", + "dwd_hash": "19cf5d73ec1147573bd80431bcd14a3a" + }, + { + "assistant_id": 2968948701235781, + "ods_hash": "401914b7ff428454e6d6086aadde187b", + "dwd_hash": "45bb8364fa401ca029078b0725cba674" + }, + { + "assistant_id": 2968952636082757, + "ods_hash": "b1acccb7c4d775ef38b50c7fc968913d", + "dwd_hash": "d25e3f51e821f827942ab6b1316f62be" + }, + { + "assistant_id": 2974409288616069, + "ods_hash": "83f58323ffa23b6024c03a9f148b87a1", + "dwd_hash": "db17601f34dba735067a519cef540c45" + }, + { + "assistant_id": 2981625091950725, + "ods_hash": "02dfb2106e300d3bb46715c9f0061d44", + "dwd_hash": "2c71250b8efca7c5784d6404106bebe8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [], + "mismatch": 40, + "mismatch_samples": [ + { + "member_id": 2945299652708293, + "ods_hash": "5d339bcdfda1de93de685c4ab2b48521", + "dwd_hash": "a05240cf83d58433fa9992d181ccf965" + }, + { + "member_id": 2946070922169029, + "ods_hash": "a0099f49f90cb4cfd27654772a929e06", + "dwd_hash": "323e87145a641593f0a5ec1cf68d4951" + }, + { + "member_id": 2955204541320325, + "ods_hash": "6ecb13e3a312f193084f1acd3dc9339d", + "dwd_hash": "b869da0ec823a9ef208a7f77216639a2" + }, + { + "member_id": 2963080729267653, + "ods_hash": "265ee165d1e321a8c8f951737768ab27", + "dwd_hash": "961cc4dc0167aa5f9e22efa260dcdc40" + }, + { + "member_id": 2963282691968453, + "ods_hash": "571fb1b8056d912514040debb17c1d59", + "dwd_hash": "f2812bef6dc8ffbcbbbbbf90a40b61d3" + }, + { + "member_id": 2963357031615941, + "ods_hash": "884e953b20b213c104edd985bcaf18e6", + "dwd_hash": "09aa98ca520aeb19d6361f75e8b40e8f" + }, + { + "member_id": 2964541607316933, + "ods_hash": "a1f861fba2322f0d07f9cd14af5c4d54", + "dwd_hash": "20c5df8d15b7701e641a114482a793e8" + }, + { + "member_id": 2966172496072133, + "ods_hash": "6c25897ce0bfeb821f00435a88b70292", + "dwd_hash": "bab16ca1da1ac85a8dd00365c4aadb41" + }, + { + "member_id": 2966362986335685, + "ods_hash": "e1e185e418e06e867686728f6adb5a31", + "dwd_hash": "25ccb873e111981bf88b5e09fa8b8d38" + }, + { + "member_id": 2966381620874693, + "ods_hash": "6732bf2a1d6e7d5055ac8be913707191", + "dwd_hash": "8f4189a499a5afd6ec0fa622cf63b7d6" + }, + { + "member_id": 2966453465337285, + "ods_hash": "53009c7ff8b53f02e1bdf6b3efc00744", + "dwd_hash": "b679ed61cf81d517ca869e6fab807614" + }, + { + "member_id": 2967557411589573, + "ods_hash": "70f5beb78ac31562495526fdf8f0dfa2", + "dwd_hash": "d2699dd8d68491d87ad6b17dd33024f8" + }, + { + "member_id": 2968940593907141, + "ods_hash": "9cfb989fdd8ed4cd8ed247918360cb8b", + "dwd_hash": "04b02645011415357d2a78cd16ce7d79" + }, + { + "member_id": 2969257129938053, + "ods_hash": "9b09e4e99122baf0e972946148a75540", + "dwd_hash": "ebfca9fe392c73d875d3ce5b53473cae" + }, + { + "member_id": 2970386005050949, + "ods_hash": "74b153726b3ca4ff32a98eb881ce8d79", + "dwd_hash": "802c2f75533c8a8264bbfa318469a50f" + }, + { + "member_id": 2970668087594181, + "ods_hash": "64ebfa279a3a6c7c186c1dab8a89da70", + "dwd_hash": "7353e342bcee1253fddcc466aaeb8363" + }, + { + "member_id": 2971830157477573, + "ods_hash": "a843a70d0119f6fb47188774fdf99cdf", + "dwd_hash": "7f89c12bee5376aa63d408e35a2361cc" + }, + { + "member_id": 2972037072081541, + "ods_hash": "4f251b686e4e6d93f032c2168c19a60a", + "dwd_hash": "2798eb075386d05eed1b0e1ad9bfd0a2" + }, + { + "member_id": 2973199975761797, + "ods_hash": "dcb162fa1d822e1aef786ac883b3451c", + "dwd_hash": "51644fe4c3dfc4077d73e1281e15ae6f" + }, + { + "member_id": 2973479575832453, + "ods_hash": "2206da5bea756856ce6dc757a215ed41", + "dwd_hash": "9f97548e9ef67c79d3bae78d0eb9af70" + }, + { + "member_id": 2974754075445125, + "ods_hash": "ed89175a8a7df1754876d921f48cd026", + "dwd_hash": "678c2a629f3516d9b52a0b48bfb3379f" + }, + { + "member_id": 2974754559625093, + "ods_hash": "c4f3452d8fc5483df61f80bfe3751d42", + "dwd_hash": "f86eb85dc13b4004c3960224ef0de685" + }, + { + "member_id": 2974755670493061, + "ods_hash": "62c467588d4b6aa699a2af9d61ac84bb", + "dwd_hash": "5b6c8440b4f1305f1a35794f5c78cab0" + }, + { + "member_id": 2974756216031109, + "ods_hash": "c89d20cc504cbcff58a0cb8e2d76561c", + "dwd_hash": "04f0a9623e8e07be3a9c4a19664d092e" + }, + { + "member_id": 2974770547348357, + "ods_hash": "06e8cd860cb7e794fa9fe1e6d0d3b31e", + "dwd_hash": "4aea3580f0ae3a783d19b955ea79c11c" + }, + { + "member_id": 2974785493485445, + "ods_hash": "c6d80b53faf97fdfe7464e6e1f2e7a4c", + "dwd_hash": "57a1956bcb5a1a7c6add1e4936487d39" + }, + { + "member_id": 2975065345119045, + "ods_hash": "c17842c48eca4fd505d486a47d5665d4", + "dwd_hash": "c11ffce37aa91fbba55694e50c9e724a" + }, + { + "member_id": 2976354546927493, + "ods_hash": "f788e4fb22a3b4fd85e692c8e4ba294d", + "dwd_hash": "8cc49daa63775691fe8a4091bdf9bf43" + }, + { + "member_id": 2976361970370373, + "ods_hash": "b765a0904eca25e8ed6c9281639693a8", + "dwd_hash": "940ae43732d14aedb9655df001e50d09" + }, + { + "member_id": 2976369237493637, + "ods_hash": "fba04b04f295b06526d18d39c5042620", + "dwd_hash": "364ab7c0eca3416800369117a3713cf7" + }, + { + "member_id": 2976372411533189, + "ods_hash": "441fe5cb67a750ae43255b44dbdd00a8", + "dwd_hash": "a0e47ffb00d86d62d8541ca045b72e57" + }, + { + "member_id": 2976376546117574, + "ods_hash": "be4c7a4e9d27bec95627d801d0eb5fa0", + "dwd_hash": "68e42c7a0b7505ac7d56131a4430f7d5" + }, + { + "member_id": 2976465665476741, + "ods_hash": "8afe78e5b8d911b42ffd7d27aee1bcba", + "dwd_hash": "59a541b5f9a4f4859e652d6e14829be2" + }, + { + "member_id": 2977807259142021, + "ods_hash": "314bbacc1bd511ae19bb1616fc04a76a", + "dwd_hash": "95804f3d296a307419c007b4454d1c1f" + }, + { + "member_id": 2980065690831173, + "ods_hash": "82a8bc980962305612d497d8c9f9a5ae", + "dwd_hash": "484d8d32241350d1a08f5a1e964dfac1" + }, + { + "member_id": 2980518051006341, + "ods_hash": "61abb184836f02f222b5c5628492507b", + "dwd_hash": "f9e9e983aca720cd98f7a48c63517681" + }, + { + "member_id": 2983452013021509, + "ods_hash": "840b2a3b2d2e52daf5e2ee6d4e97b0df", + "dwd_hash": "1e22089e341fb1639740bf253a0d96a8" + }, + { + "member_id": 2984700277263365, + "ods_hash": "fac30312bd7dcb191309d40782452a0d", + "dwd_hash": "71945bfb20f0e2d27ffac68820033511" + }, + { + "member_id": 2984798972709509, + "ods_hash": "fcf1150d033f67a3ffa8bfc6a0a7ddb6", + "dwd_hash": "08759e96b2b52aed70e4503529238df8" + }, + { + "member_id": 2985941423934469, + "ods_hash": "a554c3f6602741653c08825b3d4bcd15", + "dwd_hash": "1a3c47fb659bc9a946046a18b6fc6b62" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 80, + "mismatch_samples": [ + { + "member_card_id": 2945299653003205, + "ods_hash": "7631218d028b598c551816af8e901e32", + "dwd_hash": "e200cedfd6eea217a1fc2ff64b95ba3c" + }, + { + "member_card_id": 2945300519405509, + "ods_hash": "13aacc8fe9199473d5578646a0d8d53b", + "dwd_hash": "02b2a3b52562b68a2c7c1b30600f02ea" + }, + { + "member_card_id": 2945598955374725, + "ods_hash": "6c116d572b0a9c80e71ee9f901327787", + "dwd_hash": "42460a959b85a4eb97d6dcc47a6b7991" + }, + { + "member_card_id": 2946070922889925, + "ods_hash": "6634c10f88798f9048765adefe6fdfc8", + "dwd_hash": "6458966fbd7104b8d11e61034a8fa587" + }, + { + "member_card_id": 2946071339616325, + "ods_hash": "f2a07df3b1100540ea42a083e793ce4f", + "dwd_hash": "7aa0d7c6b2b7bb904723c5ea469958e7" + }, + { + "member_card_id": 2946072298784837, + "ods_hash": "41940fc0474ef7cac586217542d138cd", + "dwd_hash": "b413a30b9344cd2bcbacf02d9bdeca57" + }, + { + "member_card_id": 2955204541615237, + "ods_hash": "9b497343d8b5abaad4e829fb68d783d7", + "dwd_hash": "2f99333e6cb85dfdc92ca5595d1160da" + }, + { + "member_card_id": 2955206162843781, + "ods_hash": "a81ade9c8d4505c107804c1b74b95935", + "dwd_hash": "12baaacf9124cac5cffe9bd9a8f5fb23" + }, + { + "member_card_id": 2963080729562565, + "ods_hash": "f69fa8c859d82cfa0ef1806c1a05f5a1", + "dwd_hash": "8386450a8dbabe0b3ca16686473c7b87" + }, + { + "member_card_id": 2963081046953669, + "ods_hash": "01f5c43905131e87f13a4f7fb092d03b", + "dwd_hash": "710c6f39936ab0e75bb60010d6d8558e" + }, + { + "member_card_id": 2963282692246981, + "ods_hash": "c965f86ccb99f740dbb59afc2728eee2", + "dwd_hash": "53f62330c4521c3bf1bd01062be13c53" + }, + { + "member_card_id": 2963357031960005, + "ods_hash": "8523fc181867b6f054456fa9fe609bc0", + "dwd_hash": "c48a272fe77c8d7640e47f035c40cefa" + }, + { + "member_card_id": 2964541607611845, + "ods_hash": "2fa66cc2fc01a6b0e278c57cba334a05", + "dwd_hash": "4745366732c0f46b415104931d15a6e2" + }, + { + "member_card_id": 2965088556746437, + "ods_hash": "c489bdd69526a24170b058e667664c12", + "dwd_hash": "efee02bdf5d0ce24984e8188d74f1afe" + }, + { + "member_card_id": 2966172496350661, + "ods_hash": "a35be8d41035b65682b96d4bb511419b", + "dwd_hash": "7c2a14ab5ca67b3e37613db14e33cfc5" + }, + { + "member_card_id": 2966362986630597, + "ods_hash": "8400bc015aa0f7380f4b93ac47b8371f", + "dwd_hash": "b6141d8a976181c721314b19f5874543" + }, + { + "member_card_id": 2966381621185989, + "ods_hash": "0f91e870edddfb65ada44543c6de586b", + "dwd_hash": "b18818a06250fcb59c834bb4391d1fa5" + }, + { + "member_card_id": 2966453465615813, + "ods_hash": "d8f5dfe73b92a3e987beecde0d14d4b6", + "dwd_hash": "ecc2338793619eb02e69a386a34e7f49" + }, + { + "member_card_id": 2967557411868101, + "ods_hash": "d2b41d4e1de45c06c716313d1793e9bb", + "dwd_hash": "e837e5f21cc68cbca41512e25d316b07" + }, + { + "member_card_id": 2968940594202053, + "ods_hash": "9bfd1439d04fd2fce98b4fe3de7065e9", + "dwd_hash": "88713c7e2d8750ffa898582241de0365" + }, + { + "member_card_id": 2969257130232965, + "ods_hash": "35ac52e17a7e88a83914225362545af4", + "dwd_hash": "a06f51b1b2f51c9ecdb6e375050d9568" + }, + { + "member_card_id": 2969257428700293, + "ods_hash": "b8b0bc10d2c0f8cc9b2430b286ebf92a", + "dwd_hash": "b8a523b68327f3c7f211b1c3da4e9398" + }, + { + "member_card_id": 2970386005919301, + "ods_hash": "6676cf311f4f7edb206c42ee2055ca74", + "dwd_hash": "f8a7b450f87ab18e4b26caf8b3a9d90a" + }, + { + "member_card_id": 2970668087872709, + "ods_hash": "034df29862643b3b798381b3a7056260", + "dwd_hash": "42f7c8da9dc74e2fc82b78470670c855" + }, + { + "member_card_id": 2970668479384453, + "ods_hash": "42b37dae4f8d35cf2a157be358df1bdf", + "dwd_hash": "d62c04c1f59198249a07632695a97920" + }, + { + "member_card_id": 2971830157772485, + "ods_hash": "2dff48cca83beb500908166d72cd4e0d", + "dwd_hash": "cabcee86fe52daa828a496b7026185d9" + }, + { + "member_card_id": 2972037072343685, + "ods_hash": "6df00a866cd373fa9f16c21c00b522d2", + "dwd_hash": "22703e1a679c5a4f5fcee0a8fc61f3c3" + }, + { + "member_card_id": 2972037629840517, + "ods_hash": "a1f3ee3e3215474a431aac434eac9c66", + "dwd_hash": "aaa7d5af26e44806f628867f1b6490e4" + }, + { + "member_card_id": 2973199976089477, + "ods_hash": "ee5b79bd07a0407c60f6d798b8a38c34", + "dwd_hash": "5a7b492c07be7de18368ff0c4fa086f5" + }, + { + "member_card_id": 2973479576110981, + "ods_hash": "7e4c075342d8b7d2fb471100badafe71", + "dwd_hash": "4c9931b5b54983c121dbaea04d06e2f6" + }, + { + "member_card_id": 2974754075723653, + "ods_hash": "32d6e908c8f8496718f724e44cb3134b", + "dwd_hash": "e3d117a8c884f02caa34353a23c7d9ba" + }, + { + "member_card_id": 2974754559903621, + "ods_hash": "2fb4a49ae34c8c8f1526089d6f805cd1", + "dwd_hash": "24d319bf0aaad07f673f09b5d3f3474f" + }, + { + "member_card_id": 2974755670771589, + "ods_hash": "2d70d618a7ec186a02fb9a41d6c62d0f", + "dwd_hash": "59fcbefa2d5a311ac82ab6d615fd7350" + }, + { + "member_card_id": 2974756216326021, + "ods_hash": "d2f3bcde09d45e1cf4ec4f7c80031f2b", + "dwd_hash": "a78ba7b4fd39edddebf171d4115e558e" + }, + { + "member_card_id": 2974770547643269, + "ods_hash": "afe4867e6b2e554412413cd49eb2fe7e", + "dwd_hash": "4e384910b42701e85a818126a14e98bb" + }, + { + "member_card_id": 2974770908697477, + "ods_hash": "e391d7485add865c0a0ac4b076487894", + "dwd_hash": "e555c9b2221109de7873890253bf5ab6" + }, + { + "member_card_id": 2974770958340933, + "ods_hash": "9a31d700d51d711d10945df0a496a927", + "dwd_hash": "cfea047e725993715c5e730c9787b3f0" + }, + { + "member_card_id": 2974785493747589, + "ods_hash": "82ab8773d7179c718367d763f2784cd7", + "dwd_hash": "a256821e96ead935dfa8ea170fdba26a" + }, + { + "member_card_id": 2975065345397573, + "ods_hash": "1ebe34bca2ce414c72c1e50b520f5566", + "dwd_hash": "582a061204b3b86f34cd2cb9ffe578bf" + }, + { + "member_card_id": 2975065876861893, + "ods_hash": "8e2995aa3fc5e0493aa32e3fbb997d1a", + "dwd_hash": "9e129a055a27e1d74c9a4dd277ee8318" + }, + { + "member_card_id": 2975065981473541, + "ods_hash": "d5bd25ea5572f3840d61a92aa532cde3", + "dwd_hash": "b51b3a49e1cc2cd4bf038f0b612bc887" + }, + { + "member_card_id": 2976060892301445, + "ods_hash": "be2e45655b37e598351058ded1125c47", + "dwd_hash": "f0b5d99c113a991c646f14e565acc829" + }, + { + "member_card_id": 2976268383766469, + "ods_hash": "2a4cec059ba9c405f6fba6a045401632", + "dwd_hash": "923e6d16a2fd22e0df846c4718dc2a3a" + }, + { + "member_card_id": 2976268659476293, + "ods_hash": "39e89e476beac6ab52c11207c933526a", + "dwd_hash": "c0241362a9d8d0133601b5c79764ba2d" + }, + { + "member_card_id": 2976354547206021, + "ods_hash": "860605059c5104922bf742d8a0c7117a", + "dwd_hash": "bcaf6b48c707ccd6dc69dad6c1b3e808" + }, + { + "member_card_id": 2976361972205381, + "ods_hash": "05f0bb323b831131f923cdc1c3db23b2", + "dwd_hash": "67ddb1216414fd4c4ac1d3a209e5b8d7" + }, + { + "member_card_id": 2976362493413509, + "ods_hash": "9bf881e7ce6d2da2637d04adb4069ebe", + "dwd_hash": "61d04e30122d94ccc8e0d1d1c81f6426" + }, + { + "member_card_id": 2976362549004101, + "ods_hash": "c3b55b3b89893e1abfa38ac49f6680d1", + "dwd_hash": "2acbc61fe9b3a5ae3b414aa0720f78b9" + }, + { + "member_card_id": 2976369237837701, + "ods_hash": "967e4f59079b4ffe6652558a16988225", + "dwd_hash": "0eeb330a7a9a487be422efe23a583495" + }, + { + "member_card_id": 2976372411828101, + "ods_hash": "0fe132a9416cc0ffef4bb514e13a7974", + "dwd_hash": "da95d490e7051535cac9c2b663700eaf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 2959250949670277, + "ods_hash": "f32731ce7782ca5abb7db085bcdd1376", + "dwd_hash": "ee0161489c89c7e76289b5b77f2cc897" + }, + { + "tenant_goods_id": 2964701792325061, + "ods_hash": "09ae6882e4666aa97226c2c0343bf8db", + "dwd_hash": "24d49843cd1dfbcae9dcadd6effa080d" + }, + { + "tenant_goods_id": 2966338744487365, + "ods_hash": "6181d8770a5e87d34ecc28795e23f764", + "dwd_hash": "a759e790d225ac274b10b55023bbaf17" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 123316.54, + "diff": 33307.250000000015 + } + ], + "mismatch": 3336, + "mismatch_samples": [ + { + "table_fee_log_id": 2945209281415301, + "ods_hash": "13c452b3928f04f6ab2aa76ce84ca0ff", + "dwd_hash": "1c09ff0beb882aca4feac153e657d598" + }, + { + "table_fee_log_id": 2945219533375557, + "ods_hash": "ddcda4e79fcdd3aedf9cd5462b9cde8d", + "dwd_hash": "867e54955f7a70dfd79dbdaa1bfd5da0" + }, + { + "table_fee_log_id": 2945223817644101, + "ods_hash": "edbe362ab3d28b5813a940c26e415331", + "dwd_hash": "f28d295af48dc565dc1069a680f8681b" + }, + { + "table_fee_log_id": 2945238240675781, + "ods_hash": "5706b92cbb15648e4f8427272bd4fb98", + "dwd_hash": "4ca613dc9eaff5cd6dec0a76fce3b047" + }, + { + "table_fee_log_id": 2945244231747525, + "ods_hash": "8381168850c4bb59f672f757e1ae7f31", + "dwd_hash": "b53894549e410cb8a19bbfa7e4c58a42" + }, + { + "table_fee_log_id": 2945250914715589, + "ods_hash": "080c15f7b3f602e6b9097ae4d7fa6602", + "dwd_hash": "c42c3bffcada092e84db9d8849c88c34" + }, + { + "table_fee_log_id": 2945265999841349, + "ods_hash": "38f47f66d5803a5abd8a86adf55222a8", + "dwd_hash": "1a1a65c7d9a34d16db2b712b66883ed3" + }, + { + "table_fee_log_id": 2945282190657477, + "ods_hash": "be42f4ec700c10bdc89c82d3392b65b5", + "dwd_hash": "a039c2fe1e79167d8f6f80ffc2403d5f" + }, + { + "table_fee_log_id": 2945295730985093, + "ods_hash": "913e0d8f35e78470cbccd7efff384e9b", + "dwd_hash": "692328022cf8a2fcfd96656c9e99d3af" + }, + { + "table_fee_log_id": 2945296564308037, + "ods_hash": "275ea97826eb6c7e00b327289892d456", + "dwd_hash": "f447fbe6f7bcb061d5d14d3eefbc4fb2" + }, + { + "table_fee_log_id": 2945297080289285, + "ods_hash": "d1c7a58ae07c181dcb43c664e432e86e", + "dwd_hash": "97b773f00411239f6c57a2010c60e62f" + }, + { + "table_fee_log_id": 2945308564916293, + "ods_hash": "ff0832dab128b8b19af19089897705c7", + "dwd_hash": "680b948519554f6949c3357910bcbda0" + }, + { + "table_fee_log_id": 2945327284095109, + "ods_hash": "bb4bb948d07a6287b508723e19a7329b", + "dwd_hash": "bcdfd62b05833402faac3bb67067c7e9" + }, + { + "table_fee_log_id": 2945328508340293, + "ods_hash": "8a000ffa426f72814c7737b1ec502f3b", + "dwd_hash": "813745ab543327b98c8f74f0130ff1d9" + }, + { + "table_fee_log_id": 2945343828953093, + "ods_hash": "3c790b6bd75c4d0a68ed94706bf05a8c", + "dwd_hash": "f12fadce707e636f7ef6c8ec16d13224" + }, + { + "table_fee_log_id": 2945355734992965, + "ods_hash": "bb08a3957473fd7e3fa395885e13b32c", + "dwd_hash": "06479e897839b2380801347238e81eb5" + }, + { + "table_fee_log_id": 2945370019399813, + "ods_hash": "82c9dad70749428d56e7fd2bb7ec1dd7", + "dwd_hash": "318423c2e2ff6866d15e327c07fd9bd6" + }, + { + "table_fee_log_id": 2945379788327045, + "ods_hash": "8a01504593a4abba361859ec1328274b", + "dwd_hash": "d81bb240093e3bf418a066858856b967" + }, + { + "table_fee_log_id": 2945387231872965, + "ods_hash": "282748ab213dd803de9984741bd8d42a", + "dwd_hash": "cebc629837964f0cde1bde57895a5376" + }, + { + "table_fee_log_id": 2945412155639941, + "ods_hash": "68145cb7b67b785cc606767cd3166260", + "dwd_hash": "74488e67d6b5553477547f0301f567ca" + }, + { + "table_fee_log_id": 2945415969065093, + "ods_hash": "2e31880abca6cc816e64ab97a996ea9b", + "dwd_hash": "b994a5a666e9fca73849edfc43c03f1d" + }, + { + "table_fee_log_id": 2945462213248965, + "ods_hash": "f8dfbd8bc2e065e7c02bbc89f2a5a286", + "dwd_hash": "b8044911265f235e8865f2529a094481" + }, + { + "table_fee_log_id": 2945465518999557, + "ods_hash": "ba153704284f93c528154c51b3933a03", + "dwd_hash": "3a4c7d5e355e24cadee9a21db6dd1514" + }, + { + "table_fee_log_id": 2945530360367109, + "ods_hash": "e9ab9c006bd53eef83bf57289056eacb", + "dwd_hash": "1e4c428e8b9f43ab5279e39efea11796" + }, + { + "table_fee_log_id": 2945604898736133, + "ods_hash": "f4b4b94f59ef41eb146c4e9b33f27f2e", + "dwd_hash": "5fc216e1d7bc956fd69405c55df3d235" + }, + { + "table_fee_log_id": 2945871138064389, + "ods_hash": "f852cb8d6bf20ebb6b61bbb33a24f7de", + "dwd_hash": "60886435b072d73846f21c214b7f1ec7" + }, + { + "table_fee_log_id": 2945876560381893, + "ods_hash": "c31773f015b04e5334fc8c57567bc5ce", + "dwd_hash": "77f42fd5d6f4691c39c626c3d0659bb9" + }, + { + "table_fee_log_id": 2945876626344069, + "ods_hash": "cbb7298a4126bdc619648b795ee065f2", + "dwd_hash": "a970a70cb0f0dbaac36922805ae18d4a" + }, + { + "table_fee_log_id": 2945894625216517, + "ods_hash": "a5967a9d3ec2c6cc7d234d33ac84c7f5", + "dwd_hash": "5e594f665e0678d12bd1c2b12efe2ac3" + }, + { + "table_fee_log_id": 2946023884032005, + "ods_hash": "6a8f8984a30af0fb6366e0d879518a95", + "dwd_hash": "99e54bbf727a6983d63a2252eafc7a82" + }, + { + "table_fee_log_id": 2946052226074629, + "ods_hash": "17b1b3f094051d689b1b1c39fe022fad", + "dwd_hash": "45146bdb61896d89be252da3c83bfbf8" + }, + { + "table_fee_log_id": 2946055145506757, + "ods_hash": "4122d238851ffa1311122c7eaac1b323", + "dwd_hash": "3c25f27c02895afd200f431cd7cf1c0f" + }, + { + "table_fee_log_id": 2946062771193989, + "ods_hash": "cd223d4d2351d1b6a086c92dad84ac53", + "dwd_hash": "7bb4d1cb9d16ce50a822c1d88062503b" + }, + { + "table_fee_log_id": 2946081282951173, + "ods_hash": "762bf315bbfd0294af65b489e6ff39c5", + "dwd_hash": "f350c4608d6459365bc8493ea3d132ad" + }, + { + "table_fee_log_id": 2946086439618501, + "ods_hash": "5ce183bc78ede4732f598ab5214a0afd", + "dwd_hash": "5dda5deabe0975122fc9703bd57f6b66" + }, + { + "table_fee_log_id": 2946118185600965, + "ods_hash": "726646c97b41191db818c999db443d79", + "dwd_hash": "5bbdfd357e693436588e09895ffa3116" + }, + { + "table_fee_log_id": 2946131746015365, + "ods_hash": "9e5c227896acf79b38212ffecfd0caf3", + "dwd_hash": "f81ac3b875ce16ffab339a34fc44a932" + }, + { + "table_fee_log_id": 2946137103501253, + "ods_hash": "ff50761c2de1900eed16188db1f56b54", + "dwd_hash": "b6aa8193c694cd914d36d574f585ef6e" + }, + { + "table_fee_log_id": 2946138050365381, + "ods_hash": "0b1c43e6b141a5681f6f8d5d27eda9b6", + "dwd_hash": "5208f053796d84f587923e4124b3b42f" + }, + { + "table_fee_log_id": 2946138833127365, + "ods_hash": "c0f82c19f18c87a56cb3b35d6c09ea56", + "dwd_hash": "20d5a9bda1cf4319e8cf72d665c62352" + }, + { + "table_fee_log_id": 2946140342650949, + "ods_hash": "2c7d56ceb8094a1af3dd5aeba3d9ba6a", + "dwd_hash": "19c89b8b7d2281ef15da0a8681f10e64" + }, + { + "table_fee_log_id": 2946147440363461, + "ods_hash": "16ea977ad06cba07d41c73c058be0874", + "dwd_hash": "fd16e1f19154fdcc2951dfd49fbf63ef" + }, + { + "table_fee_log_id": 2946164124125253, + "ods_hash": "4335e3838c6c753393e490cfbb216f2a", + "dwd_hash": "d14fd1bc15188c64a8270be907a7f0ea" + }, + { + "table_fee_log_id": 2946173959735365, + "ods_hash": "5d5b8f2c8dc4e73bd1698e1961c0c720", + "dwd_hash": "006620bb83f003f81118c5bc10b8378f" + }, + { + "table_fee_log_id": 2946177074137093, + "ods_hash": "c2d55412d36ff60a5246de9729f213e1", + "dwd_hash": "af708da1e9bf34ff64354c899c41182c" + }, + { + "table_fee_log_id": 2946179149645893, + "ods_hash": "ffd563abf6c12052606d958ff97fd312", + "dwd_hash": "70fab3bdcbd3244929284f69af5aa4a2" + }, + { + "table_fee_log_id": 2946183647184837, + "ods_hash": "d09c0c82196b046e26d5b8915ca6b587", + "dwd_hash": "afb507f11f45fe2809b6e37d7d393e08" + }, + { + "table_fee_log_id": 2946192223848389, + "ods_hash": "44eec8cebefbfdc65d578204f546d9bb", + "dwd_hash": "895f9a9577616b725f7cd8364a313692" + }, + { + "table_fee_log_id": 2946192288499781, + "ods_hash": "e465412c04d247db9878fdf0a7cc6c18", + "dwd_hash": "3a2fc4f273e0fb3b211bf3c03ccc2782" + }, + { + "table_fee_log_id": 2946197297907845, + "ods_hash": "a9994ce1d4af53b8d9bb3994d6694cdf", + "dwd_hash": "643b06706be671cf112000153284ee16" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ], + "mismatch": 4134, + "mismatch_samples": [ + { + "store_goods_sale_id": 2945219534866501, + "ods_hash": "f1e67065c6f7711e0631932df0a179fb", + "dwd_hash": "3c8219ced35555f4a83e4d684a000759" + }, + { + "store_goods_sale_id": 2945219534866502, + "ods_hash": "e4e8944bc9c29ab83e12d861fcc80b29", + "dwd_hash": "eb10895558a492430c029f2033f34825" + }, + { + "store_goods_sale_id": 2945219534882885, + "ods_hash": "c383e88cc0911244ef937f5694bce10c", + "dwd_hash": "9d4a7b5741cb62e6483fb655b1776ef6" + }, + { + "store_goods_sale_id": 2945219534882886, + "ods_hash": "ef023beb8ac558da9b5bd62bfa4b96e9", + "dwd_hash": "bf65238a47b9a27bedc244b972e03c40" + }, + { + "store_goods_sale_id": 2945219534899269, + "ods_hash": "9388cf6a9503bce923b7dc95f6991360", + "dwd_hash": "ada1295ed48dc1176bb35fecb92f85d6" + }, + { + "store_goods_sale_id": 2945219534899270, + "ods_hash": "57e9afd2c7e63b40d04bbd4f6c8bd57f", + "dwd_hash": "a133ad4f07b91ffdd87e3a91f9f7ec0f" + }, + { + "store_goods_sale_id": 2945219534915653, + "ods_hash": "d1c12e54763758936873d35a8ffa80a0", + "dwd_hash": "dce4740fbe5651fbba1c34edb3ebe849" + }, + { + "store_goods_sale_id": 2945219534915654, + "ods_hash": "5e190e96c9f454f3b51cab14ae9d500a", + "dwd_hash": "093b52359ef2a75230b798d066a97c09" + }, + { + "store_goods_sale_id": 2945219534932037, + "ods_hash": "2910c13250a931a11c12bcbf83b9aa91", + "dwd_hash": "5fc6206aa2fe7e5a812299c9d67e2836" + }, + { + "store_goods_sale_id": 2945219534932038, + "ods_hash": "38b6314875ef051f10a4b5395e11ae30", + "dwd_hash": "c9dbe64959edce5fbaef3afa22acc715" + }, + { + "store_goods_sale_id": 2945223818086469, + "ods_hash": "f83c65155d29c8869ed11a21c8558f21", + "dwd_hash": "817f2d7f341e483f1822349a883ef514" + }, + { + "store_goods_sale_id": 2945223818102853, + "ods_hash": "aa99465f0e5c257321118459b5938901", + "dwd_hash": "83eb07cd20c86c396b9a798308d44236" + }, + { + "store_goods_sale_id": 2945224216397893, + "ods_hash": "2e496875ed2fa90827b57bcfda228c68", + "dwd_hash": "b4b440ad60eec97bf0a1e5a282130a5d" + }, + { + "store_goods_sale_id": 2945266000218181, + "ods_hash": "ff271ac6163703256829b32efa5e9a8c", + "dwd_hash": "55fab48e2b5eb312648bbc0e1c29c7af" + }, + { + "store_goods_sale_id": 2945266000234565, + "ods_hash": "6ba62ff9ad80cb81a1726387ff39f4e9", + "dwd_hash": "669b05bdf3ccef4f99fd8136e3fec553" + }, + { + "store_goods_sale_id": 2945282191984581, + "ods_hash": "c6d834ea0a8af93389f6108edd28ece7", + "dwd_hash": "8224616bfff86d9bd207e95c8b5ce036" + }, + { + "store_goods_sale_id": 2945295731411077, + "ods_hash": "fd3871fa8f5ae3235bcc7eaeca8ed0bd", + "dwd_hash": "5b6f01de0f8dd0e7a008fbd57719eec1" + }, + { + "store_goods_sale_id": 2945295731411078, + "ods_hash": "727bf78335e0df9cab664e99855fe757", + "dwd_hash": "3dd4e57d56799985b3a67202e7fe75df" + }, + { + "store_goods_sale_id": 2945295731427461, + "ods_hash": "2d1fbe6706c2a243d8fe1d9c93dcaba3", + "dwd_hash": "3e5a58ee575c5596b338c1b957b97ab9" + }, + { + "store_goods_sale_id": 2945297080682501, + "ods_hash": "4eec6d20cbe8c0485298f0b924bea38a", + "dwd_hash": "ed3ac9e3c526fe162df3b08fdcdfb230" + }, + { + "store_goods_sale_id": 2945297080698885, + "ods_hash": "d3ece252a5133a2a192cbe14f756bba0", + "dwd_hash": "26421a93ed721a4a0f748b59256d7578" + }, + { + "store_goods_sale_id": 2945308565293125, + "ods_hash": "fde49f42a175a9ea8762d572406b6525", + "dwd_hash": "93dee718b28d6a75985e996a077777fb" + }, + { + "store_goods_sale_id": 2945308565309509, + "ods_hash": "18549e79de342cac5d6a5d6699c6ab4e", + "dwd_hash": "d3e8e2699feb9cb07cee4771297fce58" + }, + { + "store_goods_sale_id": 2945370019776645, + "ods_hash": "ef18e6b629fbb5b6e86cd8886f400574", + "dwd_hash": "682e62c59b3b5078946798527a78764b" + }, + { + "store_goods_sale_id": 2945415970097285, + "ods_hash": "d2c782da065ab20f482db0e25ea8a1c1", + "dwd_hash": "cf9e384a29bfaefd2d8bf8546cbc90ec" + }, + { + "store_goods_sale_id": 2945415970113669, + "ods_hash": "808b7b810d3e3ddcd1538453dee543a7", + "dwd_hash": "8b53fbd736dc1050ec9f6072a85a0632" + }, + { + "store_goods_sale_id": 2945415970113670, + "ods_hash": "277f2ab9f00130837fb0e05a6478e8b6", + "dwd_hash": "fe6e9e6c520b0395abfa3cb6275020fe" + }, + { + "store_goods_sale_id": 2945415970130053, + "ods_hash": "17fd3eadd2e80fbf776e9288d4d6417d", + "dwd_hash": "e5707b39dded041b02238620cf00537c" + }, + { + "store_goods_sale_id": 2945415970146437, + "ods_hash": "1664397eaa5d074758dd78f3fb9422eb", + "dwd_hash": "64c67ecd7d6d52ef216636f5d0326195" + }, + { + "store_goods_sale_id": 2945415970146438, + "ods_hash": "3be6d6d70ed60c8ed3350679431dfde4", + "dwd_hash": "9e52436606bfe5bb6cc39adfb1d1ab1f" + }, + { + "store_goods_sale_id": 2945415970162821, + "ods_hash": "d488d38ae1849339c74373b1085faffd", + "dwd_hash": "081ac6074602b53707df3c28f6447372" + }, + { + "store_goods_sale_id": 2945415970162822, + "ods_hash": "ef82f853b16708ef10d6ffe5c5adf82d", + "dwd_hash": "fc19e465fe16065cb40e65ccbd95ed58" + }, + { + "store_goods_sale_id": 2945415970179205, + "ods_hash": "63f810f927c7da5ad67a9aa9264829c7", + "dwd_hash": "0507770aa44e9e0f9a4dbbb967ea52c4" + }, + { + "store_goods_sale_id": 2945415970195589, + "ods_hash": "43db153e25308718fbec18e90a4177d9", + "dwd_hash": "d31c217c7223722134a118573a034eb7" + }, + { + "store_goods_sale_id": 2945415970195590, + "ods_hash": "c29d9bf3b675cfd0951b6eed9670fb93", + "dwd_hash": "8e51b3ed05a23617c2d932272916e97c" + }, + { + "store_goods_sale_id": 2945415970211973, + "ods_hash": "bf0773e006df6c1b67865cbaa6a752e5", + "dwd_hash": "f8a0cdf52b78611eaa23960f3bad78c1" + }, + { + "store_goods_sale_id": 2945465519409157, + "ods_hash": "ad7b32b5ede80c19d755d23e1b13737f", + "dwd_hash": "262ee24c19e6db2944d4d2a4b6ffe073" + }, + { + "store_goods_sale_id": 2945530363185157, + "ods_hash": "eaf2f8ae4435d134eaa3d2c9f42331eb", + "dwd_hash": "79d1dbd8851939a51eef7a960b00e93d" + }, + { + "store_goods_sale_id": 2945530363185158, + "ods_hash": "2eccc4298f645e121e44ba11075fea1c", + "dwd_hash": "28d96c98e38bbd3e60c6343edd1000d5" + }, + { + "store_goods_sale_id": 2945530363201541, + "ods_hash": "521c6dc5e14c7570f579181d199b7b43", + "dwd_hash": "b2d839411e3789ff256fb76d5b801a83" + }, + { + "store_goods_sale_id": 2945530363217925, + "ods_hash": "91f99d792bb2079f6e340893cd2cdd56", + "dwd_hash": "2aad6fd1cb5882fe2422ebf02f9f7eca" + }, + { + "store_goods_sale_id": 2945530363217926, + "ods_hash": "578296527c5d28aadc194aaeff445b5f", + "dwd_hash": "9d2b1689cc3d86bd119b792c301be14a" + }, + { + "store_goods_sale_id": 2945530363234309, + "ods_hash": "aef392f0eaff234220f251d7becef084", + "dwd_hash": "2540a252e1af220d81d844c7a5d7775f" + }, + { + "store_goods_sale_id": 2945530363234310, + "ods_hash": "6b428fb7818723681d509b7e7829002a", + "dwd_hash": "f83c5c89b72d2bff68ce2ad4355e9c95" + }, + { + "store_goods_sale_id": 2945530363234311, + "ods_hash": "020ea40cc4ac81d3a340a9967463c1b6", + "dwd_hash": "61adabb1b54e58c5e758acdbc7b900fd" + }, + { + "store_goods_sale_id": 2945530363250693, + "ods_hash": "64116c5afd277ea30632e57003253892", + "dwd_hash": "c66d0bacac1085eb5f9688fa058fd80b" + }, + { + "store_goods_sale_id": 2945530363250694, + "ods_hash": "f51b9f929f71b009b23580e53834599e", + "dwd_hash": "b44f5e43b5c4e4ec47652d9ea387fb3b" + }, + { + "store_goods_sale_id": 2945530363267077, + "ods_hash": "193a41aca0271f4db7790800f3227855", + "dwd_hash": "1615f76ef76c678054290e3a15cebc9f" + }, + { + "store_goods_sale_id": 2945530363267078, + "ods_hash": "5d25eef8125e314d1441e3189bb9684e", + "dwd_hash": "6daa5873f6990fd52a185d000f6f7b76" + }, + { + "store_goods_sale_id": 2945530363283461, + "ods_hash": "7290b5bb1b0d368f736ebd1e3a246fbe", + "dwd_hash": "d36a2350189eaf35718018de8f19640c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ], + "mismatch": 884, + "mismatch_samples": [ + { + "assistant_service_id": 2945219533834309, + "ods_hash": "07925820f75b0a810943241624288d57", + "dwd_hash": "714303e7cc8fc19e5e7a0d571eeb8e2f" + }, + { + "assistant_service_id": 2945219534129221, + "ods_hash": "4b97a700ab983a532e633ebc403a95bd", + "dwd_hash": "4b795b322e1a62443e97d643deed808c" + }, + { + "assistant_service_id": 2945238241101765, + "ods_hash": "be2968f6b6597b82b7d8e884a00e2453", + "dwd_hash": "8690e441c2787cf6bb72a196c9a8c1f2" + }, + { + "assistant_service_id": 2945303654697029, + "ods_hash": "f28a48d485812310c64dd3e1c567a872", + "dwd_hash": "32d4e0826b294437413bcc28269aaeee" + }, + { + "assistant_service_id": 2945303655008325, + "ods_hash": "b60273d30b9919f4612663dc6fa4a429", + "dwd_hash": "2e67f30551c07c471099ce21b6249f3c" + }, + { + "assistant_service_id": 2945303655303237, + "ods_hash": "55895dbf0cae0000f9a92be2912e37b3", + "dwd_hash": "dfe52967354bed2ed5e972d0056cde53" + }, + { + "assistant_service_id": 2945303655680069, + "ods_hash": "eec91207be62f23a71df01a95857c728", + "dwd_hash": "6bfd47b8348671e394e116885ecf8dd3" + }, + { + "assistant_service_id": 2945355735320645, + "ods_hash": "6aae2a4571474979ebf7772479593159", + "dwd_hash": "899a53f17f0334677c9e03e91f8c6e44" + }, + { + "assistant_service_id": 2945412155934853, + "ods_hash": "101a69964bda9b6e87ddd644597929e8", + "dwd_hash": "b580d4bf05753f62b55a2787d3cd62b7" + }, + { + "assistant_service_id": 2945415969343621, + "ods_hash": "d763088de5b6195955c6d8aa37979a0e", + "dwd_hash": "560399497858d8ca2c416959d6c0ff33" + }, + { + "assistant_service_id": 2945415969654917, + "ods_hash": "b57744531619ba1e2bf9c2fe1fe6a3f8", + "dwd_hash": "9103ddd1f08fd9b69e147da75f5c8d10" + }, + { + "assistant_service_id": 2945530360645637, + "ods_hash": "168a5466f3d9ab9c3e400bf5f020091b", + "dwd_hash": "8262fd019f07c4bbd220907e73d0da16" + }, + { + "assistant_service_id": 2945530360940549, + "ods_hash": "0ff4428be5956bfe36b6bcfa16cde38c", + "dwd_hash": "880b5aa85f8860812ab2a2e988c1ec4e" + }, + { + "assistant_service_id": 2945530361235461, + "ods_hash": "5a6fce5c0ea2df5ac1eb8107552f8d27", + "dwd_hash": "3417c11ae1694409319c9e90f30a950a" + }, + { + "assistant_service_id": 2945530361530373, + "ods_hash": "d056944fa840ecfa2182442a622b3fb4", + "dwd_hash": "1aae19cd5ff0b1ab20d4179c8e14f310" + }, + { + "assistant_service_id": 2945530361825285, + "ods_hash": "3a0fad7a48d1f96fb98152d337c50549", + "dwd_hash": "83c60118be29029a374245721cd22aab" + }, + { + "assistant_service_id": 2945530362120197, + "ods_hash": "3efe4fff3bd0cd3c1273c4d8f1521962", + "dwd_hash": "5ba93ff437dba36f9e6a76c308fd9f5d" + }, + { + "assistant_service_id": 2945530362415109, + "ods_hash": "2771107cbaac2d0a5972fe799005ab7d", + "dwd_hash": "455e972e0b8e0e1a5d62ae5c4dad82c9" + }, + { + "assistant_service_id": 2945530362710021, + "ods_hash": "a226464ef81c7e53621fa5ab08719b99", + "dwd_hash": "a76065534bab8a0bb846cda1c042aded" + }, + { + "assistant_service_id": 2945604899047429, + "ods_hash": "faf1ca8b78121a2998b5774ee6194c85", + "dwd_hash": "45ee4551175df1927e25aa5c8b10d0af" + }, + { + "assistant_service_id": 2946222559741957, + "ods_hash": "5d8513bae618ba444bbba6151157b5a2", + "dwd_hash": "748099531c390386a9e040d73439badf" + }, + { + "assistant_service_id": 2946349092423685, + "ods_hash": "f389e178135b7cf717bdb26631e2a551", + "dwd_hash": "e354c8a46db4f0a2f01ab7eb583ebed3" + }, + { + "assistant_service_id": 2946467797501893, + "ods_hash": "ddc0572b7849c118d2f59c4bc47077a1", + "dwd_hash": "0486eb4c7b1d5fb4655713369c47a1b5" + }, + { + "assistant_service_id": 2946467797829573, + "ods_hash": "609751db77110e08cf0856eea743f7a6", + "dwd_hash": "247789373a8150a7b70862257262d4b5" + }, + { + "assistant_service_id": 2946543960328261, + "ods_hash": "37687f43d4e80238ed9e17e4fb640019", + "dwd_hash": "f9a3f5a982baa6fe63e5dac77ae57d47" + }, + { + "assistant_service_id": 2946589255075845, + "ods_hash": "00e2102af2a3bce8cfaf54c6698c0963", + "dwd_hash": "8344041cf6732040a1d5ae65da0bb883" + }, + { + "assistant_service_id": 2946589255387141, + "ods_hash": "49455b89a81a0f87ed618d39f9876c77", + "dwd_hash": "5acf9d0b8f4be94184d5622911bf3a0a" + }, + { + "assistant_service_id": 2946626668759109, + "ods_hash": "a2a3f189df2da41b423f8d4e33e8533f", + "dwd_hash": "0f41a70f92a6f929cf78e1cc61f56296" + }, + { + "assistant_service_id": 2946627706013637, + "ods_hash": "10782852aba4de382ccdea9e5e76332f", + "dwd_hash": "5141f75d57997a47b3e1873e525e7cf2" + }, + { + "assistant_service_id": 2946627706341317, + "ods_hash": "12569687187b86afd680a2815119b693", + "dwd_hash": "0a0e203f810f5d95a2f01cceb4ac0fe6" + }, + { + "assistant_service_id": 2946627706652613, + "ods_hash": "c65096851f3bc50de58796e8173ef720", + "dwd_hash": "16f189ad92949f5297ee17b2de5819fd" + }, + { + "assistant_service_id": 2946627706963909, + "ods_hash": "38cf9d3467428fabff1b3be40a96fcc5", + "dwd_hash": "5058e11ba4bacfdd32f916e3531e04d6" + }, + { + "assistant_service_id": 2946647859169221, + "ods_hash": "68e45e6298b3c464357a7b0c7816303b", + "dwd_hash": "88e0cc88da1aeeef89189466b6db2552" + }, + { + "assistant_service_id": 2946647859627973, + "ods_hash": "b2236ecbed5627ed58b24c3c40a1e1c1", + "dwd_hash": "fe2be825299bc6ab8d65bbf72573086c" + }, + { + "assistant_service_id": 2946660130637957, + "ods_hash": "b68ab33c4364055808e918f9f1264d1d", + "dwd_hash": "95f0382f04be8ad93aaba2692ad575cb" + }, + { + "assistant_service_id": 2946710503245829, + "ods_hash": "9d88acccd4c0ea861f92ef7b19a91265", + "dwd_hash": "eb1a2130387c52bc3e2f9805d0bab492" + }, + { + "assistant_service_id": 2946711000565701, + "ods_hash": "fa1eec91f06a95247a98c82ac37eb2ef", + "dwd_hash": "a8841d931662061615ef0863ba54dfac" + }, + { + "assistant_service_id": 2946711833348165, + "ods_hash": "8fa6d9705430615132e0cc1fdb2b6d32", + "dwd_hash": "ddf8713a66f96560defe8018b7ca1f51" + }, + { + "assistant_service_id": 2947191166011333, + "ods_hash": "7c81d43eb7cde1fe908d08e3199110ab", + "dwd_hash": "ee0e6a02d4e5b6d3821c7de5fb582ec3" + }, + { + "assistant_service_id": 2947191166322629, + "ods_hash": "217caeed2e562d1d2523a2289eb84c97", + "dwd_hash": "4c8b0940cf321b714c483747b29b6292" + }, + { + "assistant_service_id": 2947191166650309, + "ods_hash": "cce8a379937cb1c12e9059d4374e6bd9", + "dwd_hash": "7f9e73151ebc62ddb854440678d7b8d4" + }, + { + "assistant_service_id": 2947284155811973, + "ods_hash": "ad7ebdb6090899a5c075c8ff70ac9edf", + "dwd_hash": "3103d6c13342e7f420478c15a3e5a81d" + }, + { + "assistant_service_id": 2947284156139653, + "ods_hash": "3bd167f4cd1e79feb6a6613006c50b07", + "dwd_hash": "c13a943040b208fa41e4819f4cd8d5d8" + }, + { + "assistant_service_id": 2947284156450949, + "ods_hash": "29d0fd38d551fc27546bcc5d4f3322c8", + "dwd_hash": "45245e6650518aee3860712c1db03ad8" + }, + { + "assistant_service_id": 2947284156762245, + "ods_hash": "177dbf2351903fa80c2357d9f763bb88", + "dwd_hash": "d60a5f2973ddfb5442ff0ae520b8cb82" + }, + { + "assistant_service_id": 2947686255562501, + "ods_hash": "60229de3864e1e681d37686c725b31f5", + "dwd_hash": "c06a62c823963d76586b903b7ee2e576" + }, + { + "assistant_service_id": 2947731000036933, + "ods_hash": "43f1e4ccbdf306b60a70bb5ec9bc8003", + "dwd_hash": "4f595aed5b9c6a8d1608d74047e678ca" + }, + { + "assistant_service_id": 2947806110797509, + "ods_hash": "70c71c139de9291659b5303ae1e9a818", + "dwd_hash": "f5831b2c53d17dbc736de424fe594de1" + }, + { + "assistant_service_id": 2947852922539653, + "ods_hash": "d21b703da2e69f35c53a95d106670750", + "dwd_hash": "754af9238e9a2dba758e700dfc26ec5e" + }, + { + "assistant_service_id": 2947853797494533, + "ods_hash": "acc32be4f2fc64e02ea8c59f7587e1d0", + "dwd_hash": "5149f1dadd2a0467c1320f0514ea1119" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ], + "mismatch": 2838, + "mismatch_samples": [ + { + "redemption_id": 2945209281808517, + "ods_hash": "a0a17d1d42a4dfd97e0b1db83397042e", + "dwd_hash": "20aca3e1ed406f4c62d8880c7b897240" + }, + { + "redemption_id": 2945223818168389, + "ods_hash": "8064cc6b325142f7da0bb70b983324ae", + "dwd_hash": "c8ca36903e2e3e248008ef86b759e984" + }, + { + "redemption_id": 2945244232206277, + "ods_hash": "3ac03bc028669033f7a71fe88aa3d516", + "dwd_hash": "5e14b7ca4504f1de8817fe05d6af45ec" + }, + { + "redemption_id": 2945250915108805, + "ods_hash": "26fd935c2b1fd4658b25170fccff55d6", + "dwd_hash": "37c0f2a7a1f8592c034299777b4139c7" + }, + { + "redemption_id": 2945266000300101, + "ods_hash": "9e4d9554d3e9d1af6c87c8a5435d1f63", + "dwd_hash": "e52d211bc01fa260f85fb96a4465d058" + }, + { + "redemption_id": 2945296564750405, + "ods_hash": "db7e43304d6334c2c43b9e5d15924dc4", + "dwd_hash": "e1afe4916fedda219ff4794667e3c2ee" + }, + { + "redemption_id": 2945296564750406, + "ods_hash": "197496f2e36d472f778323421b08e1f0", + "dwd_hash": "aa97446609c01d2efb35726e3bd8c6f9" + }, + { + "redemption_id": 2945296564750407, + "ods_hash": "24944a7f1689ca96f1f0bcd50404ca2c", + "dwd_hash": "b8b92fe204a906b779565aabc840eaa3" + }, + { + "redemption_id": 2945297080764421, + "ods_hash": "a67a9867e4515debf63a6169d94310cf", + "dwd_hash": "3e5eda2035aa7a2b63e22e257a34493d" + }, + { + "redemption_id": 2945297080764422, + "ods_hash": "585e84eeba78bdca01115de2821b2f3a", + "dwd_hash": "38277058bdc5fa3abed013f911900446" + }, + { + "redemption_id": 2945297080764423, + "ods_hash": "4f29bb25ac86f24712b81b4ccc97b772", + "dwd_hash": "6a744e004b755106902adde4344cb562" + }, + { + "redemption_id": 2945297080764424, + "ods_hash": "577eb319687eb3d6bb806376ec6a9ddf", + "dwd_hash": "02a8de8373746dd27974355c53d55473" + }, + { + "redemption_id": 2945327284488325, + "ods_hash": "75d61950f15a20c0cd4bb1251bdd5065", + "dwd_hash": "16d40415c645de948fb313a4e4ce5880" + }, + { + "redemption_id": 2945328508700741, + "ods_hash": "46c0aa4af2b8a1dfabbc9ffffe6be29c", + "dwd_hash": "7f9f00024a23f5c85a41c98232fad1f5" + }, + { + "redemption_id": 2945328508700742, + "ods_hash": "2bd08c78bb61d324d11545f5e3834249", + "dwd_hash": "42d06a1df0a17ffb64c35a85e110e63f" + }, + { + "redemption_id": 2945328508700743, + "ods_hash": "5eef62aae18fb0078042591b104c4909", + "dwd_hash": "3c6850f7acf2fc6a48b2fd144fb963ac" + }, + { + "redemption_id": 2945328508700744, + "ods_hash": "045f88012a6beb79d77aba59c223e61a", + "dwd_hash": "b583f7dfe6c502fbca075be5dd225ecb" + }, + { + "redemption_id": 2945343829329925, + "ods_hash": "0224e73f677915f8cbaa54b01dc680d6", + "dwd_hash": "6614c0aecc6810ff226a5eac3e83c6e7" + }, + { + "redemption_id": 2945871138490373, + "ods_hash": "701cac7ef12099f23dc7dd9be63fcdfc", + "dwd_hash": "c6f651927311819e06faa0279f37d9bf" + }, + { + "redemption_id": 2945876560742341, + "ods_hash": "13354ae8ea044d3f08956d843d3f8ed6", + "dwd_hash": "2bfa33520407dce8db89a3df463094a2" + }, + { + "redemption_id": 2945876626737285, + "ods_hash": "110d925ad94e49ee08e457e62d2f0425", + "dwd_hash": "1000624003257e5458907c321d8c2f0f" + }, + { + "redemption_id": 2946023884425221, + "ods_hash": "4d031df7f017153892dc57bf4bdaa569", + "dwd_hash": "383dc584b46f6f5115891e31685cc53f" + }, + { + "redemption_id": 2946055145883589, + "ods_hash": "1b3c2ec0f1e9096f02d03e6ec451c66d", + "dwd_hash": "30b765ce2eafd07bcfb92b7a601ff98a" + }, + { + "redemption_id": 2946055145883590, + "ods_hash": "4b39b33fbc09fd87767ecfedcbdbbe86", + "dwd_hash": "a27e8ed06d38b8b7c66dfd2e770fdc6d" + }, + { + "redemption_id": 2946062771652741, + "ods_hash": "6cf4d821e75d75b0a6b61f60e8c5604d", + "dwd_hash": "425789116699c33e884b545a0569c5aa" + }, + { + "redemption_id": 2946081283311621, + "ods_hash": "b34dec210fcd5a86637d60cf77866038", + "dwd_hash": "638e87cd068b45a96d13b5f7a6865a70" + }, + { + "redemption_id": 2946086439995333, + "ods_hash": "c1fb689dbd273d132fd57825525741c1", + "dwd_hash": "caa97dd07cabbc6686599f1e23b9ca4c" + }, + { + "redemption_id": 2946118185977797, + "ods_hash": "704ba650bce0623127ad9e719d03bfdc", + "dwd_hash": "c414d04504673896ab1c753dbb8f4301" + }, + { + "redemption_id": 2946131746392197, + "ods_hash": "cc03e3c3f6389544364b05f62d90dc55", + "dwd_hash": "f7c11a87a8595861b21d1afb158449af" + }, + { + "redemption_id": 2946137103910853, + "ods_hash": "6d4e5029edc5dbb59cd2a6e7d18f50c1", + "dwd_hash": "79b5672a7881c05cdadb941885beb900" + }, + { + "redemption_id": 2946138050758597, + "ods_hash": "274d053d3ed817220c7a8c433cc1a9c8", + "dwd_hash": "0fb6a261a234acefc3fd96ef21da5e0f" + }, + { + "redemption_id": 2946138050758598, + "ods_hash": "cd28a0bd4c6187f35fea10640a279477", + "dwd_hash": "e1ea02b2f6fafe724ffcd14e332ac437" + }, + { + "redemption_id": 2946138833717189, + "ods_hash": "2d7c8abf42ef538ef0ada58062aae2b3", + "dwd_hash": "de6578aa832451c97153baefed2dace1" + }, + { + "redemption_id": 2946138833717190, + "ods_hash": "a0de79b6982460cbac752e0e8b4066e9", + "dwd_hash": "95509b8f0ca1e6ebb57a913325ce0976" + }, + { + "redemption_id": 2946140343076933, + "ods_hash": "86141e4adadc9f857e75363721a8112f", + "dwd_hash": "cb5f760a1cb5073a6397a3af8fff12cb" + }, + { + "redemption_id": 2946140343076934, + "ods_hash": "9e1c934abc959a41e141c7a12a6a98dc", + "dwd_hash": "e59296d89377d1591d453311824f8682" + }, + { + "redemption_id": 2946147440773061, + "ods_hash": "1a296cb2e185b9b2eebf53a8e770a3e5", + "dwd_hash": "279a07858641db87b3ec9cc3c2f31673" + }, + { + "redemption_id": 2946164124485701, + "ods_hash": "cb1ac0e2479df1aa41704936caa1f66a", + "dwd_hash": "449e7ffe10633d104e5e2829b9154851" + }, + { + "redemption_id": 2946173960423493, + "ods_hash": "c544ec2ab6380fe5b5eebb9e0a51eb50", + "dwd_hash": "06265040692d6688d34ebd1551b0947d" + }, + { + "redemption_id": 2946177074546693, + "ods_hash": "c890d1359dca3a0a2d0afa90f5deff3c", + "dwd_hash": "c3c0b0280fe7eca32b660f8fabce4159" + }, + { + "redemption_id": 2946179149989957, + "ods_hash": "cce60b71e829fb875ab8b8c2a79f72d2", + "dwd_hash": "e2bf19c034f705a9368c09556b8a78be" + }, + { + "redemption_id": 2946183647610821, + "ods_hash": "ff8c895a72fa23c612b7bb7f4738973c", + "dwd_hash": "1ccc7716dbb5ebd044ad7863f4948f24" + }, + { + "redemption_id": 2946183647610822, + "ods_hash": "7a2ec330779a5e33744427fe0107944e", + "dwd_hash": "565f3b1822a22c832c0e3701aea30ee6" + }, + { + "redemption_id": 2946192224241605, + "ods_hash": "069e0110159d2775cbf74287fdda51fa", + "dwd_hash": "79582e0464523f091a5817ca45c53456" + }, + { + "redemption_id": 2946192288909381, + "ods_hash": "5cc3f50fbe28b5ecadf4c1401e164e58", + "dwd_hash": "70d03d71ca7d466df0bf02a3b36d4928" + }, + { + "redemption_id": 2946197298301061, + "ods_hash": "a0e5d8ef8239d10fd4a3dabe68fb25a8", + "dwd_hash": "d25d3042aeff675a27df2d14edc8d6b8" + }, + { + "redemption_id": 2946201068816389, + "ods_hash": "f536f54409ce0cdbc80c32769202fb0b", + "dwd_hash": "c89eb4039dd930d40f8395e288d86dbd" + }, + { + "redemption_id": 2946201150932933, + "ods_hash": "c5c1362ede2aa10cc679da50c34f5619", + "dwd_hash": "52c7bcee123469dae9547a8ed8153e12" + }, + { + "redemption_id": 2946201201346629, + "ods_hash": "5c8a625b58cdead334b3088a023514fc", + "dwd_hash": "66a8830e587e343ca602b5839973905a" + }, + { + "redemption_id": 2946202334758981, + "ods_hash": "6569ae56fcea8f63c8be8a1dba45b270", + "dwd_hash": "9bfe93c632016401d96a7b0bfdf5a5a0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ], + "mismatch": 2843, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2945225726036101, + "ods_hash": "1f5881dafc10021fdc9577274ea4f775", + "dwd_hash": "b1480dfd99e76b04e3a6e0fd769cde42" + }, + { + "platform_coupon_redemption_id": 2945238682650693, + "ods_hash": "0fad5594ecbee5e6344076118323b151", + "dwd_hash": "b45532b480f9f8b6bd711586200fe7b8" + }, + { + "platform_coupon_redemption_id": 2945249283967045, + "ods_hash": "8df2657a0954a78866b0a646653870f0", + "dwd_hash": "2d9ce26269cba948b67e3f520f2449c0" + }, + { + "platform_coupon_redemption_id": 2945268112017541, + "ods_hash": "5a2281ef041461061168d1adc99a090a", + "dwd_hash": "d315860de6f9c659fe9fd403a7ffd083" + }, + { + "platform_coupon_redemption_id": 2945298505140293, + "ods_hash": "c1266ac7d089aa775388cd5f6edc81b4", + "dwd_hash": "c7d67ed2771a38a4ac96150710a3e403" + }, + { + "platform_coupon_redemption_id": 2945799155042373, + "ods_hash": "3f20208f58b1619742d6611e36ff8c3c", + "dwd_hash": "9bec719c4834352809fca93594cae014" + }, + { + "platform_coupon_redemption_id": 2945799674185669, + "ods_hash": "480ab17c5927a1c0ae73bb432b9fc8ba", + "dwd_hash": "db75eb95b786eb22e22f8538091a3802" + }, + { + "platform_coupon_redemption_id": 2945802920167557, + "ods_hash": "cbc0c5688b7ec8592a76201f18b0b703", + "dwd_hash": "7b651aa86a6ef5d16140885666563656" + }, + { + "platform_coupon_redemption_id": 2945905197090949, + "ods_hash": "536df6243e4fc30fa652f016a41b4364", + "dwd_hash": "237eb1be209d3b941b15610974941188" + }, + { + "platform_coupon_redemption_id": 2945935775893445, + "ods_hash": "eb6adcc463d508406cf73baa4089049c", + "dwd_hash": "d1cd33f9babed50f16a9cc09415cda55" + }, + { + "platform_coupon_redemption_id": 2945959626115205, + "ods_hash": "3aca735d0175931bf49258fcb0c565bd", + "dwd_hash": "7c985c25e7caf219e816a3b02efc373f" + }, + { + "platform_coupon_redemption_id": 2945995948033989, + "ods_hash": "d4ded644399a7be48fdd05b85632780b", + "dwd_hash": "0422841e322714c4628dc0562bcb41a9" + }, + { + "platform_coupon_redemption_id": 2946003425118277, + "ods_hash": "e46712779f4fca40c82e0efa80d0bda0", + "dwd_hash": "7662f5a6e1ecc3bd7c6ba455a1368f7b" + }, + { + "platform_coupon_redemption_id": 2946015233656773, + "ods_hash": "4e37782464f85a78b3881a3d762a7235", + "dwd_hash": "0eea366a4fa80a987189629108fc9bbe" + }, + { + "platform_coupon_redemption_id": 2946016501417925, + "ods_hash": "3523c2ad9c69674bdd91d33ac20a6804", + "dwd_hash": "bca27b1cb99be6326baa7034f7162cf4" + }, + { + "platform_coupon_redemption_id": 2946020254615557, + "ods_hash": "d6ed2c82ed7e89066a44873c01e836ad", + "dwd_hash": "4eb23e9815e6d8abc06d2847b625cad7" + }, + { + "platform_coupon_redemption_id": 2946020346202117, + "ods_hash": "82482a7b9976195972462dc8cd085f77", + "dwd_hash": "ddc50430fa6d73c1e4dd6c6150c27300" + }, + { + "platform_coupon_redemption_id": 2946026859628485, + "ods_hash": "3eb068a4246ac350081860df25da49a7", + "dwd_hash": "4304ba06c996daf62e25678092460c42" + }, + { + "platform_coupon_redemption_id": 2946052811491461, + "ods_hash": "4f2c37cbb5cba14a94be021aeadc2cd9", + "dwd_hash": "7f01ea892ee5dbd93027a8969bb1919c" + }, + { + "platform_coupon_redemption_id": 2946052952967301, + "ods_hash": "15e440bc07797b5d2a8dd7cf1697d143", + "dwd_hash": "a2bdc2bfd4b47dda3cdbd9aef3cd76d8" + }, + { + "platform_coupon_redemption_id": 2946059208689669, + "ods_hash": "c6b03b9321522257f8833d447b5fafad", + "dwd_hash": "b93556d594d662625cd5ebd0f2a48f20" + }, + { + "platform_coupon_redemption_id": 2946065496115141, + "ods_hash": "332e3eb92106098e2e5d06b7a17dbaf7", + "dwd_hash": "e28c1d84d207727acbbf1ecfea4c2c97" + }, + { + "platform_coupon_redemption_id": 2946066163910661, + "ods_hash": "a277d3c31cefde4eb8aa73402f6950cd", + "dwd_hash": "f03d676e4bb499820fd0c3c7dd77d1ed" + }, + { + "platform_coupon_redemption_id": 2946066285889477, + "ods_hash": "3c112351a15b191af124f9f7716204f9", + "dwd_hash": "e728464d3d4cfdc189b7603bda2540e0" + }, + { + "platform_coupon_redemption_id": 2946076810676165, + "ods_hash": "63e0caaf6a5e2d603e5fcad4de45324c", + "dwd_hash": "8a89d1541628657c7905c00b0964ad8b" + }, + { + "platform_coupon_redemption_id": 2946078850418821, + "ods_hash": "aea9c4ada38bcf0dcb008b04629c601a", + "dwd_hash": "deeb2264dc807bb8be7dcc3266f18689" + }, + { + "platform_coupon_redemption_id": 2946079880300677, + "ods_hash": "1364cb49df2b7b78aa51bf1ecf6a9f41", + "dwd_hash": "78336d0a143053a3f426946bc646dd88" + }, + { + "platform_coupon_redemption_id": 2946081212352645, + "ods_hash": "7e3117cef529863363ebe123131c5393", + "dwd_hash": "30a346b015a195160ce8a60ff1b68e06" + }, + { + "platform_coupon_redemption_id": 2946084582377477, + "ods_hash": "8063c618aeb1b4d8c5f282166e949092", + "dwd_hash": "6f5852da9cf7659695913e01c395540c" + }, + { + "platform_coupon_redemption_id": 2946088268105733, + "ods_hash": "59a8aa0921f78c1d163c5a1ddd79896e", + "dwd_hash": "a450eb126c4e72ee5d96eca31a534ff3" + }, + { + "platform_coupon_redemption_id": 2946102690449349, + "ods_hash": "c3240895f0a93d1ad0efd8c1453c6d0c", + "dwd_hash": "5cfdc31700a74780b85c5c872d4f7e38" + }, + { + "platform_coupon_redemption_id": 2946105090967557, + "ods_hash": "9662fa3e84a853f05034d02492b6dfbd", + "dwd_hash": "2aeb118dbc482fd0992d767c661f38a2" + }, + { + "platform_coupon_redemption_id": 2946108414101445, + "ods_hash": "3544e2ebba51da45b832ff25bfdd0ee3", + "dwd_hash": "c6966a1aab22dbdf1ad2fbde8cc3ac5d" + }, + { + "platform_coupon_redemption_id": 2946117609375749, + "ods_hash": "0304b92e8209617bc09eb13ec5629cf1", + "dwd_hash": "4ace6dba0f668075061322d6e8486468" + }, + { + "platform_coupon_redemption_id": 2946120458913925, + "ods_hash": "9bef39e1775daff15f079d35d2fd4ef3", + "dwd_hash": "dd00f5e186cc786c59ced60cdba0e557" + }, + { + "platform_coupon_redemption_id": 2946131632752709, + "ods_hash": "be5592a7565d25f2a3fa17e75e7ee2b4", + "dwd_hash": "d036d7eea8aeefdf925c5f10119cad10" + }, + { + "platform_coupon_redemption_id": 2946132564363333, + "ods_hash": "8f7a375ca8d79e59b6075986fba57d6c", + "dwd_hash": "7e48cb28f6bd17df98dfbf78233616e4" + }, + { + "platform_coupon_redemption_id": 2946132785301637, + "ods_hash": "e0624da0e59b78be286dcfa4145ea403", + "dwd_hash": "d1ba0360af9bc3a53bf62c550efd2fd8" + }, + { + "platform_coupon_redemption_id": 2946139909834693, + "ods_hash": "e014c095d7eb6393ad92717632c9def7", + "dwd_hash": "5fbe8e8d80de4820c9efc3fcd63bdeb7" + }, + { + "platform_coupon_redemption_id": 2946141659170885, + "ods_hash": "68c48803e9f74971dc15af1a0f0dd6a5", + "dwd_hash": "f5b6304566f8c027ed3dba72b5c06155" + }, + { + "platform_coupon_redemption_id": 2946141762389957, + "ods_hash": "cbd1413906028b14a5bfc6cf5553643b", + "dwd_hash": "86d464222a30ff397d8f037a384cbda4" + }, + { + "platform_coupon_redemption_id": 2946143247009733, + "ods_hash": "bff392cc0ca1b69a127f85adf4b9c5df", + "dwd_hash": "f7af573d36677de8a83d346ed00d21ba" + }, + { + "platform_coupon_redemption_id": 2946147300591749, + "ods_hash": "b0b70bdd52af0d256538d3c6958e1eca", + "dwd_hash": "315fceded52f896a7377c0d06ce4f64c" + }, + { + "platform_coupon_redemption_id": 2946147960522821, + "ods_hash": "65d5ff48e2fcfa5044805732b8b38a47", + "dwd_hash": "7ed223ddd15eba2e6e64dc18953544f0" + }, + { + "platform_coupon_redemption_id": 2946150615254981, + "ods_hash": "3fbceb919e22b3fbc90b49217a888b01", + "dwd_hash": "a167e9d0c06a7af3591d0705e3e97306" + }, + { + "platform_coupon_redemption_id": 2946160185591941, + "ods_hash": "6f67fe72c0f9090acc8a60b095129ed1", + "dwd_hash": "4d252bba7f04098cdfaa0741f15811a7" + }, + { + "platform_coupon_redemption_id": 2946165001439301, + "ods_hash": "26d59f767cb5e17e85232a2f08b1f1f9", + "dwd_hash": "13d94b2c71a9fbd7b6b1ce9b33a2d698" + }, + { + "platform_coupon_redemption_id": 2946168538761221, + "ods_hash": "93bcb35eb9116112141c8ce4da2095ba", + "dwd_hash": "8954d07c0a6a67ecee6660894d3ea27b" + }, + { + "platform_coupon_redemption_id": 2946173121824837, + "ods_hash": "35b70da1a40da1ae5ffd5750a6bb9eaa", + "dwd_hash": "be525d4db2695fa7acb148b6143128f7" + }, + { + "platform_coupon_redemption_id": 2946174131980357, + "ods_hash": "025a95bb9ad84014053ba1aafff153bd", + "dwd_hash": "5aad406ee70412b1ccc2bc10e14be669" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ], + "mismatch": 3999, + "mismatch_samples": [ + { + "payment_id": 2945209278646405, + "ods_hash": "474ad02c89af8701c692f75387e97548", + "dwd_hash": "eb0e92c591080501ae5cd5a846772b1d" + }, + { + "payment_id": 2945219528968261, + "ods_hash": "241efeda4b92a59e91e7aae399afa021", + "dwd_hash": "993aa22a3842ac93db8bb0645877ee94" + }, + { + "payment_id": 2945223814613061, + "ods_hash": "5071f6afb0d52137db01d074e13488c3", + "dwd_hash": "efa536e1b1e79489a11378c593222ac2" + }, + { + "payment_id": 2945224213252165, + "ods_hash": "41d0351e136220dbe88805972797a868", + "dwd_hash": "21d1f1ff16ebcfac993da148f914774b" + }, + { + "payment_id": 2945238234974149, + "ods_hash": "b4a89ea77e0a636a4f4c11fc4da85399", + "dwd_hash": "fef654521ea3ff8c659031c5943c02a6" + }, + { + "payment_id": 2945244229175237, + "ods_hash": "a436ef9aa0781714cf1f7b21a6ecc3b0", + "dwd_hash": "c9a08ae8abe74e5e40f2e08b0762222f" + }, + { + "payment_id": 2945250911897541, + "ods_hash": "221453b951556074618b750d61aea435", + "dwd_hash": "94c6e02d8ded55529145dbd379879c90" + }, + { + "payment_id": 2945265997416517, + "ods_hash": "b0a74e025128b93e2cde39d94f5eeb4a", + "dwd_hash": "1ad7795fa2646b232f1e094737c534bb" + }, + { + "payment_id": 2945282187593669, + "ods_hash": "8ab2e36eb34ce5c7b27855c4d46e6d5d", + "dwd_hash": "0514c107fc0194157c38db6d2446e489" + }, + { + "payment_id": 2945295728101509, + "ods_hash": "b3439c0a63296b5d631e0aa39b69eead", + "dwd_hash": "2e8a76d419a23debd9af778842eb93fc" + }, + { + "payment_id": 2945296561752133, + "ods_hash": "45b5f8f5c25010343a5009476fb4f89c", + "dwd_hash": "bb56d6c3cb1064e9294fcf36ae270eff" + }, + { + "payment_id": 2945297077487621, + "ods_hash": "c34a7725b925dd8b2fc73727ba385e22", + "dwd_hash": "def92c4a191169dae99ee23a7db21e6a" + }, + { + "payment_id": 2945300261996549, + "ods_hash": "f42f12d1b7d35ed0820ebdf6b03054e7", + "dwd_hash": "f94835c2dd3ef2d9a7386e0799c07762" + }, + { + "payment_id": 2945303651780677, + "ods_hash": "cd242a7a58f2bce85528dfdc537d0fbf", + "dwd_hash": "7aaac0eef737b7f104d411516011cfc5" + }, + { + "payment_id": 2945308562540613, + "ods_hash": "2d3dfe16d7cd3b42a1c0105c69e76cc6", + "dwd_hash": "4a7d81daa4ad4ec5d755f921a2a1fef8" + }, + { + "payment_id": 2945327281211525, + "ods_hash": "8868176563a42a782ef5194c5d1149c0", + "dwd_hash": "4e16c1f3e4223ca7fe02b3757c60fafb" + }, + { + "payment_id": 2945328504113221, + "ods_hash": "d3ca578a1c3b1b8652ccf2aea31b2e74", + "dwd_hash": "389aac78c632cacfb4ffe79647b145b6" + }, + { + "payment_id": 2945343825004549, + "ods_hash": "9649b0f70b45261238653424ee4bf559", + "dwd_hash": "0cfbadd7f2fd306ca1875f194cf8a6a4" + }, + { + "payment_id": 2945355731650629, + "ods_hash": "c90adbbe9c6ef6b185ad587545318d1a", + "dwd_hash": "451fc918dd53f5d95b48e06df02c075a" + }, + { + "payment_id": 2945370016761989, + "ods_hash": "f53c4c0a27ab1df0ecd7f77515e4162c", + "dwd_hash": "486d7f94cc204a63fb75b7fa346c48e3" + }, + { + "payment_id": 2945379785541765, + "ods_hash": "d83a356ee0c635a91c6f4f493841ad24", + "dwd_hash": "580822e1f83f0a3eefc942e3b8a19edd" + }, + { + "payment_id": 2945387229169605, + "ods_hash": "e5aeed850db295b64fbb71efac0fee39", + "dwd_hash": "9f0590a919fc7a0d21dad1e3d01c7b9b" + }, + { + "payment_id": 2945412151953541, + "ods_hash": "bc26a3506665ba4d4d8b59766ebb8493", + "dwd_hash": "f67ce07b432946b692488a1d55da756d" + }, + { + "payment_id": 2945415965427845, + "ods_hash": "5a80b5da600632cb15af732cac2c8c4a", + "dwd_hash": "9379e9047e3cc73546a2315359073c36" + }, + { + "payment_id": 2945462210758597, + "ods_hash": "e5541029461062eea55b8e19922e6007", + "dwd_hash": "6750d2f963b00ee60356dc14ed2d46ca" + }, + { + "payment_id": 2945465516296197, + "ods_hash": "117a5e987266a0c8cae5d8c382add0a7", + "dwd_hash": "67a9ffb198bf58e94ae43a64d2608f24" + }, + { + "payment_id": 2945466617333829, + "ods_hash": "5ae5529c702d74b1cf55aed3743d176f", + "dwd_hash": "6ed1ee675d83f4066fa15700b1563e4e" + }, + { + "payment_id": 2945530354812933, + "ods_hash": "787cd21b794135dc52e7d417f4ea07cf", + "dwd_hash": "013da9aa1999504b9653bbbe5f3c0d6c" + }, + { + "payment_id": 2945598743005253, + "ods_hash": "0b8bf9af2a18cc28bb16edb2d5297825", + "dwd_hash": "76512477280d8962ea672020ea246928" + }, + { + "payment_id": 2945604894017541, + "ods_hash": "88ea643916758406f0b3f1d85851f7cf", + "dwd_hash": "b01b1c2659a254901cce96cfd0b623a3" + }, + { + "payment_id": 2945870898186373, + "ods_hash": "fe5f1b9f4d741c8b7fe4a51e4183e05b", + "dwd_hash": "7ae4a640bc11694ee632fdcce266931c" + }, + { + "payment_id": 2945871135426565, + "ods_hash": "6b6d27124fc9d50f755dd3d9d66579be", + "dwd_hash": "b9c10746b25fd5bc37e516d33e810674" + }, + { + "payment_id": 2945876557629381, + "ods_hash": "2dd42944989a666aeed2afa6e8a04293", + "dwd_hash": "8d71830da5a548c544c3f2051b1365d0" + }, + { + "payment_id": 2945876623804549, + "ods_hash": "44b62fd651fe420c9659c598510e021d", + "dwd_hash": "abf1dc80bb1ec94c3e7e4ac7f74448a8" + }, + { + "payment_id": 2945894622824453, + "ods_hash": "485b5bd97f64e802e264ac7b3f3bf03f", + "dwd_hash": "489b9dd027cc887973d67cff044cf4c4" + }, + { + "payment_id": 2946018619017349, + "ods_hash": "e4af18ecabb2b3d762f41229d685bf62", + "dwd_hash": "ddc680ec31aeb99b7e90d2d7faf1a8da" + }, + { + "payment_id": 2946023881656325, + "ods_hash": "dd7a517311ae8ce3649cec3be114a36e", + "dwd_hash": "0d8e0b36bc70b00848a3e1696d0c342e" + }, + { + "payment_id": 2946052223567877, + "ods_hash": "efa50a7f38efdc210c30006abc9def06", + "dwd_hash": "ac6b91536db13c973fca01ec2a5092df" + }, + { + "payment_id": 2946055142754245, + "ods_hash": "399f0558fbefb56536b782c26c5fb58b", + "dwd_hash": "babd3486828401126c5489f750182b44" + }, + { + "payment_id": 2946062768588933, + "ods_hash": "8b0f222a601ff8396196827088f618df", + "dwd_hash": "82587f5bd16db8d840dc9516a25f002d" + }, + { + "payment_id": 2946081280591877, + "ods_hash": "f53ea9482a3e48fe0f6c31782eb07c63", + "dwd_hash": "c87c6b3bb9aad1007488140c0291e727" + }, + { + "payment_id": 2946086436571077, + "ods_hash": "584b568cc348807ecefb7ee7677280d1", + "dwd_hash": "9cc85f0b9159a60ef4b029e326d568b8" + }, + { + "payment_id": 2946104809441413, + "ods_hash": "5f438337204f2c06592eb785c51f5e9b", + "dwd_hash": "1ce147d69ed59ab56b491800fc3e3dd3" + }, + { + "payment_id": 2946118183110597, + "ods_hash": "9c39d5d0cacc2b22a737cdb6e79e5e46", + "dwd_hash": "a404dc2bb493425bf529a06e02cd20c4" + }, + { + "payment_id": 2946131743443077, + "ods_hash": "e250f5798d0b5b336af92dccea274fba", + "dwd_hash": "2e8751f41a20d25f929b08833c598f22" + }, + { + "payment_id": 2946137101043653, + "ods_hash": "e81bc80fefbe246b874605c7a15a175b", + "dwd_hash": "9975b939a2b89be7c043a25f5537d8de" + }, + { + "payment_id": 2946138046777285, + "ods_hash": "541242f5b86387d43bdeff743d66e624", + "dwd_hash": "cced4820cb485db169c5eae3285ef9ae" + }, + { + "payment_id": 2946138830456773, + "ods_hash": "e33631bd2bd2e1b68208e3066813dac5", + "dwd_hash": "2e42cb0e60e7c87ce4e9abf69580d01d" + }, + { + "payment_id": 2946140340111429, + "ods_hash": "a5277745642c974324365aadef589b2f", + "dwd_hash": "b5e90a2ba11565fd73bdc575c38ea91f" + }, + { + "payment_id": 2946147437840325, + "ods_hash": "97c426138b15855336ae062ea4df176e", + "dwd_hash": "d5aa3440f87eef7a68a3158049faf5a2" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ], + "mismatch": 17, + "mismatch_samples": [ + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + }, + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23619, + "total_mismatch": 54463 + }, + "generated_at": "2026-01-31T23:17:03.698376+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10200, + "records_with_pk": 10200, + "missing": 4, + "missing_samples": [ + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12029, + "records_with_pk": 12029, + "missing": 7, + "missing_samples": [ + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8320, + "records_with_pk": 8320, + "missing": 4, + "missing_samples": [ + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "ad570076c51b6feb0a41f4cc4c0ee893174bc90a5b2311992a902dea42d52125" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "af84ea43328906e71379e0965a64437a7f531b632fd3dbeec93335ce91725f4f" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 5, + "mismatch_samples": [ + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "02525e552fe14e2a90bcc4eb303873ef28c94b9ee5082375fd0c0cd29f0c3e87" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "be3f7d611af412e29e87a0007944e5facbe566fbd0f7eafe433a22aa5c46b63e" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "d07f506ba20cbf4945408f205916f0613222762c44a64bb13a84a265f88ba2fc" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 17, + "total_mismatch": 27, + "total_errors": 0, + "generated_at": "2026-01-31T23:20:34.552037+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2994364415790853, + "ods_hash": "2d2964215d4a2ee166f9bb15239cb662", + "dwd_hash": "1d1c95c9515b4977498190bf55065d31" + }, + { + "assistant_id": 3021267412585413, + "ods_hash": "114b03cdccfe300737e1bf5863ed3a53", + "dwd_hash": "9e8d610707aecf669129c4ac6dba9b45" + }, + { + "assistant_id": 3021271397288901, + "ods_hash": "bf6ec348395e64b5cd0329402bfbbde7", + "dwd_hash": "5a0de548a26e782bccb0aeb9f5443431" + }, + { + "assistant_id": 3022685829761989, + "ods_hash": "9086063e178ed8dcc31cb4c86a8d2a29", + "dwd_hash": "0b75296fb7851967cdf4ef0eebcbd388" + }, + { + "assistant_id": 3027024317123653, + "ods_hash": "2bb6709588c4c2554c9a81c59b144dbe", + "dwd_hash": "a3c6fc20f9e0fd3aa8cf0d51b421912a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2988677062855685, + "ods_hash": "02705d54b82ccea7c89939f913c8a91f", + "dwd_hash": "bfeef259184769e12e818bcd21034d72" + }, + { + "member_id": 2995832745758917, + "ods_hash": "f51379d60f726c84ce3b283b24fffc88", + "dwd_hash": "65ebaf71c0a13b3a9c7d57b5f15496e0" + }, + { + "member_id": 2999125651818885, + "ods_hash": "ad6c2088b36bf7671bca1568d68a2c7c", + "dwd_hash": "e513c7b68ec18462a4d3567395b556e9" + }, + { + "member_id": 3003185854190085, + "ods_hash": "38f2fcc6ccba2e4d3b04193fc91b9f8a", + "dwd_hash": "a64fc3a0c4c6c1e55120750339e53ca8" + }, + { + "member_id": 3003552553390789, + "ods_hash": "fff4cde8cafac703310005e846c4b8b6", + "dwd_hash": "55ab4207e0cd1f1d486625251369d8ac" + }, + { + "member_id": 3025342944414469, + "ods_hash": "90a9e93e9f918d86fb9513978ce8d378", + "dwd_hash": "ee3c3f732988c42d0e0a094d4e4de85d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 12, + "mismatch_samples": [ + { + "member_card_id": 2988677063166981, + "ods_hash": "6ec6f7d5d9a0becc890127026d4b9913", + "dwd_hash": "f3c2096b1cd21f13f30075bf8a197232" + }, + { + "member_card_id": 2995832746102981, + "ods_hash": "3d0711ecaf1f2544e6ec079c25b7ea48", + "dwd_hash": "072b0d452e78c35a32924c0e755a5d59" + }, + { + "member_card_id": 2995833659035909, + "ods_hash": "cb059f96b1e81543a3ca0b7c95bb2842", + "dwd_hash": "203d65bc32f10686362e5cccdcf14e9b" + }, + { + "member_card_id": 2999125652146565, + "ods_hash": "ace1fe2c7d3434bbd4d96ec709621ba7", + "dwd_hash": "27613fb508aa1ff2f916f084916c0993" + }, + { + "member_card_id": 2999126038989317, + "ods_hash": "8ece0ff6665d39c389bd3e3f9f1ceee0", + "dwd_hash": "cb81bf108e0ea38f151a14f2416e7739" + }, + { + "member_card_id": 3003185854517765, + "ods_hash": "cff49337cc54680c8066f51e7a62e862", + "dwd_hash": "c3bd0d351711aeabc5b56933e8e000f5" + }, + { + "member_card_id": 3003186241311685, + "ods_hash": "5574691f1e8e2444b6eaa6da5a700669", + "dwd_hash": "3665c5978614953026a798efc6ff8cae" + }, + { + "member_card_id": 3003552553702085, + "ods_hash": "0c77e397da93ef6b60e2e0da670eab03", + "dwd_hash": "941f5cdcb38d5583bc6cd33d2cc1c166" + }, + { + "member_card_id": 3003852642833349, + "ods_hash": "391a02d9f6473a0c2e1da761d98c7ec2", + "dwd_hash": "f9c2763c9f1fb7aa7950b0bf9b97f7f8" + }, + { + "member_card_id": 3005510275991557, + "ods_hash": "a408e7dae6387c9d1e6e1182fdb09c16", + "dwd_hash": "bf480f9e82bbb4c184f5724aeeb19cef" + }, + { + "member_card_id": 3015999424284165, + "ods_hash": "3a709e78f5005af34341b4050e4980e0", + "dwd_hash": "3271a49ba9eed551bc31c6fec0b35895" + }, + { + "member_card_id": 3025342945970949, + "ods_hash": "e5bae17e1203bc2b7464f450ee00aafe", + "dwd_hash": "7401c6126d4807313e04f531994fa604" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "tenant_goods_id": 2991189570373573, + "ods_hash": "05c2c01adc16f257df8036a802cdb3ff", + "dwd_hash": "51130110d143122e3a09d6fe24a25b8e" + }, + { + "tenant_goods_id": 2994234782223365, + "ods_hash": "c662b2064ac9a7501e986331a78255ea", + "dwd_hash": "aa2d7346e572b0c3c76786b056cd4d9d" + }, + { + "tenant_goods_id": 3004531315313413, + "ods_hash": "45a5d659808d87d3dc1b6dd9204d1fe9", + "dwd_hash": "44503a27f094a86e1f391f4d61cd0f8f" + }, + { + "tenant_goods_id": 3028607781079813, + "ods_hash": "a8d835d40dd64f4b2481699044a376e2", + "dwd_hash": "20ae26683d5d85f04905e5b3c885d94e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [], + "mismatch": 13, + "mismatch_samples": [ + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 155429.81, + "diff": 34544.630000000005 + } + ], + "mismatch": 3479, + "mismatch_samples": [ + { + "table_fee_log_id": 2987675348144709, + "ods_hash": "76c6966ed77ee365bea2ac4f6c6f2cd2", + "dwd_hash": "6bb73b3593a994c791b49794a5569c29" + }, + { + "table_fee_log_id": 2987676367424133, + "ods_hash": "2595417bd448de7ad7dd8a26cd1d8f64", + "dwd_hash": "d7965989d2993f7b217d1e81b4412c0f" + }, + { + "table_fee_log_id": 2987676719319685, + "ods_hash": "a95ffbac84bfa9076da06486f6e0676a", + "dwd_hash": "0ef7346fcc4f9e85c3bd99874c54e64d" + }, + { + "table_fee_log_id": 2987707287407237, + "ods_hash": "2494706c5d289bf366f68371412cb8d2", + "dwd_hash": "2c5b045764192e40e99b5c90b9502452" + }, + { + "table_fee_log_id": 2987707287423621, + "ods_hash": "e52c488db6402c59c70fb6854ac3786b", + "dwd_hash": "0234f81fd373f8dbdbbe54998f5618d6" + }, + { + "table_fee_log_id": 2987719121128133, + "ods_hash": "cc597baf78d6492898327c38f197058f", + "dwd_hash": "f69b1528cd7f2b3ed0b46b2b009675c8" + }, + { + "table_fee_log_id": 2987751061375621, + "ods_hash": "38d38b6d7d1ea8b1dde22f89d08dd074", + "dwd_hash": "47b1f0880060a24ca0408e29f5e9a7d0" + }, + { + "table_fee_log_id": 2987751101715141, + "ods_hash": "607af5398192c0db3936711aeb204db6", + "dwd_hash": "ee06a6e23a4c59143d6a46f3cb8e7c88" + }, + { + "table_fee_log_id": 2987767968991941, + "ods_hash": "442c13df9ff2a42b726dcac9cfc8cff4", + "dwd_hash": "06b62037729a6da757fa7153639ca010" + }, + { + "table_fee_log_id": 2987771053591237, + "ods_hash": "461ef4ff48215a9c0b11e580fc3e158d", + "dwd_hash": "944665e240e418c501c73fedb4c821af" + }, + { + "table_fee_log_id": 2987777106465349, + "ods_hash": "9ae18cbace3bdedb5b7bf2c18a572c14", + "dwd_hash": "22fed10be9dc90a65ace5ca070485700" + }, + { + "table_fee_log_id": 2987787652928069, + "ods_hash": "2a436c82aaf6d88cc6793b621724b981", + "dwd_hash": "446c9af49089f22d465d6ae858d5ce7c" + }, + { + "table_fee_log_id": 2987806870112965, + "ods_hash": "7a0059d2c1773976e07dfc66c48faeeb", + "dwd_hash": "2d7546d07f0701e95116b884cecf3d2f" + }, + { + "table_fee_log_id": 2987808146477637, + "ods_hash": "4fa4124e7b6f380f9406096c9c6110a6", + "dwd_hash": "b13fc1b226bfc2b05d82b661b9531dc6" + }, + { + "table_fee_log_id": 2988030895147653, + "ods_hash": "fa13eb2cb501080a8f071e07fde2c1af", + "dwd_hash": "e49506e1d4267804cf4e68b6836a3f57" + }, + { + "table_fee_log_id": 2988030895164037, + "ods_hash": "255758be999e5552dc67970712558090", + "dwd_hash": "eaeb3ee8eeb3b88e1db5aeb1fcac0357" + }, + { + "table_fee_log_id": 2988030895180421, + "ods_hash": "72ecc52e8eedc7da1cb7f44471fba779", + "dwd_hash": "8bd9cbee22761861d2adf195ab919dc0" + }, + { + "table_fee_log_id": 2988030895196805, + "ods_hash": "a078f868a5b684c7700ac60be5ea1e8c", + "dwd_hash": "a83f3467d22b80ef2ebfc6cf6089fde7" + }, + { + "table_fee_log_id": 2988030895213189, + "ods_hash": "83726a0586333abb9e8164e797e1898a", + "dwd_hash": "d4e633a52174cd883f6853ac43a614e6" + }, + { + "table_fee_log_id": 2988030895229573, + "ods_hash": "020f10afba62f2ea299f03ed1ae6142c", + "dwd_hash": "8f412fd500f3f83e79a623d20e432141" + }, + { + "table_fee_log_id": 2988030895245957, + "ods_hash": "a3b13535e09d893c46c661a41e92a630", + "dwd_hash": "0427d8cb273bfc1a022d021a985ff4a6" + }, + { + "table_fee_log_id": 2988030895262341, + "ods_hash": "bd0b7f7cebfe18cfdb9c88c291b9582e", + "dwd_hash": "53cfeb787bab105e6dfc4fc079be7922" + }, + { + "table_fee_log_id": 2988096766251589, + "ods_hash": "b69935a904ad2c048fae9fed0b75a0c0", + "dwd_hash": "6c9016e2700eee196030a84ff0bad131" + }, + { + "table_fee_log_id": 2988098790492805, + "ods_hash": "9f87fa9336bda235d61fae6cccbbe0bb", + "dwd_hash": "1aaedfee48d4beb6e6183d2421f03339" + }, + { + "table_fee_log_id": 2988218941098629, + "ods_hash": "5d1629db97486e45941d1e6fd676865b", + "dwd_hash": "543892e5f50b1e8fbc278d22ad1d45d7" + }, + { + "table_fee_log_id": 2988485085270597, + "ods_hash": "a41b39d964b4fa08337f3cff2f92804e", + "dwd_hash": "46a3ce22631a27ec25107bdedeec23e4" + }, + { + "table_fee_log_id": 2988488776403653, + "ods_hash": "361d64c84a02464722b2e2846166ad9a", + "dwd_hash": "505953ecdac3ff78571f5c7d28fd79ca" + }, + { + "table_fee_log_id": 2988527712488069, + "ods_hash": "57e139cdd12d54261b2f1e7f878dbc71", + "dwd_hash": "a2dfd70bf13a95f38ac6742515f06a04" + }, + { + "table_fee_log_id": 2988537078223557, + "ods_hash": "301322f92c897906727c6295c679de41", + "dwd_hash": "439df16ab5b97cea4e6dcaaf84a553a0" + }, + { + "table_fee_log_id": 2988552501250757, + "ods_hash": "194917517391d8e650bd78fe2c951aa8", + "dwd_hash": "9258dc2dcf087a8731d454d9053d6aa4" + }, + { + "table_fee_log_id": 2988620330748549, + "ods_hash": "b2433647b455c4a197ff54d8fe176016", + "dwd_hash": "f68a558c0d6a533c1f2e3871d4618b95" + }, + { + "table_fee_log_id": 2988633118855749, + "ods_hash": "68b10e2cb2f06a975bf7d6a5a2c4659c", + "dwd_hash": "fa60854790add4006c8f720092114370" + }, + { + "table_fee_log_id": 2988652285989573, + "ods_hash": "16d3923cfb8ecaa94fa2a5aaae159350", + "dwd_hash": "98d3dbb3c08bc3cf783641cb23d10944" + }, + { + "table_fee_log_id": 2988673826591429, + "ods_hash": "c17cd1f00cf71625e6dfe0d9b85a33ba", + "dwd_hash": "5f4d6b15a1477e28e6464f0ef866b0fa" + }, + { + "table_fee_log_id": 2988674492371653, + "ods_hash": "9a4b192fee0497d264432f2d21d757c6", + "dwd_hash": "9e4e250c9d4f9e8791065c441edb7c73" + }, + { + "table_fee_log_id": 2988679471368901, + "ods_hash": "76b429753e16c7833d018af5e6c5fbed", + "dwd_hash": "f27b6584850ea09389076c393672bcad" + }, + { + "table_fee_log_id": 2988703118445253, + "ods_hash": "72598cab66a834124d6d5b7dde8dc5a4", + "dwd_hash": "1df30c801805e4dcdd9418ab37a21fc1" + }, + { + "table_fee_log_id": 2988729548427845, + "ods_hash": "e3da99afd0638d4842ae346e4091d094", + "dwd_hash": "2f74081ea11c9f624443d2572e9338b7" + }, + { + "table_fee_log_id": 2988737624625733, + "ods_hash": "ba5a1cbbd3397980b987e21bd9cd5fce", + "dwd_hash": "ce456549cb77ab1d3ea9646b9456de7a" + }, + { + "table_fee_log_id": 2988748328571461, + "ods_hash": "f84a87e3edab498c3e2fa90f340ffff2", + "dwd_hash": "1e09166034246b6c3c5fc83c9c6724aa" + }, + { + "table_fee_log_id": 2988756484592197, + "ods_hash": "85392788112dbfa4ad3bccd3533205fa", + "dwd_hash": "1905c5dd53831d46fff5a43c8bb3d137" + }, + { + "table_fee_log_id": 2988764682490437, + "ods_hash": "632ca560cbe22f28013cca87c212cab0", + "dwd_hash": "1f6b1bc1e527e8301ffd69bd320d17ee" + }, + { + "table_fee_log_id": 2988765072478917, + "ods_hash": "7b9004b6be74a08dfe2ec5acc7d6dc6d", + "dwd_hash": "63cc0d7e642e703ec5f64912588f91ba" + }, + { + "table_fee_log_id": 2988771524154053, + "ods_hash": "27c385f742f9e96cc9575a8df5718ace", + "dwd_hash": "2a58eb832d74a25aa2f7033a2529f5d4" + }, + { + "table_fee_log_id": 2988773730077381, + "ods_hash": "a63f3b391575d3d421cd71f98ccaa31d", + "dwd_hash": "f4b7039d28c5956be853cbe0e093dd7a" + }, + { + "table_fee_log_id": 2988774506007237, + "ods_hash": "9477f851b7774b27b4f9e75437ee8095", + "dwd_hash": "9d18e2f2466ff5d4b65cae705f08a79f" + }, + { + "table_fee_log_id": 2988775167840837, + "ods_hash": "7200154547168fe08dada5ada2368035", + "dwd_hash": "5a8d080db6aff8c2f2f37af02c9e1b0a" + }, + { + "table_fee_log_id": 2988776555252421, + "ods_hash": "e0f94c4a93839ef5e5e34852c697b2bb", + "dwd_hash": "ee34e82da16b13b1b61536262a1b689a" + }, + { + "table_fee_log_id": 2988777760443013, + "ods_hash": "c4328222d79e4f7b253c998d2a22090c", + "dwd_hash": "d0445f9957a72907b0498ad6f135f1e6" + }, + { + "table_fee_log_id": 2988781139366469, + "ods_hash": "0daa2540e39cc17557b7bf6811bf75a8", + "dwd_hash": "72ff6be67e83adea4bf611eb7c0cfa52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ], + "mismatch": 2625, + "mismatch_samples": [ + { + "store_goods_sale_id": 2987688895629957, + "ods_hash": "3ac98e3c692402c64de98246e7fded1d", + "dwd_hash": "460f7e439c5c5fe7636e494aa83103c0" + }, + { + "store_goods_sale_id": 2987701981696709, + "ods_hash": "38cfda6742c96f601636ca0e9d6162cc", + "dwd_hash": "498de8a6c9028ceecf4a783927a2207e" + }, + { + "store_goods_sale_id": 2987701981696710, + "ods_hash": "8649e29ab0ef7180214f01377cf7037f", + "dwd_hash": "c2468cc1db618b3d3c305b461361e212" + }, + { + "store_goods_sale_id": 2987701981713093, + "ods_hash": "39f36f01d8957c174378241be1efb285", + "dwd_hash": "0b29c7bb8dfdf09fb2918f233d425ce7" + }, + { + "store_goods_sale_id": 2987707287947909, + "ods_hash": "96a85f593bd19e725bf3409c877babc7", + "dwd_hash": "045800e49e531005ea5f4f475111bfe7" + }, + { + "store_goods_sale_id": 2987777106989637, + "ods_hash": "073f054b5be60c75a58a77b0c760af2d", + "dwd_hash": "164e70d201fd7d5818dcd49e2d0dd6e2" + }, + { + "store_goods_sale_id": 2987792158919365, + "ods_hash": "735a1cabb5d44eca78d2da17cfd7b471", + "dwd_hash": "e3a4502f4898a33dd65ebafa418346fa" + }, + { + "store_goods_sale_id": 2987806870522565, + "ods_hash": "682de3bed6321eced9af69a097044402", + "dwd_hash": "9f78da41a566cc25d7be2eebe689b982" + }, + { + "store_goods_sale_id": 2987806870538949, + "ods_hash": "7f552fba809fbe497cf0cc9ad36948c2", + "dwd_hash": "ec2d45081c2e0cd2a3483c52127bee3d" + }, + { + "store_goods_sale_id": 2987996113996485, + "ods_hash": "6d1619eeaac2322ae4c7622dc0b8c9b3", + "dwd_hash": "f21e7c98cea6b982b10723d051261744" + }, + { + "store_goods_sale_id": 2988096768971333, + "ods_hash": "d33ffb1609bd933038c9640bf536b315", + "dwd_hash": "bacd1011df6fb0e609bb521056649625" + }, + { + "store_goods_sale_id": 2988096768971334, + "ods_hash": "df0411a265eb52f50101ddf4749ff7ea", + "dwd_hash": "0f2b5e3e74b5ec2c165a2faacfd86ed8" + }, + { + "store_goods_sale_id": 2988096768987717, + "ods_hash": "63b5ba716bb8a97381d1dab9878771ce", + "dwd_hash": "acd46bf5dd81228cb5a6a5d9ed1afe08" + }, + { + "store_goods_sale_id": 2988096768987718, + "ods_hash": "b1f4e077dc820ebff93871ff8c503887", + "dwd_hash": "0907ccddfd5c5548b556407fe0e74211" + }, + { + "store_goods_sale_id": 2988096769004101, + "ods_hash": "532b453eef32206842cad60a779bac7a", + "dwd_hash": "9d1f6d41d4a470a15201f9426ba42dfc" + }, + { + "store_goods_sale_id": 2988096769004102, + "ods_hash": "a77acf18b40fc4a2aa606ca405667dd3", + "dwd_hash": "bc9da392ee02d087b65a15a71fe95acb" + }, + { + "store_goods_sale_id": 2988096769020485, + "ods_hash": "ed4d5394b81327af31a478a9b3176f4c", + "dwd_hash": "8dae7f1ded51a4d22c890c018cb2db7b" + }, + { + "store_goods_sale_id": 2988096769020486, + "ods_hash": "05541f2b4db0ff0eb325f818d6f2ecf6", + "dwd_hash": "5c1897067268a279b77df9ffad976cf7" + }, + { + "store_goods_sale_id": 2988096769036869, + "ods_hash": "225c78016a56bf6d3a38dcc16feca48e", + "dwd_hash": "cd4807e809adcbfe4c958db1372bb632" + }, + { + "store_goods_sale_id": 2988096769036870, + "ods_hash": "834a649f78ec57153eda7a0ff7579566", + "dwd_hash": "c6a82cc5cdb0cccc2e951467a3699f49" + }, + { + "store_goods_sale_id": 2988096769053253, + "ods_hash": "d47d1f955231df795943d30f7c3bf575", + "dwd_hash": "2f54360f8826b23b3e8ba4167f25a327" + }, + { + "store_goods_sale_id": 2988096769053254, + "ods_hash": "019c46adab9e9933f6159864f4e29216", + "dwd_hash": "049d3008b4522d2b0d497b4bf5d9ad30" + }, + { + "store_goods_sale_id": 2988096769069637, + "ods_hash": "e7480d03a475c0e1319ce0ba735d38e5", + "dwd_hash": "f82f25311f3232d9091c1baa42e8da71" + }, + { + "store_goods_sale_id": 2988096769069638, + "ods_hash": "7d16dc5b39e09e4bb9e3f0a9b54c6330", + "dwd_hash": "9e0c181c49c52f2628773f8719ca619e" + }, + { + "store_goods_sale_id": 2988096769086021, + "ods_hash": "460f79616bdccc1f4d1a7f3e96b48659", + "dwd_hash": "c59c834e0dc51013c8e9f46965529dce" + }, + { + "store_goods_sale_id": 2988096769086022, + "ods_hash": "490e7ea95359c80e468a310bb6d3cbbd", + "dwd_hash": "86ce526598201cd42fa9469f670598fb" + }, + { + "store_goods_sale_id": 2988096769102405, + "ods_hash": "36a10ba751265ad3d05cd0ccbe7aaba3", + "dwd_hash": "ccceece6007ede23b4c5e7cb1d3cd78f" + }, + { + "store_goods_sale_id": 2988096769102406, + "ods_hash": "0abcc55f0a7039f6ca05a2eb3159ae25", + "dwd_hash": "794e0fb6fd25d0af7c92ab3229c8ca1d" + }, + { + "store_goods_sale_id": 2988096769118789, + "ods_hash": "351a5b773fc3341a4bcd582f64743d21", + "dwd_hash": "54f45cfe9f1e99f805fb3ab5ef8940b8" + }, + { + "store_goods_sale_id": 2988096769118790, + "ods_hash": "6f3135d5f5c8e3cbce794df1b9fb4ece", + "dwd_hash": "9ad2ad608e4edffd19fd2440d1dc4eb5" + }, + { + "store_goods_sale_id": 2988096769135173, + "ods_hash": "446789df760b0797b355588fdc3a72a8", + "dwd_hash": "1591966fb9d73f3b248c60c0ecec06e1" + }, + { + "store_goods_sale_id": 2988096769135174, + "ods_hash": "afe6ac2ddcf65e668de402a5bfaac917", + "dwd_hash": "c7c136e56eb0fa55c2d9880685fb53d8" + }, + { + "store_goods_sale_id": 2988096769151557, + "ods_hash": "14c2b98fa6d5a58fbfc29e80f5105825", + "dwd_hash": "1c1143eda131966942a7ad4e5ccc4c39" + }, + { + "store_goods_sale_id": 2988096769151558, + "ods_hash": "2657bf9bc6908f92c532da2b77c04e17", + "dwd_hash": "c88f050cbe4975e51b0a035ae4a61138" + }, + { + "store_goods_sale_id": 2988096769167941, + "ods_hash": "25938beffca55231811f663fd19c704e", + "dwd_hash": "809afd5945266defe0ec90661689d0bb" + }, + { + "store_goods_sale_id": 2988096769167942, + "ods_hash": "036912c2a91d57bf7a55814bfd8a00a0", + "dwd_hash": "54c3aa93e8c17d294c5a8ef4737cbecd" + }, + { + "store_goods_sale_id": 2988096769184325, + "ods_hash": "5471594b4fa14302af4cd4b356bc3153", + "dwd_hash": "bc2a89e03105e6fc57a70f36d6b82b10" + }, + { + "store_goods_sale_id": 2988096769184326, + "ods_hash": "0a18d37e681430d275d1e157c367910a", + "dwd_hash": "b26b90763d923f2474bf9c351a7f7161" + }, + { + "store_goods_sale_id": 2988096769200709, + "ods_hash": "3f21817ca532d4529de0ceceedbe9729", + "dwd_hash": "e2ea59d651e99a61c8b77d4512a621d4" + }, + { + "store_goods_sale_id": 2988096769200710, + "ods_hash": "4008af6b88bd8afa7dfd21449b3470cb", + "dwd_hash": "3162805883bf1b75672fa1df4920c322" + }, + { + "store_goods_sale_id": 2988096769217093, + "ods_hash": "661553a05e6468f2f2f282a7baa89b14", + "dwd_hash": "e16c3e734889452613d0ebc11a1e799b" + }, + { + "store_goods_sale_id": 2988096769217094, + "ods_hash": "f668d5011e75aaab84ea01a089de67be", + "dwd_hash": "4ee7f0ed13a80e3cf3d71f8a9b4293b6" + }, + { + "store_goods_sale_id": 2988096769233477, + "ods_hash": "a6ce29b059857ec9e7e6bf1e32263f5c", + "dwd_hash": "b42a13d2b3d111e1825824cc29ca725e" + }, + { + "store_goods_sale_id": 2988096769233478, + "ods_hash": "7ac281ce512e3b953b454831f05d2242", + "dwd_hash": "713e68de6b4d38e32c0548250d22977e" + }, + { + "store_goods_sale_id": 2988096769249861, + "ods_hash": "1cd584a226f341dc702a46572249d498", + "dwd_hash": "841bc02ddeb5755127fd0839d5a206e1" + }, + { + "store_goods_sale_id": 2988096769249862, + "ods_hash": "c6e5f3c4af2da586fcf624edb4509c73", + "dwd_hash": "705b2486e36b317c0482dc8e4dc44ee7" + }, + { + "store_goods_sale_id": 2988096769266245, + "ods_hash": "e2669d1bb6aa4e34c58203d5aa42346c", + "dwd_hash": "91371974af9bda6d16f01161b05056d5" + }, + { + "store_goods_sale_id": 2988096769266246, + "ods_hash": "ebbc11ebffdead7d27d293563a790579", + "dwd_hash": "3e2c5b9f786384182ee8e2ea0a0501f1" + }, + { + "store_goods_sale_id": 2988096769282629, + "ods_hash": "7ef05e8cb65d5b2fe3c5c41aa3dbb935", + "dwd_hash": "3adc14476c57398ec9f371190dacbbf3" + }, + { + "store_goods_sale_id": 2988096769282630, + "ods_hash": "d8e54b7cf8ed68cf9fbbea4d88236ae1", + "dwd_hash": "3b7a0e35a2fe01f16b061a29befc9bf8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ], + "mismatch": 975, + "mismatch_samples": [ + { + "assistant_service_id": 2987675348587077, + "ods_hash": "d72f7e368398cc458ff67cac818ae4fa", + "dwd_hash": "5cdd6dcd19d748baa5a57c2e27ab7d27" + }, + { + "assistant_service_id": 2987683069825733, + "ods_hash": "ad0cfbaedeea8980cb02e609c1060d1d", + "dwd_hash": "14de4f35aa65e1e380a00f5082490a88" + }, + { + "assistant_service_id": 2987705965759109, + "ods_hash": "f479ad1131a4c5c3f8b8f6b5f82fbd5e", + "dwd_hash": "de8d15f5887e37c663998539a9d3ce8e" + }, + { + "assistant_service_id": 2988030895737477, + "ods_hash": "6f4e8ef8f9cfd06c7d9f16e509d261fd", + "dwd_hash": "27779e64e0763a1616bfbebed31f7c41" + }, + { + "assistant_service_id": 2988030896294533, + "ods_hash": "2ea321ed071173c399733616cea04055", + "dwd_hash": "c6a62e13a506266da7997c450bdbb969" + }, + { + "assistant_service_id": 2988030896720517, + "ods_hash": "d9451f87073c0d9fb1e995b436a40e8e", + "dwd_hash": "b3fcc2fbe6140b8512f8fe1709b6d8a0" + }, + { + "assistant_service_id": 2988030897556101, + "ods_hash": "f4520e33282aa319787bc4d0e3eeeff4", + "dwd_hash": "2a1bbf3a9d2499e545a5d0d55938ca18" + }, + { + "assistant_service_id": 2988096766644805, + "ods_hash": "a59ce080d732a728620184c2af17dc68", + "dwd_hash": "5edd918c54f43353dceb8a47a248acaa" + }, + { + "assistant_service_id": 2988096766988869, + "ods_hash": "87f0145b6f969290c4ecd0517907f141", + "dwd_hash": "948574c9075425c440370c0d4e769d5a" + }, + { + "assistant_service_id": 2988096767349317, + "ods_hash": "ecdf41d7b1f65f84dfa9908634a47afa", + "dwd_hash": "327fdfd92cc1ca89b2e6c14eacb17e36" + }, + { + "assistant_service_id": 2988096767693381, + "ods_hash": "437c77c6afbc0bd8ad340f2ab1b0f65a", + "dwd_hash": "bc3af231f8cf754d80745e6cd6a797a4" + }, + { + "assistant_service_id": 2988096768070213, + "ods_hash": "6abe0720d8a02f31ef96088d77f0c654", + "dwd_hash": "351f6cbc3e8a6e7b1985e6bf34787643" + }, + { + "assistant_service_id": 2988096768414277, + "ods_hash": "fcccdfe0d9e59108a1185c9c4d66c65d", + "dwd_hash": "bc598090a1705e2b79d6eb0f2118807f" + }, + { + "assistant_service_id": 2988098790886021, + "ods_hash": "d0eb9f5343154c5e7f964c7b6524e2e2", + "dwd_hash": "88e30f3d0b4a9e0b5e0bbb59b54f42b7" + }, + { + "assistant_service_id": 2988098791410309, + "ods_hash": "8798a1162876358171b8a7f1f9218f35", + "dwd_hash": "4684dd17c1f34b3c2f71e4a8c3372402" + }, + { + "assistant_service_id": 2988218941491845, + "ods_hash": "4b8f36267324b4c30193f50fda793fec", + "dwd_hash": "b76e60683adf78663edda53d89b5db41" + }, + { + "assistant_service_id": 2988218941852293, + "ods_hash": "bacd9dff1c433a4b8984ef4631256e33", + "dwd_hash": "cef53d882a172804713835e713208742" + }, + { + "assistant_service_id": 2988764682900037, + "ods_hash": "6ca2a5432e8b0c3394b215772db100e0", + "dwd_hash": "1f053cab0fc89658d0ad729baf30c752" + }, + { + "assistant_service_id": 2988907523246789, + "ods_hash": "f775262a70880dedc12948aab995e7bc", + "dwd_hash": "76b78cd9b68c0c2f4b058dc5679004ef" + }, + { + "assistant_service_id": 2988908683662021, + "ods_hash": "06e909c45cc7420cd362b365449398e2", + "dwd_hash": "2f96fe4e2b6ce061dd45faf8cb973f59" + }, + { + "assistant_service_id": 2988908684055237, + "ods_hash": "a2f8f64a3748c941bc6c2f58f3fb9edb", + "dwd_hash": "9833a9eeaba1793281ed323be94f0359" + }, + { + "assistant_service_id": 2988972808131141, + "ods_hash": "2a325d567eb786a2b737fd3fe356bef3", + "dwd_hash": "da6a68fc583c7a4f0406842c13593d31" + }, + { + "assistant_service_id": 2989071967111877, + "ods_hash": "f5a8fcf98a5740a14c4f8ddc571ba4db", + "dwd_hash": "b5a9dbc7508fd70cb4cf98b774116bc6" + }, + { + "assistant_service_id": 2989103393589893, + "ods_hash": "e500a1932217da39360a6fe6f334f1ae", + "dwd_hash": "d2643b6cf0ca7ffb71b2654af1945c34" + }, + { + "assistant_service_id": 2989103393966725, + "ods_hash": "ae78fff8df95bb8cf129328d8a841f7f", + "dwd_hash": "a1ff38183c4a4736595d87a24f052e6c" + }, + { + "assistant_service_id": 2989107446567621, + "ods_hash": "afbe6729e8d6795fd877a3cc260d4e93", + "dwd_hash": "4c21feddf6d3b69732f27dc4e9aa104e" + }, + { + "assistant_service_id": 2989107446944453, + "ods_hash": "00eaeee6a9d2b6fa5694f77e51398b0a", + "dwd_hash": "062a994c66086634a818ab3493dfc300" + }, + { + "assistant_service_id": 2989162897183429, + "ods_hash": "83183c09de3b58f73a94cd0e1af59144", + "dwd_hash": "3cf2023389026905726a40593ac09b80" + }, + { + "assistant_service_id": 2989216018401925, + "ods_hash": "1aaeec5c72eab00a00f086ebab896e93", + "dwd_hash": "6db391447bcd01989e7c4f4f14402224" + }, + { + "assistant_service_id": 2989216018762373, + "ods_hash": "224eec4aed8e0374d9f149cc77d72492", + "dwd_hash": "e3533830e483bef8dea16f1232878ce7" + }, + { + "assistant_service_id": 2989283971781317, + "ods_hash": "691fdb203a10d25519e74218408a9ef4", + "dwd_hash": "a098d3cf5cbb44de32ac515dda196e4e" + }, + { + "assistant_service_id": 2989283972141765, + "ods_hash": "790a9af897622429eedabfafacc67ddc", + "dwd_hash": "6ae691ed3c44f71d8bc69f561754e2eb" + }, + { + "assistant_service_id": 2989436187511429, + "ods_hash": "fa95ba6e9250a87d6ac8a4a409a420de", + "dwd_hash": "b5b1ec4efaabc81519dc08ec6cfc4e02" + }, + { + "assistant_service_id": 2989436187871877, + "ods_hash": "852724c65be20cc7ce621799d0cce9e7", + "dwd_hash": "50a25a4b7b4d5f037a666310a02896f1" + }, + { + "assistant_service_id": 2989436759446085, + "ods_hash": "96f2d21091f06b20575a8c1afe2d3334", + "dwd_hash": "03db01763bec21d3f670bcdd78bfd867" + }, + { + "assistant_service_id": 2989436759822917, + "ods_hash": "d08c77d3f7ed6c903f25530640a8ea71", + "dwd_hash": "f1904bd9dfd5803e1da47246bc5241d7" + }, + { + "assistant_service_id": 2989437232157253, + "ods_hash": "af49e03ed0dc048c2f916578594dd10a", + "dwd_hash": "41d9948a25de15f94c07cd247d75e705" + }, + { + "assistant_service_id": 2989575637191301, + "ods_hash": "24f025b8fa669ff991a993479b48fd9a", + "dwd_hash": "59979f1709068346536baabb06397dae" + }, + { + "assistant_service_id": 2990101503707781, + "ods_hash": "5996defebbaca9df66be41f8c35d1277", + "dwd_hash": "4d67485160566ef2ac7e7b9efa2157dc" + }, + { + "assistant_service_id": 2990197430307461, + "ods_hash": "fe95e05aba1e44db64fa5ff5b86b649e", + "dwd_hash": "07835dc4b8dd605bccbefd18640e6429" + }, + { + "assistant_service_id": 2990197430798981, + "ods_hash": "a142ae06ee37639b7dac7c31a389ab73", + "dwd_hash": "66341a04b42210f1aa00ce5898e7ca08" + }, + { + "assistant_service_id": 2990197431257733, + "ods_hash": "9602387496f46a11472394337d25eecb", + "dwd_hash": "2dfd99db5027a73da15e49aa1d1aba33" + }, + { + "assistant_service_id": 2990305791398469, + "ods_hash": "8ea6663e88026494d992d3a2cac73c8c", + "dwd_hash": "b773f88df3c81e84250a3af82f0e0972" + }, + { + "assistant_service_id": 2990320674327173, + "ods_hash": "f615108799b04f58564162e93d01eafd", + "dwd_hash": "e104396c0c62d3a8de132e3d6c84ca3f" + }, + { + "assistant_service_id": 2990346142847557, + "ods_hash": "e225d665290b9738a6ac9b9b5c5808ab", + "dwd_hash": "4f9091bbce406d9610c9ba3e4b5984a6" + }, + { + "assistant_service_id": 2990368806113861, + "ods_hash": "5868494d9df5dcbcef4079b969f4aceb", + "dwd_hash": "24561866b467c8235f2c2c5505db0b61" + }, + { + "assistant_service_id": 2990401598638725, + "ods_hash": "e172cdc6bd6e0c546ee7db5280c446c9", + "dwd_hash": "61461b60d47182922391d3e16fe3e028" + }, + { + "assistant_service_id": 2990418836327045, + "ods_hash": "f78e84640f5995efff1b681aacf699ca", + "dwd_hash": "6e22c29a96cd81b4aff4518680d6a965" + }, + { + "assistant_service_id": 2990438366300805, + "ods_hash": "1766ff484e04b111bb413ecd0bc48c80", + "dwd_hash": "5f87c26c33baffd97fb51a17b53ad82b" + }, + { + "assistant_service_id": 2990484554894021, + "ods_hash": "afb7d0dd922c70d7e56362ef700402d8", + "dwd_hash": "a6498be15235bc4198923025036a6509" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ], + "mismatch": 2816, + "mismatch_samples": [ + { + "redemption_id": 2987719121636037, + "ods_hash": "fc8e62b73a45cb92cd28026a0b1f9892", + "dwd_hash": "7a26589dc438769d511d431abc090766" + }, + { + "redemption_id": 2987719121636038, + "ods_hash": "7b09df9837e450be927fee4d175b37b9", + "dwd_hash": "3011a37f5049f985b41dfc03ad5ad558" + }, + { + "redemption_id": 2987719121636039, + "ods_hash": "9b8fcbe9114458cbf0c74606c54b3ae1", + "dwd_hash": "348714b47842283f542792f367e151c1" + }, + { + "redemption_id": 2987751061998213, + "ods_hash": "5e188a1aa4b0b9da212400c1bfd6d3bc", + "dwd_hash": "3acb7a23a61e2fa16e12036aa4b4ec48" + }, + { + "redemption_id": 2987751102157509, + "ods_hash": "41c0c63e498083f2414f963df8cb9a9b", + "dwd_hash": "1094640e5dfc052557329c58f45c755c" + }, + { + "redemption_id": 2987767969467077, + "ods_hash": "ab7436ef5d610cc00a853bb05f21688c", + "dwd_hash": "ec243b3c5d60b0142e8372e606fb9826" + }, + { + "redemption_id": 2987767969467078, + "ods_hash": "f3c7b09867262a83427124c9d0f6db66", + "dwd_hash": "0a4972b0e4e637e67840cd9a65f7ddbd" + }, + { + "redemption_id": 2987771054066373, + "ods_hash": "cbe1c9af114eaa6b4199c7b9fdc1242d", + "dwd_hash": "bd6e76668f04e846f33b9d46ab77c7f5" + }, + { + "redemption_id": 2987771054066374, + "ods_hash": "c70afb4cba980831f1e07bd2d869debd", + "dwd_hash": "d4238ef5dd60ad9ee7452c9adb9a551b" + }, + { + "redemption_id": 2987777107055173, + "ods_hash": "0b1f54650e85c6e0f10859a65d8dc7b3", + "dwd_hash": "e18e617327c0690997b0177f4dd226fe" + }, + { + "redemption_id": 2987777107055174, + "ods_hash": "b466c5de3df1e7ee0a818068edf22958", + "dwd_hash": "8b5a163995e7fcfed5dddb4d208f7392" + }, + { + "redemption_id": 2987787653567045, + "ods_hash": "ac83db1d8e215a4b01f1fbb745fa71db", + "dwd_hash": "2479b9e5e6db652e043cd55640f2cfde" + }, + { + "redemption_id": 2988488776927941, + "ods_hash": "37e69a0f57def0e9790e8b50af3c0a2a", + "dwd_hash": "16ed416de6da22074cafbc5d79800989" + }, + { + "redemption_id": 2988527712995973, + "ods_hash": "9b942f91a7c2f30ff20760c7c84f6fea", + "dwd_hash": "b5d5e9f0272f990d43bca448ec7e3b71" + }, + { + "redemption_id": 2988537078813381, + "ods_hash": "dfd9c81b1892e673888eeabf8ff1037a", + "dwd_hash": "c0d79a14ae06e182d598a327916dd0a9" + }, + { + "redemption_id": 2988537078813382, + "ods_hash": "7380183b40a7544a5d9e6d62cf5e4332", + "dwd_hash": "c27d7e0e61268066e7f57ac4f3ff5e84" + }, + { + "redemption_id": 2988552501725893, + "ods_hash": "1abd69594592aade1ca215e7c0c4f8ea", + "dwd_hash": "c4469bc9295cea14bfb846a376222a82" + }, + { + "redemption_id": 2988552501725894, + "ods_hash": "1f601237536b80073f1dcc3466b44293", + "dwd_hash": "aad85e91234eace25649f9396d4be4b9" + }, + { + "redemption_id": 2988620331338373, + "ods_hash": "daa428bbc1a9eb56cf4f97502e79ed78", + "dwd_hash": "90b081a7bea5ae8d511a0e7ae02b5717" + }, + { + "redemption_id": 2988620331338374, + "ods_hash": "df26074e0529009211e77e33f0f648b3", + "dwd_hash": "d8e23b1f4ffbe5f07feba242c9982f9e" + }, + { + "redemption_id": 2988633119298117, + "ods_hash": "da4630b24387b9a4b8cb02fe9af16391", + "dwd_hash": "9e286600fc8a17ec3c3a91f319761317" + }, + { + "redemption_id": 2988652286595781, + "ods_hash": "57b8e79f57faa1f29ec47649decedf2f", + "dwd_hash": "c30ed9742f04ea6d4c28bfb69331953e" + }, + { + "redemption_id": 2988652286595782, + "ods_hash": "2e70d2728b2a89fe91a8959205ec436d", + "dwd_hash": "becda9d382de48268bb155e6eb3ab2c7" + }, + { + "redemption_id": 2988679471958725, + "ods_hash": "8b6e3428b5359df5a965e0bb8ddd9309", + "dwd_hash": "103d82d4662b66efa3c30add9083c566" + }, + { + "redemption_id": 2988703118904005, + "ods_hash": "915250117d6ed52ad1e35e8daff53a2d", + "dwd_hash": "31e339c6de2035e2c29342d4a9237bc9" + }, + { + "redemption_id": 2988729548870213, + "ods_hash": "a828fdd5c8ecd917a1d6356008b05815", + "dwd_hash": "c98453cbf0f8b8ae9d61743b5a8ad640" + }, + { + "redemption_id": 2988748329079365, + "ods_hash": "4c83547a10727d22c6c2367ad8844015", + "dwd_hash": "b21883ca755cfb1ed87732bdca39a257" + }, + { + "redemption_id": 2988756485067333, + "ods_hash": "60331ae9658a0ec5a2a5a2bb6b3293f5", + "dwd_hash": "87cf7ef8b196f3ce8df93e681cb1fb8c" + }, + { + "redemption_id": 2988765073052357, + "ods_hash": "a812bed28a3c7753ffba46179be4fda0", + "dwd_hash": "13f2bc8171da17e1e6f3451bd4b65282" + }, + { + "redemption_id": 2988765073052358, + "ods_hash": "1dcbfc9dc48a6ccbbceef175829d7156", + "dwd_hash": "9c6284e6533395ba5964c3e9d7d6beef" + }, + { + "redemption_id": 2988771524661957, + "ods_hash": "0a7645fdbfaacfc3efecf386abab43af", + "dwd_hash": "1fd0416dd2fe3d0dcd459cee24354c6a" + }, + { + "redemption_id": 2988771524661958, + "ods_hash": "1b557196dac075e57cb5b17dc865f9f5", + "dwd_hash": "e797aba46ec5f8d87cf31983b3c29e4b" + }, + { + "redemption_id": 2988773730634437, + "ods_hash": "9060629f453cecf56df0a371cb6a8433", + "dwd_hash": "0838beeee0b9f0140b176f36b739a903" + }, + { + "redemption_id": 2988777760950917, + "ods_hash": "1778535117e2149642cec38e946a9d55", + "dwd_hash": "aaa657e26663bbf9884c06265705db2b" + }, + { + "redemption_id": 2988777760950918, + "ods_hash": "b244c1d66f4485a11ec7540744545d2f", + "dwd_hash": "965f668216f275d7c8030f38b8a7d66d" + }, + { + "redemption_id": 2988777760950919, + "ods_hash": "dcd41c68f1749c4a0c88c899e3b88892", + "dwd_hash": "4f981c8d748275c87bcde32c69a70050" + }, + { + "redemption_id": 2988781139857989, + "ods_hash": "2dc2829f7d2f49f2a08f792a2bd646e2", + "dwd_hash": "c0ffb68b31e911618c47cbe4d5c978b2" + }, + { + "redemption_id": 2988789651229381, + "ods_hash": "38375a7e3b6ad85301a10a3ebeea6e28", + "dwd_hash": "e800760e5fcdc2ef15069d967784b077" + }, + { + "redemption_id": 2988789699447429, + "ods_hash": "4b391e7727bb0b59fcf8d665d8a39a65", + "dwd_hash": "db5681c8f978b382d2f5df51ba2eba42" + }, + { + "redemption_id": 2988789757577925, + "ods_hash": "5b85de2019ddc9ddc666cc5a9edcfc02", + "dwd_hash": "492a2f81e113107cfd1599788aeafdde" + }, + { + "redemption_id": 2988790139884229, + "ods_hash": "91a438e81f71cf5e31de1f188fb2e2c8", + "dwd_hash": "23cba7173bf5309ebe18e0d396732e17" + }, + { + "redemption_id": 2988790139884230, + "ods_hash": "bad49951087696828b241a4db95eaff1", + "dwd_hash": "71f7a2b7012b350c7de3a609ebdab39c" + }, + { + "redemption_id": 2988790139884231, + "ods_hash": "845eb643f1fbe755022c59589cdf3fce", + "dwd_hash": "cbb946eb34eb8ef23f0ee8d2b6284933" + }, + { + "redemption_id": 2988790139884232, + "ods_hash": "4643c97ad15e2bbf62e43ffff2a36141", + "dwd_hash": "bc2f9fa8e577e1825b301a9bcb77eb79" + }, + { + "redemption_id": 2988790139884233, + "ods_hash": "0c6980eefe106e50169a70f9db1df819", + "dwd_hash": "eb35d633cf2f5415c9092d09fd592d8a" + }, + { + "redemption_id": 2988798437184197, + "ods_hash": "785bc7e64d04a649c725de7b6adef5a5", + "dwd_hash": "ec70511d417c622351627dc38ae4f19a" + }, + { + "redemption_id": 2988809780726405, + "ods_hash": "1004c80b9dd74c18a418d717010b50c2", + "dwd_hash": "c14096dc5a0398af52920085b9927417" + }, + { + "redemption_id": 2988809907161797, + "ods_hash": "3eb6dd3b2e67d9d2403985e3e8d973c9", + "dwd_hash": "ecbff61f6b53cb2c6f6d98cea257c4c8" + }, + { + "redemption_id": 2988847287620165, + "ods_hash": "35319b4fcf12a83e303b7986e9bd5c56", + "dwd_hash": "34e6beba987a03c15c964c6fdeaf9a18" + }, + { + "redemption_id": 2988851774655109, + "ods_hash": "230da1027149a1ec8eab63863ed6caa5", + "dwd_hash": "dedace8fd454ca094245ea0fed957961" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ], + "mismatch": 2827, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2987687603409605, + "ods_hash": "a296e8bde386543ba3dc1d165d3b1b5b", + "dwd_hash": "226cd8bcdbe1cb5fa443df1c7397a555" + }, + { + "platform_coupon_redemption_id": 2987688316719813, + "ods_hash": "2093231dcb4ee7b7d92d0c766b5e823d", + "dwd_hash": "ebc40a0fbb9537122606d2c6f278b76b" + }, + { + "platform_coupon_redemption_id": 2987696907588165, + "ods_hash": "1bfd8961f52083ede6d13cd20daef845", + "dwd_hash": "048d459cf046284cea6cbb374088d95b" + }, + { + "platform_coupon_redemption_id": 2987727763376773, + "ods_hash": "803ed0dfeef0663864d4d1b95bc17d89", + "dwd_hash": "3ca1bf5b7a674a43b4b564d6c427eb1a" + }, + { + "platform_coupon_redemption_id": 2988408542300805, + "ods_hash": "84e0d5336d6561e2b1e368dd93e0e4d1", + "dwd_hash": "284b678694bd7717e85dd17cf074c940" + }, + { + "platform_coupon_redemption_id": 2988408542300806, + "ods_hash": "32ac096d140f9a3204fa9ea9515d2bb3", + "dwd_hash": "5216cbb8f74c23c84a40fea60b01383a" + }, + { + "platform_coupon_redemption_id": 2988424855784069, + "ods_hash": "4b5f356a9e3e7824d03ed84c212d58de", + "dwd_hash": "ca4bbdb3439270131df11fc42638e441" + }, + { + "platform_coupon_redemption_id": 2988426988507717, + "ods_hash": "879a5bb275b37ed21fdfc620b2a652da", + "dwd_hash": "06557ac02bee3fc621f2f84ad26ab29b" + }, + { + "platform_coupon_redemption_id": 2988436183536197, + "ods_hash": "a1682c7e87cc3e3bdc8975b7250d8c23", + "dwd_hash": "0f459de864dac588c9c3aa0da0d39b11" + }, + { + "platform_coupon_redemption_id": 2988437930691205, + "ods_hash": "eea272be7ea24cfd4ee18ac00c600d9d", + "dwd_hash": "55339f3f9b9a13942c0bcd9e3d5efd07" + }, + { + "platform_coupon_redemption_id": 2988471342516933, + "ods_hash": "c43c0f230f7ee53a37c8b7b940e9fa5f", + "dwd_hash": "dc8ab51ff1503ba1e349dd829a97e9b0" + }, + { + "platform_coupon_redemption_id": 2988486340987589, + "ods_hash": "a9d620cd094d04b1f971a26490810330", + "dwd_hash": "26881a7487fbfb15caea5f43fcac5150" + }, + { + "platform_coupon_redemption_id": 2988527644363461, + "ods_hash": "d86cb611944b231bd06929022491c383", + "dwd_hash": "693fc838ab031e86382f368cd037b6d7" + }, + { + "platform_coupon_redemption_id": 2988527644363462, + "ods_hash": "7707aa245ff6f71e7961159a791fa77a", + "dwd_hash": "086bffaa301ea97e3562cbf7b8da65ee" + }, + { + "platform_coupon_redemption_id": 2988530870192837, + "ods_hash": "5c0e4f07d7fd1815bce2642f8f19581c", + "dwd_hash": "fdd456978c040a959da0a6afcafec252" + }, + { + "platform_coupon_redemption_id": 2988557153897093, + "ods_hash": "57abadd1d0f95c15777fa7c0baa9ddc6", + "dwd_hash": "ef1ebbc75131ec33f0765bff7ae57004" + }, + { + "platform_coupon_redemption_id": 2988571835437637, + "ods_hash": "5c9fdf21c32155cbe72c76892d8bb5ef", + "dwd_hash": "bb61a290a58b9f4c68c834c05a041fed" + }, + { + "platform_coupon_redemption_id": 2988580664808005, + "ods_hash": "09b38f20730d729bda222f6973f33b6e", + "dwd_hash": "7063d184b0e832f38e687a3bafce9362" + }, + { + "platform_coupon_redemption_id": 2988599545678469, + "ods_hash": "9c9f99e77f56aa74289ababb4b3531ec", + "dwd_hash": "a02b3ab95982152b52af2a5db0d67aa1" + }, + { + "platform_coupon_redemption_id": 2988620411259589, + "ods_hash": "166ee8b8d28c551486e7cfcbf2b42313", + "dwd_hash": "9b4cec59cc1a1af9c92f4a1da2039958" + }, + { + "platform_coupon_redemption_id": 2988633043243717, + "ods_hash": "79d433b6da26397479e04d2760ecc4a9", + "dwd_hash": "b063c954245e5bf5b78502740a155644" + }, + { + "platform_coupon_redemption_id": 2988640011946693, + "ods_hash": "120b1887fd69f568c2fafea301ab9102", + "dwd_hash": "8e447250c29d23487d641ff2881f5406" + }, + { + "platform_coupon_redemption_id": 2988643064744645, + "ods_hash": "2d59c0b3b2b60682ecfc5b7e1ca8452b", + "dwd_hash": "fa8fb3d74b8298a8b1ffc7edaf8226da" + }, + { + "platform_coupon_redemption_id": 2988648461193797, + "ods_hash": "3369ad123fcadfc2a6bdfac01ed0a41c", + "dwd_hash": "09cb28d8e3e8be68ae0117750ec7f586" + }, + { + "platform_coupon_redemption_id": 2988648461193798, + "ods_hash": "96dce0d306bdef4d8b0787968f903b16", + "dwd_hash": "8e708fa971acf4cabdc57e5c5ae6d069" + }, + { + "platform_coupon_redemption_id": 2988659769002629, + "ods_hash": "ced57bf1978df20d0d1d835d6dd348bf", + "dwd_hash": "654e32ca3a8b5fd2e43b98901bb3b50b" + }, + { + "platform_coupon_redemption_id": 2988660495338181, + "ods_hash": "b332caa72dd69a3ff7522120c1127734", + "dwd_hash": "813eca355fda8d2189d14b5119f8df1c" + }, + { + "platform_coupon_redemption_id": 2988662320632389, + "ods_hash": "ee5ce93f67d70a50be663ae2833f87c9", + "dwd_hash": "f18fca0d133808946518e5b5207b702f" + }, + { + "platform_coupon_redemption_id": 2988664324805317, + "ods_hash": "c29fa3421a4bafef3288745b67ede160", + "dwd_hash": "b9a0c7006747ac935dbc04469671a63f" + }, + { + "platform_coupon_redemption_id": 2988665303732933, + "ods_hash": "d651355ab064e2f25d2d61d7a95a8dc9", + "dwd_hash": "7150828b05cf25b334ba8723fde92f6d" + }, + { + "platform_coupon_redemption_id": 2988665822382789, + "ods_hash": "382516e6e139164c9c3f767c6fb65306", + "dwd_hash": "7a2f38c20bd51f329977548e47bcd9ce" + }, + { + "platform_coupon_redemption_id": 2988667274154693, + "ods_hash": "dc3a6fced60b6b5c22e7a3ab1dfa2e2d", + "dwd_hash": "c849482caa53232e5eb812e11d94f36c" + }, + { + "platform_coupon_redemption_id": 2988675046068805, + "ods_hash": "0923ac026c86e372c25f42c60a31ea0e", + "dwd_hash": "56a1c62c726a11d4bde9ee52a4ca60bd" + }, + { + "platform_coupon_redemption_id": 2988689049195205, + "ods_hash": "8959badd50a1f3ba83a262c6b813f6c6", + "dwd_hash": "7a8c558d52bf51844f3661622a2db94a" + }, + { + "platform_coupon_redemption_id": 2988696746084997, + "ods_hash": "a54dd5fdfca61d0ecbbe1baa8c704043", + "dwd_hash": "c3b8c3967f0f0097b762a0445da2c74a" + }, + { + "platform_coupon_redemption_id": 2988702850140869, + "ods_hash": "cdd78e40f049ea4549c8df2f9da218dd", + "dwd_hash": "6a280dc0a485f2431d677c4dc5f4d15c" + }, + { + "platform_coupon_redemption_id": 2988716253121221, + "ods_hash": "57fcef13ca3f0e30d41f047d13cd62b4", + "dwd_hash": "e7c2df3fdd540098cd2e78f2296dcbef" + }, + { + "platform_coupon_redemption_id": 2988727833350853, + "ods_hash": "649b40d102f5aed611cc35fadfabb3e8", + "dwd_hash": "d6f24ab3e0d3a9a3704bf3cbebd13413" + }, + { + "platform_coupon_redemption_id": 2988728550738565, + "ods_hash": "e4930db1fb91c6e2f79325fcae94a186", + "dwd_hash": "8f1042102164812c4e975cb62ebeb916" + }, + { + "platform_coupon_redemption_id": 2988736414403269, + "ods_hash": "66ae91c0f4cee41ff2cf53a37d5a7a68", + "dwd_hash": "d1cad7e6e148f120fb263f08846fde1c" + }, + { + "platform_coupon_redemption_id": 2988748761092677, + "ods_hash": "5ade1e70c25cc01c8c4f9c06b8b9f1a9", + "dwd_hash": "e994fb7d3f9983cfded99526b7d4a0f7" + }, + { + "platform_coupon_redemption_id": 2988750660946565, + "ods_hash": "e0283ec79252db04973c5e253c8ca727", + "dwd_hash": "0b754118fbfadfc0f33ec235e1668d9d" + }, + { + "platform_coupon_redemption_id": 2988771397915333, + "ods_hash": "8ca4e481d9fff712f7c3d9e6139702e7", + "dwd_hash": "cece52e82ce6d6be3b12cb1ce5922be0" + }, + { + "platform_coupon_redemption_id": 2988787913132741, + "ods_hash": "3671de4e85406d1e5836436d1b40a727", + "dwd_hash": "a98cabcffd352e22f412515dc433c1a9" + }, + { + "platform_coupon_redemption_id": 2988789458752069, + "ods_hash": "3de827e3470a4dd6d5b0f1de8a782a9a", + "dwd_hash": "6b0fa3656ecd2c6c3db67a3688fd572d" + }, + { + "platform_coupon_redemption_id": 2988791349283461, + "ods_hash": "ac719516e97cde67ff9ef91dfd2172ee", + "dwd_hash": "b954e411c885226d331c8c20a624e894" + }, + { + "platform_coupon_redemption_id": 2988792583852613, + "ods_hash": "c74c3436cd849e3d7c76db4fced7c0ae", + "dwd_hash": "0ad9c14454b16c71b0b7390f41d6d5f3" + }, + { + "platform_coupon_redemption_id": 2988796443693765, + "ods_hash": "c8e22b5f14dc12d09b5379bebecaaafd", + "dwd_hash": "44819e3184eaf02bbceaa71b98dafce8" + }, + { + "platform_coupon_redemption_id": 2988799603477125, + "ods_hash": "7a5cf017ea3d59604a9aaafff0bbde2f", + "dwd_hash": "9e2ded0ebcb815098f7c19d012a76d86" + }, + { + "platform_coupon_redemption_id": 2988799930389061, + "ods_hash": "373e8f22c11b810a9e554e99cace9c88", + "dwd_hash": "d2ed33693c33b9440436f41ce59b64e3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ], + "mismatch": 4118, + "mismatch_samples": [ + { + "payment_id": 3023850646341445, + "ods_hash": "8233e838321b1349449655737f097e6f", + "dwd_hash": "ad666c66096a64d6ce89ab0621da7f8b" + }, + { + "payment_id": 3023893329823749, + "ods_hash": "8c527aca891112c4141cf1fe503daa34", + "dwd_hash": "711d68c52a0c15ce64a0e5c35bcc5468" + }, + { + "payment_id": 3023913239971909, + "ods_hash": "45bf1408090cd62bb91a21bb60c4b924", + "dwd_hash": "49bb3c41a8ea9d1bb1e44bebede380f6" + }, + { + "payment_id": 3023935459231813, + "ods_hash": "95852f3cefbb49f5a9cb85f63791adf4", + "dwd_hash": "e40c70807b6d857f516139e4d994cf19" + }, + { + "payment_id": 3023940158916421, + "ods_hash": "030ab8911dfef7d4e649104583d41000", + "dwd_hash": "9281f449549f5b395a4b002c498ac468" + }, + { + "payment_id": 3023952856336197, + "ods_hash": "bb68aa62e5a5227b5d6e0a3c59c563ec", + "dwd_hash": "6d7916bb9361471bb49ce232d0915791" + }, + { + "payment_id": 3023954417731589, + "ods_hash": "d514f2f75f9554c3b5dda70332dd046f", + "dwd_hash": "bdab650a116202cd2a674056eb510266" + }, + { + "payment_id": 3023961415419845, + "ods_hash": "31a9b7b1b8568785b4ab3da9b225e4be", + "dwd_hash": "a2089176f44704d4d72ed96c0ed40c4e" + }, + { + "payment_id": 3023966894229509, + "ods_hash": "f05af57774f190d9cd3d9ed1a70b84aa", + "dwd_hash": "2c4f9f440b2d8f6190091d146a98a948" + }, + { + "payment_id": 3023973252646725, + "ods_hash": "a544fec2770825b02a19008a02c7aef5", + "dwd_hash": "cd6eb29a0170a41919b8ab426583de2e" + }, + { + "payment_id": 3023975748552709, + "ods_hash": "b72effd1ef4c92746f6ad232f33b776d", + "dwd_hash": "1d4eb2f9101e9dc87821b6f681d11649" + }, + { + "payment_id": 3023993241454533, + "ods_hash": "1ea5c350b757b4290f806d69ca051434", + "dwd_hash": "696738e953c2a110a83aa7bc4b3947cc" + }, + { + "payment_id": 3024004121888837, + "ods_hash": "5166df4dd0a8a2bc46521577e3199a1b", + "dwd_hash": "24d2e113d4b9646357b4c23ef24ecdd5" + }, + { + "payment_id": 3024007765133381, + "ods_hash": "5208ecd12233397f023ca051d31debfc", + "dwd_hash": "d749ae18c0121bc517d8c87c57abddd5" + }, + { + "payment_id": 3024011201414981, + "ods_hash": "837939f3568b68e4d72f48fa639d06e4", + "dwd_hash": "5728739c5d38096579f9ae6a3c599478" + }, + { + "payment_id": 3024011296294725, + "ods_hash": "a2179aa01ab91c6733f5c3f7ee39ced6", + "dwd_hash": "a49907e5ea05f3e97d4b0ffe0a71c066" + }, + { + "payment_id": 2987675344933445, + "ods_hash": "5cbd8977c5aa59e91b908bf16dbba0d7", + "dwd_hash": "a08c77bee97a5f7515123651ef113cf7" + }, + { + "payment_id": 2987676365081221, + "ods_hash": "ba73bf8b33b2a1ae177d843f6ffc3b13", + "dwd_hash": "bf27c8d0c4e4b88819c039e901305119" + }, + { + "payment_id": 2987676716632709, + "ods_hash": "855bf920288e5fdd077c4aa42e3a3ed2", + "dwd_hash": "735528dedcbc01e90ea4deaa20afb425" + }, + { + "payment_id": 2987683067384517, + "ods_hash": "e7ad289125d60015a1a5bfd914c8e099", + "dwd_hash": "000a26665d255245b4a88f32e18aac15" + }, + { + "payment_id": 2987688893549189, + "ods_hash": "f2e0316d16c349f5ad289cadb5d11917", + "dwd_hash": "205520dcb69e7ec85282dab2cfdf335d" + }, + { + "payment_id": 2987701979517637, + "ods_hash": "5578a5fd11eeb1b12a2b2dcf9b9daea9", + "dwd_hash": "751a36862b9d16ff83a830d1712fcccd" + }, + { + "payment_id": 2987705963776645, + "ods_hash": "e2acc7b825cb4bb956c1a056fe75ac15", + "dwd_hash": "5f090e743d76b0e305568891d21aa5c8" + }, + { + "payment_id": 2987707284392581, + "ods_hash": "0fb86c78a045b5deb699f4d50473cfec", + "dwd_hash": "b3258e273ff943615f9f06860333f636" + }, + { + "payment_id": 2987719119178437, + "ods_hash": "fd412b1e3a3b8eb577da435588f44552", + "dwd_hash": "6f8282c3dcc73035bab34a2c7ef5ee34" + }, + { + "payment_id": 2987751058934405, + "ods_hash": "d34dba6c397ad99b93423a118eaaf478", + "dwd_hash": "3271f57ad7b450003df178b93b943823" + }, + { + "payment_id": 2987751099683525, + "ods_hash": "91cc40b82536f81a067309d0f603dc80", + "dwd_hash": "d6615a82a0a13344f221329a832b0888" + }, + { + "payment_id": 2987767966599877, + "ods_hash": "c22942c5398878f523de69ceac16da2d", + "dwd_hash": "6360113ad82ea6ea4d9b52ba4109a584" + }, + { + "payment_id": 2987771051330245, + "ods_hash": "9356e41f6b37a49cc21de9ab7e84e51d", + "dwd_hash": "28a7971abca5976ae5c4efd5c30ef031" + }, + { + "payment_id": 2987777104499269, + "ods_hash": "888a1e2cc5b7c7f6b4c9be80230a27b6", + "dwd_hash": "c386de86c344eab56709dda7df29a0a2" + }, + { + "payment_id": 2987787650880069, + "ods_hash": "696e0bb0c4cf2b2127ec0df882bf8a90", + "dwd_hash": "765b6c7bb9ad97c1ab42b30f2552c059" + }, + { + "payment_id": 2987792157035205, + "ods_hash": "6dcaa7721d5625867aac413a38db91db", + "dwd_hash": "6441b832df2f92a2f828e9bb08d5a1ba" + }, + { + "payment_id": 2987806867851973, + "ods_hash": "8303763dbb0145e38ccd2d39d362cd64", + "dwd_hash": "f480c6730187f8f99ab87f3e6463e327" + }, + { + "payment_id": 2987808143823429, + "ods_hash": "862f68791c0ba25fcac51cb7f9f8c977", + "dwd_hash": "5050cbff645f1807cdab5ae22722bdd4" + }, + { + "payment_id": 2987996112079557, + "ods_hash": "ceff1bc8b4900b8bae585d6b8e633b88", + "dwd_hash": "44e5632a4be3ad0fd0abb189867a601a" + }, + { + "payment_id": 2988022517942981, + "ods_hash": "ac3d0eaf153c2821e877d4eb94dd591e", + "dwd_hash": "273b4ed907bfcced4a52c192715400a4" + }, + { + "payment_id": 2988030886955653, + "ods_hash": "746c06b0f90984fa8c67605a405e2db8", + "dwd_hash": "b462fa4f88feedd3eea299b74e9f12bf" + }, + { + "payment_id": 2988095259579077, + "ods_hash": "30f070214fac66e01971071310deb5fa", + "dwd_hash": "56dd9e81b1708e981c8c45415e5be6b8" + }, + { + "payment_id": 2988096764006981, + "ods_hash": "108e487f4adb8f990e1166fddb413265", + "dwd_hash": "982ad40b101a4d011bc570a743c429f3" + }, + { + "payment_id": 2988098787117701, + "ods_hash": "ae2d74b943c20fe430985b22a8c7e325", + "dwd_hash": "42513522e5194578ab924480adf812f3" + }, + { + "payment_id": 2988217005445829, + "ods_hash": "b76d0bdd57c54ecfa33aee93074118e5", + "dwd_hash": "bc158364bf2362a47a837457e704525a" + }, + { + "payment_id": 2988218178063045, + "ods_hash": "9e52f3093952f5a61c36559f143fbd1f", + "dwd_hash": "f05b837df341f45a76767d8c087576ec" + }, + { + "payment_id": 2988218938722949, + "ods_hash": "065fbdd1bb850ad23209134f23f2abf4", + "dwd_hash": "e0a12895b381b2153aecc6ca8df418eb" + }, + { + "payment_id": 2988371183080133, + "ods_hash": "3b9f66b1a268e6c8a7eea2b2107773cd", + "dwd_hash": "a2163d3f05bf25bab23dd38448287105" + }, + { + "payment_id": 2988382784195205, + "ods_hash": "5a2076cd6dcd5483f3e93d254bbd9de4", + "dwd_hash": "622605a40808d9918490fcd514ffa176" + }, + { + "payment_id": 2988438340276933, + "ods_hash": "716609ee5ae5cea453f6fa1c0133d68f", + "dwd_hash": "5f8eebcc90087d9d01a248481b031549" + }, + { + "payment_id": 2988485083009605, + "ods_hash": "97e16983e48949ec5d50104f76d8f40d", + "dwd_hash": "5d2347c9e9a5c2b91b5928c7d15b96e5" + }, + { + "payment_id": 2988488774322886, + "ods_hash": "a739ad469a09659bb6f40d1f04f6433c", + "dwd_hash": "58151c1e8b40238799d9fe2386ea114e" + }, + { + "payment_id": 2988527710489221, + "ods_hash": "4fbb59c0768c6de976ba03a6a489b82c", + "dwd_hash": "a38bee00c16f4dbc8eab06e5fae1f635" + }, + { + "payment_id": 2988537075913413, + "ods_hash": "124c24cdd956ee2ab0f6be0521f013ac", + "dwd_hash": "ee8aeed2153a631bd8d549dc5ee9725d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ], + "mismatch": 13, + "mismatch_samples": [ + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23762, + "total_mismatch": 53170 + }, + "generated_at": "2026-01-31T23:20:50.418209+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "cutoff": null, + "window_days": 29, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 2, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "0a24e369b3ea2c64a56fd86daeb53e7d74bfd2dbc52f8b7362e7a521aa83aa38" + }, + { + "id": 2964673443302213, + "content_hash": "0a24e369b3ea2c64a56fd86daeb53e7d74bfd2dbc52f8b7362e7a521aa83aa38" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3355, + "records_with_pk": 3355, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10201, + "records_with_pk": 10201, + "missing": 5, + "missing_samples": [ + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 781, + "records_with_pk": 781, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 37, + "records_with_pk": 37, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12029, + "records_with_pk": 12029, + "missing": 7, + "missing_samples": [ + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17371, + "records_with_pk": 17371, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 71, + "records_with_pk": 71, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8321, + "records_with_pk": 8321, + "missing": 5, + "missing_samples": [ + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "9a0f50b7e91d812b7f0d72f74c04c124d199c8959fc067e47eef91f097a02078" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5176, + "records_with_pk": 5176, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 27, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 7, + "mismatch_samples": [ + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "02525e552fe14e2a90bcc4eb303873ef28c94b9ee5082375fd0c0cd29f0c3e87" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026176012357, + "content_hash": "935bbbfef2df9b36574f3c44a57de0e25140b8c44410f73d66be630b35fd7e45" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3460, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 3460, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 19, + "total_mismatch": 31, + "total_errors": 0, + "generated_at": "2026-01-31T23:24:11.633412+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2997, + "diff": -2997 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 25, + "mismatch_samples": [ + { + "table_id": 2791964216463493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793001695301765, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002673295493, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002808987781, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002896494725, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793002980429893, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003066429509, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003159474245, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003243294789, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003323740229, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003618340933, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003705192517, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793003806953541, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902154373, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793012902203525, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793016660660357, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793017278582917, + "ods_hash": "6240cc60909451cfe921c6b468006774", + "dwd_hash": "0ff4fc2068ac913e9820c75ea876b619" + }, + { + "table_id": 2793018776735877, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259897413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793020259995717, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960551493, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2793023960633413, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2851642813353477, + "ods_hash": "5d8dc26a5ccbf08d3c9fe3617104e37e", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2942056832061125, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + }, + { + "table_id": 2956247996190021, + "ods_hash": "0ff4fc2068ac913e9820c75ea876b619", + "dwd_hash": "6240cc60909451cfe921c6b468006774" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "f6d8864448ba1fb599f9baa66a2cf495" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "86515af2a1f33a72b5a1276c62726348" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "d130965393e29361686f5c5f429d104a" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "c64fb8c73af758e82819cb534f27cc9d" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "65bb35f9e52597bd968736e61f03fa33" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "assistant_id": 3045477940824517, + "ods_hash": "12db3d8a937f68d42228ffa5f308e627", + "dwd_hash": "465301b404d91109743ab2a40e9abee2" + }, + { + "assistant_id": 3053833422211141, + "ods_hash": "8f86bbc3e43dfadc7ad6afd3552459f3", + "dwd_hash": "94b78a860329329dae1cb28936dca229" + }, + { + "assistant_id": 3053834039789701, + "ods_hash": "e3663406908d91dc73f83e0a993cc65b", + "dwd_hash": "6983f70d4aab97e6510cde567ae55518" + }, + { + "assistant_id": 3056644876634181, + "ods_hash": "4b04339a37ad45a991d44a84854a9fd9", + "dwd_hash": "1b8d02bec5c6d7d47f9353724cc15464" + }, + { + "assistant_id": 3058170108874053, + "ods_hash": "59286932fc66399f2df1962a853b2cc4", + "dwd_hash": "e897702ad04f87f26969f662617f700b" + }, + { + "assistant_id": 3067857612671685, + "ods_hash": "1b3aec404cd574f9d90f574206d513e8", + "dwd_hash": "09126c1a2272b43b24ecf1335381709d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 3032780662360965, + "ods_hash": "b600f9af1a380a9d89b06a3fe938cc7c", + "dwd_hash": "c240bcc0ce9781131f993bf3f8350476" + }, + { + "member_id": 3034509269552197, + "ods_hash": "aea2bd32a678926b8548843a12fbb79e", + "dwd_hash": "ae76674899e900cb9898a816de9423ee" + }, + { + "member_id": 3037269565082949, + "ods_hash": "ce0651c217e846352343dabe056a5b5c", + "dwd_hash": "ac14310cfb38427eafa7cee385c892c5" + }, + { + "member_id": 3043883848157381, + "ods_hash": "59f5399e89619f9bef84c4d822875e2b", + "dwd_hash": "2e2bfebf9445c94054d237b647b5ed24" + }, + { + "member_id": 3048238811858693, + "ods_hash": "e4b5578e7c6ee2ef032517b34408039c", + "dwd_hash": "c954b6c3e5796dcd2ef889128ce99ae0" + }, + { + "member_id": 3052749341853317, + "ods_hash": "cafe61c0e3683e460ec30bd3c52510a0", + "dwd_hash": "cdc2943f4870f9c5c0bf9ff3ec444111" + }, + { + "member_id": 3054195561631109, + "ods_hash": "0e4513465f760267d5bdef51ed349dc8", + "dwd_hash": "99f3ea78ed96ea8e06bee69bcbfdb161" + }, + { + "member_id": 3055176918828421, + "ods_hash": "bad6c71354cdd4162018a12be1a36576", + "dwd_hash": "6d458ea9679f98b78a575faf77bb3702" + }, + { + "member_id": 3062388521698821, + "ods_hash": "e3d06b5e55ef8302539f323e5b2a3184", + "dwd_hash": "3e123e4dad3f2fe064e8a9e676892eb1" + }, + { + "member_id": 3066773303512389, + "ods_hash": "6b22b414a97ef65237a40d5b8d2d8b8f", + "dwd_hash": "aff1c8110e009b300b9ea69fdc698900" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 358752.92, + "ods_sum": 356188.54, + "diff": 2564.3800000000047 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 20, + "mismatch_samples": [ + { + "member_card_id": 3032780662688646, + "ods_hash": "6fff81d6d97588b98c02a845d73fe670", + "dwd_hash": "5c194b0847894011383fe30b7f185ea8" + }, + { + "member_card_id": 3032781195824005, + "ods_hash": "876b9c19b0ad89083642ac4828bb3db7", + "dwd_hash": "dfcd82abd0d5b839719d979b6b3f0b06" + }, + { + "member_card_id": 3034509269896261, + "ods_hash": "6b4c5e2672ee27073d290229df388aef", + "dwd_hash": "d169ba6a6c4637197c5ad6d5ad0373e1" + }, + { + "member_card_id": 3034509687458885, + "ods_hash": "2200ee4f9a98b77180405b329120a0e7", + "dwd_hash": "049e2972a2c8ffae6dc9cf6275bc300b" + }, + { + "member_card_id": 3037269565459781, + "ods_hash": "99e865958a72e6e5ee288227f93fa70d", + "dwd_hash": "fbb0c5957a3a612777b086e3d4389398" + }, + { + "member_card_id": 3037269815201093, + "ods_hash": "d622c0a4fd9d251e96d9e77c00d07de2", + "dwd_hash": "a00e9a82a2e294aac3a0318558fb4f29" + }, + { + "member_card_id": 3039974286231365, + "ods_hash": "43ff97a970a57a723e99614b97fa0f1f", + "dwd_hash": "e4c9e84e8ebcbb4cc0d624ac67c835c6" + }, + { + "member_card_id": 3043883848534213, + "ods_hash": "e99d6240e9bc8590e56ef6b91053b89f", + "dwd_hash": "28a8badd1eb5e300b5b370cbe4e3c5eb" + }, + { + "member_card_id": 3043884200789893, + "ods_hash": "7f5b9245b1a00e0eb0e59a600aaa9f35", + "dwd_hash": "327fc78b3d9615c9936bfe038bd6c802" + }, + { + "member_card_id": 3048238812202757, + "ods_hash": "a2726dd0a3ae6bf928f3aad43a4f3d4b", + "dwd_hash": "99a72cdb54dd6da31636e586533914d4" + }, + { + "member_card_id": 3048239462909701, + "ods_hash": "864cf1e6b273b8c56098deefce4bd5ca", + "dwd_hash": "d6023e64d7a6f72936fe64264d4d37d9" + }, + { + "member_card_id": 3052749343442565, + "ods_hash": "1b735f8edfd83da4a89f6a33bfbccdf9", + "dwd_hash": "f1a0671a9022298e73d782ad775e9c67" + }, + { + "member_card_id": 3052750402162821, + "ods_hash": "5a536e7b4e427b7eb2c451aeda1390bd", + "dwd_hash": "fce93364484ff6715b54ee70969174db" + }, + { + "member_card_id": 3054195562007941, + "ods_hash": "ebfb77bddcc5f7980bbd9f6848020b13", + "dwd_hash": "7bfab03a555723dae25e69610ffa71d4" + }, + { + "member_card_id": 3054195913755845, + "ods_hash": "51dd0309ed622dcaec04c619acf8736d", + "dwd_hash": "0680c9507c431be4acf68dbe0f08188d" + }, + { + "member_card_id": 3055176919745925, + "ods_hash": "2633a27d5986d4ec171447c84a038b00", + "dwd_hash": "48cd8a6d12c52cc1f459924c4de35d6a" + }, + { + "member_card_id": 3055177241628037, + "ods_hash": "38c6d72db8f56ef81d9b092a4d9584db", + "dwd_hash": "0f7215717144d1bf25bbff11f6842f42" + }, + { + "member_card_id": 3055567606646661, + "ods_hash": "7106561629854140a3023f7ac2802a4c", + "dwd_hash": "ea751b792457e9414ae58c0ed852ace3" + }, + { + "member_card_id": 3062388522452485, + "ods_hash": "4747cbf7e40d5cff9d1f756ffc0efb7d", + "dwd_hash": "9a3230ec996f1e7a3018c69419366742" + }, + { + "member_card_id": 3066773307755845, + "ods_hash": "ec37cf60d8c1d91f160d7ccf66d4a2c9", + "dwd_hash": "3749b1edf3daaa0cede0679d5b755b95" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 3047844876503237, + "ods_hash": "e031e38f24bf2f639fedbdde97f30650", + "dwd_hash": "7db6dead2458f9d56556509dec8b9b1a" + }, + { + "tenant_goods_id": 3053571772270213, + "ods_hash": "009d00acebd3ff550da04cc4482f2c28", + "dwd_hash": "440e378fcb708453c939052bc6cdfa45" + }, + { + "tenant_goods_id": 3069455434189829, + "ods_hash": "83c63566574ecbf014a66574c0f950b0", + "dwd_hash": "dbe759821f925e72882d4962f4c16f7e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "28bb44a97c6414e0fdeb355299b32030" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "2c730bb2c9e26f6ac5867608cf967381" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "2c1c0501d87338797066f2cd4aed7d46" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "b8c214b4df7ae60abc5cb2abafa546d9" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "7e307fab910d04df28584485cca85a4a" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "072aed5a0d367b7e5b11242e47ae27f2" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "5756207bba54e195ffcbb28bb9bf8091" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "d62b68dfb2e6ab1e6254f2dc45bfaf5a" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "a2ec80cc557f7e2c56866ed45435da57" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "4552eee0b1d2da5295308598ad174be0" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "6bc4bbf4c82551c9649dd8da64684c7a" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "f8b61d5281e3066d1750e8fa7dd690fa" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "0db31c7839565a88ea42b3dee5989b8a" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "111fff91ce30c6c887ec0e14c597af36" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "a65c73a10df8a6b05ceb3e04bdaed0e0" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "cdfdb3ede9b317b7ed22341d9e4ad903" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "f1bfe23e68f34dc9e510d5780ef6e891" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + }, + { + "site_goods_id": 2793026186219589, + "ods_hash": "d393289cc2fcc735079d7be533345643", + "dwd_hash": "158d9817ea74d6392349e07184870322" + }, + { + "site_goods_id": 2793026186727493, + "ods_hash": "b725466f0cecd8a8655cc546ae9a3477", + "dwd_hash": "0d76d5584242ca2e37ebc60802b5bf68" + }, + { + "site_goods_id": 2793026178469957, + "ods_hash": "530d9050b95dd3fcdaade34c2e3bb4b4", + "dwd_hash": "241e887f43eb8a94aeaeeeabfabf7e23" + }, + { + "site_goods_id": 2793026178977861, + "ods_hash": "f8df62d43eaf0cecf21ea423f541011c", + "dwd_hash": "cdfdbce5a378e74c37065ce7dd437c52" + }, + { + "site_goods_id": 2811811188836101, + "ods_hash": "2d95ff75a3d570441a20157466a29ab5", + "dwd_hash": "4e4f20e6898a6de22435ede1a3e56080" + }, + { + "site_goods_id": 2919623264751045, + "ods_hash": "9ff114e835789026edba07d85f0d8059", + "dwd_hash": "1a5a383141c1e36405436acdf89a973d" + }, + { + "site_goods_id": 2793026432110725, + "ods_hash": "a48a8f55e3e5b0c23be9af9c1de47371", + "dwd_hash": "5b04b20c0c89013bf8a62ba57979b478" + }, + { + "site_goods_id": 2793026429620357, + "ods_hash": "48156ace8006fd89d4ad295b38cad991", + "dwd_hash": "076017c1e7e2f75ab5e65f0315c4fa54" + }, + { + "site_goods_id": 2793026430095493, + "ods_hash": "d09454f5d771a8ec04f56be6ecd6a216", + "dwd_hash": "e4865e68ab8f64d6027f35ee3e614a97" + }, + { + "site_goods_id": 2793026430570629, + "ods_hash": "2bdfc05c6725c0b3c28e137655ed09a4", + "dwd_hash": "a7e73439a368f66ea92da244161f2f89" + }, + { + "site_goods_id": 2793026431045765, + "ods_hash": "600ac85f8e02fcdfc20c812e97967221", + "dwd_hash": "0a1e29b43050ccfdfe06ba494ea52fe1" + }, + { + "site_goods_id": 2793026431504517, + "ods_hash": "e2a6585661ae6d44f7e5b2a4dc084028", + "dwd_hash": "0507c20443c0ec4fca2d6f4898e913ff" + }, + { + "site_goods_id": 2793026431799429, + "ods_hash": "65c19a85ab3c50060fa2bba7b822505a", + "dwd_hash": "ed8d5befe54adf23d2e0bcbc3bdecc71" + }, + { + "site_goods_id": 2794695800246405, + "ods_hash": "856261cce351a53fdd41a481c750c983", + "dwd_hash": "a2430a91b07eae577f6e0d91d3565a20" + }, + { + "site_goods_id": 2794695800443013, + "ods_hash": "7cd0232d760222e7f3257f0c83ba2137", + "dwd_hash": "df1f44237a8d1ada6df3570db73cab0f" + }, + { + "site_goods_id": 2794695800770693, + "ods_hash": "273e9f91b02535fcfc6130a10737ba40", + "dwd_hash": "89df2223c38956dfbfe7df412edaa61f" + }, + { + "site_goods_id": 2801925513727045, + "ods_hash": "3c6e11a2910515190353791b9d18c27e", + "dwd_hash": "05f9c1ed4c52b893bb495937c1e46e1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2882, + "ods": 2997, + "diff": -115 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 57169.8, + "ods_sum": 60900.33, + "diff": -3730.529999999999 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + }, + { + "column": "ledger_amount", + "dwd_sum": 348798.59, + "ods_sum": 363988.31, + "diff": -15189.719999999972 + }, + { + "column": "member_discount_amount", + "dwd_sum": 20970.02, + "ods_sum": 21298.74, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 146832.65, + "ods_sum": 132582.4, + "diff": 14250.25 + } + ], + "mismatch": 2882, + "mismatch_samples": [ + { + "table_fee_log_id": 3031559653985413, + "ods_hash": "a4231f36c9e17310e5fb9d1cd9d00c57", + "dwd_hash": "b4ddc5a912f43c767d4a58ec3a133f1a" + }, + { + "table_fee_log_id": 3031559793577029, + "ods_hash": "a6653d3a8b9d04101d09fa54587351cd", + "dwd_hash": "8007376af5617d2e25e791611f3846f6" + }, + { + "table_fee_log_id": 3031580140031045, + "ods_hash": "c9904c84b048f900a8f22fcb0f6d16a1", + "dwd_hash": "c765827ddc6af911670c6aa4084a9c8b" + }, + { + "table_fee_log_id": 3031591025855557, + "ods_hash": "0a28f9d305631f2420735b0ec7f4d932", + "dwd_hash": "b2a7a7df125746f9087045e65c13a860" + }, + { + "table_fee_log_id": 3031604210961285, + "ods_hash": "f383fd1ac981ecc2f39001437c082170", + "dwd_hash": "b0a9089dd7781824ad75746865d1d691" + }, + { + "table_fee_log_id": 3031604945357701, + "ods_hash": "0db1ba92b205d7011c5a77dece15c891", + "dwd_hash": "b9fbb6994629c2f3c416ffb8602616c4" + }, + { + "table_fee_log_id": 3031646428072837, + "ods_hash": "d9b5f54f80d0bfa8c4f012e9fca7657e", + "dwd_hash": "9ba7d31747cc9be59c78c89b5d80371c" + }, + { + "table_fee_log_id": 3031646482844741, + "ods_hash": "6fce90ad8252f8233dd8354b0836f9a8", + "dwd_hash": "3608d1ef3e73219aaf77ebd6ba820848" + }, + { + "table_fee_log_id": 3031647113382789, + "ods_hash": "503b40495ea92f9de20759c4d106a114", + "dwd_hash": "7dba7d22cb7fd6a06e8498b313834da7" + }, + { + "table_fee_log_id": 3031653085531013, + "ods_hash": "4e0857c801f7c06417c53b8d2edc2bd9", + "dwd_hash": "d6770f38a83cfa6d344f126191dcfdf7" + }, + { + "table_fee_log_id": 3031700025838469, + "ods_hash": "7cf57c36ca16c098986309f667c159f3", + "dwd_hash": "d73b5126df88db3059e93ee6118354a1" + }, + { + "table_fee_log_id": 3031742588291909, + "ods_hash": "fcbd92f83ef9aa675abc0e1b934fcee5", + "dwd_hash": "9c9731fcc734d1f7195cd2fb04aa0239" + }, + { + "table_fee_log_id": 3031896028252997, + "ods_hash": "5b7a0cb3f8f67301d56dfc33951a3edd", + "dwd_hash": "2be5912a9be79e92ee87c0f13c374463" + }, + { + "table_fee_log_id": 3032262315019397, + "ods_hash": "44a6246f7ce7478d12270b01054bb1b5", + "dwd_hash": "98aaad870a6f7e4eaebdccfb586220c0" + }, + { + "table_fee_log_id": 3032291881634885, + "ods_hash": "d44a8cc57db59c5b228af1f216744675", + "dwd_hash": "2bf0272fe2a5660fe57209e56564e49d" + }, + { + "table_fee_log_id": 3032388006530181, + "ods_hash": "43e2c94ec47874dfa344d8f3687cbbed", + "dwd_hash": "2a06d1afe794155f1489136cb183cc91" + }, + { + "table_fee_log_id": 3032388075818117, + "ods_hash": "e465269bd822a7bf542494e41b174750", + "dwd_hash": "f437022f1b14a0629fe07622a967078d" + }, + { + "table_fee_log_id": 3032388340042629, + "ods_hash": "fe7c5fbc754085fd693938004fd2e660", + "dwd_hash": "da07a00eccf7c93f3bfd04f66816e283" + }, + { + "table_fee_log_id": 3032390342462533, + "ods_hash": "ade76ebdbb6d33dad7da38253969e6d1", + "dwd_hash": "556d5e7b7d91758817e598cc9796fdc2" + }, + { + "table_fee_log_id": 3032467840732229, + "ods_hash": "4b315d25146f605bb632ebe66115a841", + "dwd_hash": "72ad465b274c29fa5bf4b8c442ca1a83" + }, + { + "table_fee_log_id": 3032476573535301, + "ods_hash": "1df0fcde75b736f75c70e659dc373117", + "dwd_hash": "d69b4b804f440b03cdb47a5a36072af5" + }, + { + "table_fee_log_id": 3032476648852357, + "ods_hash": "93c50db023681fc9ade0ab83bffc6dc6", + "dwd_hash": "994a96583a1c4f7d29600c2848160253" + }, + { + "table_fee_log_id": 3032490422373253, + "ods_hash": "e89063861189f3b5c2cdd6f76ef9092a", + "dwd_hash": "4e72ea4ba5f23a0cc81d83fe9505cca6" + }, + { + "table_fee_log_id": 3032499558157125, + "ods_hash": "bb7cc8b0131203b43488e074f93b9c51", + "dwd_hash": "32bde565f3dd2fdd0048a0d26ef4ea91" + }, + { + "table_fee_log_id": 3032509393144901, + "ods_hash": "cde9de300174c5790118527929a41703", + "dwd_hash": "c53348671aafeb9d25c8407f2960aabb" + }, + { + "table_fee_log_id": 3032514936408965, + "ods_hash": "531c96d4216026e45e4aaef06c9742fe", + "dwd_hash": "9266b4a3687e9066dd91859c152e8fcd" + }, + { + "table_fee_log_id": 3032530123787333, + "ods_hash": "dd8e57e5ab30124c0020e16e98a9d6b9", + "dwd_hash": "d8ffc976e74cdb34a437114a5e2c1767" + }, + { + "table_fee_log_id": 3032531255479365, + "ods_hash": "26ca68bf884b05d64b3503b3c0b89254", + "dwd_hash": "045cf98d57b8dd391e6ef8a5a908725c" + }, + { + "table_fee_log_id": 3032536349264773, + "ods_hash": "db367f2007a1d3d541633ee98a09d4ca", + "dwd_hash": "e3f226c4b89a779f4c1a81ef9377afe2" + }, + { + "table_fee_log_id": 3032538554715013, + "ods_hash": "e7ba1c3954523564cd0c445ca65dc4cf", + "dwd_hash": "e7a2660d01b265d5f1445d7d8d65641c" + }, + { + "table_fee_log_id": 3032538605521989, + "ods_hash": "806d71c8f28e7f984f33b8edb9a27333", + "dwd_hash": "a1f3fb62f51289821653e79d4bf62876" + }, + { + "table_fee_log_id": 3032547975646021, + "ods_hash": "5f40aa0b0e8ffc0a9c9e01636be11d6b", + "dwd_hash": "639fd1d438f1d8d86f30687264bb04ae" + }, + { + "table_fee_log_id": 3032548020833093, + "ods_hash": "09219b3edacc715788928b6a66939d58", + "dwd_hash": "2e65f265c4b8d1c57903b6e7260dd4e0" + }, + { + "table_fee_log_id": 3032569593547845, + "ods_hash": "4f6c8732b2f0eecf1e0ae6207a314cd3", + "dwd_hash": "39d7e237a67ed4e9e19a70dbff37f51d" + }, + { + "table_fee_log_id": 3032573208611909, + "ods_hash": "840152fd5bb0866eda678b7e2b5d341c", + "dwd_hash": "c6257b04becd8a300027b6dd1c066e0d" + }, + { + "table_fee_log_id": 3032582392908933, + "ods_hash": "0d9476468494e4c30d0cec7b26de0648", + "dwd_hash": "05484960ff6aac3bc7013ff9d6d9491c" + }, + { + "table_fee_log_id": 3032586920758149, + "ods_hash": "94176fea2a3a615ad0d4acdfe1cc9e6b", + "dwd_hash": "9ae9fb94ff657c994d182f11dc537267" + }, + { + "table_fee_log_id": 3032589576997957, + "ods_hash": "e699ad9c7313e975d25efcbf30047347", + "dwd_hash": "a422e03a6526d1032e93bddcb69a3a04" + }, + { + "table_fee_log_id": 3032591296498821, + "ods_hash": "1df175d6f3ce72e4a2859d93ead87b08", + "dwd_hash": "b708bb00876a6194f273f645544eec2b" + }, + { + "table_fee_log_id": 3032596136610949, + "ods_hash": "b7050d384a4ce121ba97b0cfac486410", + "dwd_hash": "388ce6c6015247a754ceed73789be46a" + }, + { + "table_fee_log_id": 3032596384910405, + "ods_hash": "2d87b3318b7c3dc3ccc9434b56c01c0c", + "dwd_hash": "d0788f984875f2aa1f53c9d4958b2235" + }, + { + "table_fee_log_id": 3032598310341701, + "ods_hash": "d43d0f08ab8f0ef700ef0e8c1a3d1e29", + "dwd_hash": "edac5b654d04227d4128541b8c4b36a9" + }, + { + "table_fee_log_id": 3032600070311045, + "ods_hash": "f24ca3448c64293b317e5f375bf7cdf1", + "dwd_hash": "f255f4e067cf7754d9f12c7f0e664ae4" + }, + { + "table_fee_log_id": 3032601787796549, + "ods_hash": "1f8fcda24ead52c1bf3d8840e57830e3", + "dwd_hash": "6a47aa474e11434c0062aca37dd2e381" + }, + { + "table_fee_log_id": 3032603778223173, + "ods_hash": "49670be5aade3987ab50baab457ca59a", + "dwd_hash": "5bf9b72b1d81cd789beba2c8613e1912" + }, + { + "table_fee_log_id": 3032608238963845, + "ods_hash": "1070364996f7c22ddfb76aa427af5927", + "dwd_hash": "7f55a88ced1b05b280546c56d080fa2e" + }, + { + "table_fee_log_id": 3032608727223429, + "ods_hash": "21b2b472e1152b31441ad0697a96ccbd", + "dwd_hash": "648bb9589543c7d98c6b4c075a3987a4" + }, + { + "table_fee_log_id": 3032626777984133, + "ods_hash": "62813b542d701218de0b95b7429979c4", + "dwd_hash": "dc6e0a46732f5b3779ab94d1de3cde5b" + }, + { + "table_fee_log_id": 3032632194124613, + "ods_hash": "679988e002f47bd79a713581aa13d290", + "dwd_hash": "e34d37ff20bdab4a671e331137cd45d1" + }, + { + "table_fee_log_id": 3032632254565509, + "ods_hash": "31dd30a4d771bde5f52bdcd9b638798d", + "dwd_hash": "fbfe553fe78d8cc98fa0f40b0efffda8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 769, + "ods": 785, + "diff": -16 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 237326.17, + "ods_sum": 243794.62, + "diff": -6468.4499999999825 + } + ], + "mismatch": 769, + "mismatch_samples": [ + { + "assistant_service_id": 3072498777589125, + "ods_hash": "2060c6a06b9854434b32079db51dec29", + "dwd_hash": "6bbe9f2e16d163cf9d9e176b7658148a" + }, + { + "assistant_service_id": 3072489929852549, + "ods_hash": "38c0c97b9a50759dea389e54095fc22d", + "dwd_hash": "816186ae61c2d82d13e6b430c2c06d25" + }, + { + "assistant_service_id": 3072432452519365, + "ods_hash": "cc8a07bfcda75b5b69b47667e8e2b034", + "dwd_hash": "4e6a31e461651e4d00dec46a21e1c3a6" + }, + { + "assistant_service_id": 3072432452044229, + "ods_hash": "a0225ebc7ed7ca34f702c01d87dd004d", + "dwd_hash": "525a901c8549889226106156b4b9e587" + }, + { + "assistant_service_id": 3072332756567429, + "ods_hash": "c4278ef063798d19c0eb71990865f42f", + "dwd_hash": "4a00f343b03f6274edd5431b323eab0f" + }, + { + "assistant_service_id": 3071367860668421, + "ods_hash": "3eed257d25edef824383d9262c240fb7", + "dwd_hash": "b95f589c73ec7823a40ce76ef2b3ce8d" + }, + { + "assistant_service_id": 3071358041343941, + "ods_hash": "0762726897a211eb8c39e23dd9edf924", + "dwd_hash": "7df403fdc5abad644dc0e1a77df8cf27" + }, + { + "assistant_service_id": 3071351518152645, + "ods_hash": "d47bd598cc12eb43d5bfe513cf26c831", + "dwd_hash": "c4b6cb272689bda9fd1f15804637f38b" + }, + { + "assistant_service_id": 3071287355164549, + "ods_hash": "0b8919944649bf5012db2685c4885ec7", + "dwd_hash": "f9cfd335caae6f9044cb2107ed8f47a6" + }, + { + "assistant_service_id": 3071287354689413, + "ods_hash": "b53e4e8646bbaeea6f3807f2d52eed81", + "dwd_hash": "7bce358a8696e6ae48cd97ad9452c63c" + }, + { + "assistant_service_id": 3071254450259781, + "ods_hash": "f948df396f3fcff112da78ca61438423", + "dwd_hash": "eb31a650f75fb65935f5cb2c523bb172" + }, + { + "assistant_service_id": 3071254449801029, + "ods_hash": "a9cfba5ae75c346813854e20e2f5439a", + "dwd_hash": "32a090bebac98ed6bed12b1fbad34e86" + }, + { + "assistant_service_id": 3071238591776773, + "ods_hash": "eaaaa91e927a3c4eb57f78dad1b1b99d", + "dwd_hash": "a7640e27d5baec2e056336c907e4bcf1" + }, + { + "assistant_service_id": 3071222366504965, + "ods_hash": "574a3df052524a843df9356ea6fe30ae", + "dwd_hash": "772c0c0be612f68a93204fcea8b68b6c" + }, + { + "assistant_service_id": 3071188925302597, + "ods_hash": "3c6f0b49f1efe2d11cbeb8c624d90c76", + "dwd_hash": "75d2055faacaa3d1ca5b128de2656526" + }, + { + "assistant_service_id": 3031647113857925, + "ods_hash": "f1e2708a2721e0cbdf787d4fceadd0b6", + "dwd_hash": "a423b576523a3c113543a15f7b218800" + }, + { + "assistant_service_id": 3032586921134981, + "ods_hash": "07ed88b395961692bd926998a3e266b9", + "dwd_hash": "6699701f52c5d1ca67f6dda0e6ee1fc1" + }, + { + "assistant_service_id": 3032616943061893, + "ods_hash": "d4a8b03fa531699e10265dda59fc25be", + "dwd_hash": "e5e309b1013c41988c91c1666557bff2" + }, + { + "assistant_service_id": 3032705702579333, + "ods_hash": "443587ba69ca2a2c6c1faac7780b4444", + "dwd_hash": "99ea9a0c241f2a7a9b99cf059b181552" + }, + { + "assistant_service_id": 3032752214559813, + "ods_hash": "5d2866baafed012becdc480a30f38174", + "dwd_hash": "38bd6219def38a363ec9e54e1085661d" + }, + { + "assistant_service_id": 3032784447064903, + "ods_hash": "78dfa9a8c3a5de6e97990feaa01807b3", + "dwd_hash": "83ee47c42c466f3425565f7e5f5329ef" + }, + { + "assistant_service_id": 3032784934783877, + "ods_hash": "d00943612933a43919471188eee78d0e", + "dwd_hash": "ffd2c8154de7a52cea4c9affa5b115b1" + }, + { + "assistant_service_id": 3032800838175557, + "ods_hash": "ea8d15f56368eeb3493eb24ec52872a9", + "dwd_hash": "3b76e4d4371bcf7b3e08c49702e5d741" + }, + { + "assistant_service_id": 3032832541150085, + "ods_hash": "2b22c461eca2a6aaebc2daa4524998ee", + "dwd_hash": "c02adff2d044f371fdd1bf12bd7bb19a" + }, + { + "assistant_service_id": 3032961529236613, + "ods_hash": "80dc15fb09dfdeb7a88854872839798a", + "dwd_hash": "a49478f3e9bd4b78021a59e24adbb177" + }, + { + "assistant_service_id": 3032984261888837, + "ods_hash": "8f704fa75e381e4a043f259734da1e93", + "dwd_hash": "72acc8ba05ff710d06d0177f9259483a" + }, + { + "assistant_service_id": 3032992040815685, + "ods_hash": "ce8bac9f066e7f82732538f4e1fd4ecd", + "dwd_hash": "29c49eaf8316feea66b7b44759d09120" + }, + { + "assistant_service_id": 3032992041225285, + "ods_hash": "4099b129c64e77be22d4c2c61bb8ca99", + "dwd_hash": "7268c5900ab95f7bfe895a9f6cd583f2" + }, + { + "assistant_service_id": 3033035276454789, + "ods_hash": "ff65bf56b437ce80e65ab2d1a6d53b1d", + "dwd_hash": "d1df8cb1d17734f9be975fcf5626ce9f" + }, + { + "assistant_service_id": 3033036460723333, + "ods_hash": "e362e387b89d2efa318a61f99be26bb5", + "dwd_hash": "7f79310e014d395fc6997dc4eeea43bc" + }, + { + "assistant_service_id": 3033059689581637, + "ods_hash": "ebdc5c0eb80b916238094361289bcd39", + "dwd_hash": "fac55aa6b96da1559d71bebea6fb3032" + }, + { + "assistant_service_id": 3033075316296837, + "ods_hash": "dcbdcf3566b5260dd29aad560297861e", + "dwd_hash": "2c1f11ffc297623876456d13f73ada53" + }, + { + "assistant_service_id": 3033151343856773, + "ods_hash": "7743bf02b82869664d88cea5deb6b582", + "dwd_hash": "93fa71d80c10fa11d888e94232188db3" + }, + { + "assistant_service_id": 3033151344282757, + "ods_hash": "0a63c5dddef0f9bf784d6e2edf81d8cb", + "dwd_hash": "a3e04d9c82481709d50b2c4bf59d0b4b" + }, + { + "assistant_service_id": 3033153312410501, + "ods_hash": "babb12eb3e1181b18c8f753f2eb1a127", + "dwd_hash": "03edd8e8df9423f6086f2143e27ff753" + }, + { + "assistant_service_id": 3033216557583493, + "ods_hash": "fe0f61fc86f86ed1a33ca244bed02116", + "dwd_hash": "9438baf7cd03531f45364736cf4ab7cc" + }, + { + "assistant_service_id": 3033216557993093, + "ods_hash": "2cd528edd393f80fd2b1128816261118", + "dwd_hash": "cd07f215eff345fc5630d797e5b9f4ac" + }, + { + "assistant_service_id": 3033994724952965, + "ods_hash": "ff4e832664a85097c72fa71ce096f7bc", + "dwd_hash": "ea50c10d2677936165a3eb14d3f98d42" + }, + { + "assistant_service_id": 3034136732207941, + "ods_hash": "facaefd5fca52ab13f05609dcb85106d", + "dwd_hash": "e85ee9ec0a91d5a0e49990a605cc3e0d" + }, + { + "assistant_service_id": 3034136732617541, + "ods_hash": "f89451d15afcc2365cd117e98b30b428", + "dwd_hash": "a88b976225db0e23954f30df51bb2007" + }, + { + "assistant_service_id": 3034167772171077, + "ods_hash": "2974a41e96ec9af5136e76762e10e639", + "dwd_hash": "8b06b19007d66b3e91fca4b9e599fce0" + }, + { + "assistant_service_id": 3034293330824325, + "ods_hash": "cd643ef9dec95959162d0048753422d3", + "dwd_hash": "3b26bcee0e10f6986d05372d53c7d7c9" + }, + { + "assistant_service_id": 3034301979495301, + "ods_hash": "c6254f9287a35d97e91fa7907fcb8f9b", + "dwd_hash": "49d30627dacf878b8883677a4404f283" + }, + { + "assistant_service_id": 3034387344018309, + "ods_hash": "b70c152f2ecb0b91e8e9f54546dbc7e4", + "dwd_hash": "0f53a11b08e0f1ca83d2d7d71cf421e7" + }, + { + "assistant_service_id": 3034392506305605, + "ods_hash": "0a020086563807ddfe0674dd41a3ae5e", + "dwd_hash": "c222dc096d1c6164c8c406e350205d80" + }, + { + "assistant_service_id": 3034424323247173, + "ods_hash": "6a041f02ecc8dee729d1b027fc8ef152", + "dwd_hash": "fa51ab5608179291a794a46ef0b3c283" + }, + { + "assistant_service_id": 3034503749291141, + "ods_hash": "df5cf4fa828c4cc2fffcc34b3bc2737a", + "dwd_hash": "db3c2cf3d19a05c1b2d3caf65f2505d0" + }, + { + "assistant_service_id": 3034510282181445, + "ods_hash": "64f62a918461b99d43a2cbdae7621982", + "dwd_hash": "370fda095843f99ab3f6ca813a1c4129" + }, + { + "assistant_service_id": 3034510282607429, + "ods_hash": "c60aca8533cdb010a0c5472e501d984f", + "dwd_hash": "a2d867835186af109e0339b744c0224b" + }, + { + "assistant_service_id": 3034510283197253, + "ods_hash": "12dba63c9177f4fdeeed81bfdd833328", + "dwd_hash": "7edb6e5958d29477b9aea9b64a25249c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2272, + "ods": 2349, + "diff": -77 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 150912.0, + "ods_sum": 155904.0, + "diff": -4992.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + } + ], + "mismatch": 2272, + "mismatch_samples": [ + { + "redemption_id": 3031559794101317, + "ods_hash": "d3b6a010b5606dad4d4f591400e2de9a", + "dwd_hash": "721637552736d25012ae3438f75cb277" + }, + { + "redemption_id": 3031559794101318, + "ods_hash": "3c38dd63fb29195e2f0491ac30a216a7", + "dwd_hash": "ba9c2a2104dbdd31b3e927af5677dca6" + }, + { + "redemption_id": 3031580141112389, + "ods_hash": "2ddf2b0b14bece86caa237387ed74314", + "dwd_hash": "7a7c5c2afdeac4bee1d858f9072e4e26" + }, + { + "redemption_id": 3031580141112390, + "ods_hash": "566c4dad317e4b6537067429da758e6d", + "dwd_hash": "f17f6514d3314decc5e7d1ad817d188b" + }, + { + "redemption_id": 3031591026478149, + "ods_hash": "ae98eea0e5b63ee944f721bc7c14f031", + "dwd_hash": "b7b289faf0f54730980ee5793b025825" + }, + { + "redemption_id": 3031591026478150, + "ods_hash": "2026be819bce666e517ee4e7527800bb", + "dwd_hash": "cc84848e4793284a6e9341601b1b621a" + }, + { + "redemption_id": 3031604945914757, + "ods_hash": "e94dd06ccbf0250886d79fc0b03d90db", + "dwd_hash": "43f9acfa3890b393114c09f835af798b" + }, + { + "redemption_id": 3031646428629893, + "ods_hash": "7d9e8d149c603c3b21bf65bccdc7fde8", + "dwd_hash": "74a8a8e2294d8659e8693b719807a559" + }, + { + "redemption_id": 3031646483352645, + "ods_hash": "5ca028125cb4a43cb2fc0d22f71ecbe9", + "dwd_hash": "b8b224ca0d4bdce819147f52655dee54" + }, + { + "redemption_id": 3031653086219141, + "ods_hash": "f78c01e5c5a076b2fb02ebadf6555cff", + "dwd_hash": "24dc2a3afa400ab989be59f52d26b531" + }, + { + "redemption_id": 3031700026379141, + "ods_hash": "2e113c88276083b1211227d2953e01ca", + "dwd_hash": "ec9b7dd3a44f54576124a2a9a622bf59" + }, + { + "redemption_id": 3031742588881733, + "ods_hash": "d0d6ef61213ba3870561b30ab7cdc14a", + "dwd_hash": "4a79e4e3876e763de8765625e9ff8ed0" + }, + { + "redemption_id": 3032262315560069, + "ods_hash": "6eb9ebe384c7f511f22ade1298491ca9", + "dwd_hash": "f5681ab06b5c5a88cbaf29c7546420c7" + }, + { + "redemption_id": 3032291882159173, + "ods_hash": "11eea89b8c28480039e3b84cc1441d4e", + "dwd_hash": "66ee2cf53879da3bb5deaed40e11971a" + }, + { + "redemption_id": 3032388007038085, + "ods_hash": "88dd3531c3dbd2fa18c2e712f04e831b", + "dwd_hash": "8e86d9502f066b421cf8e4e1decd2699" + }, + { + "redemption_id": 3032388076342405, + "ods_hash": "b3135bd8e5892d044a381564eef17027", + "dwd_hash": "e7801130d8c7bf31d4c79ecf90be2072" + }, + { + "redemption_id": 3032388340599685, + "ods_hash": "3bb409664ff552e370e9cf012addf285", + "dwd_hash": "0feb620370471eadc48512f63cbbc88c" + }, + { + "redemption_id": 3032388340599686, + "ods_hash": "10c72a985d7c0c44c5715d835ea153a6", + "dwd_hash": "4b447a6794b5917f24d7311bbb955b04" + }, + { + "redemption_id": 3032390343035973, + "ods_hash": "53344df20c7a35e385fa5a06c93ae465", + "dwd_hash": "ef633f1ca14c14bc042dfd0bf33f8c2d" + }, + { + "redemption_id": 3032467841453125, + "ods_hash": "5557882541cc33349b54ffaf2d589e63", + "dwd_hash": "18c4c74d84382595a2e198f3f1a19e39" + }, + { + "redemption_id": 3032476574026821, + "ods_hash": "2ff498c6a7c3711c1c964b85d48f2736", + "dwd_hash": "811271ef5a6f3036f211b3b6df745913" + }, + { + "redemption_id": 3032476649540485, + "ods_hash": "ef1ab340e34683d101e0f44afd5e30f3", + "dwd_hash": "9637bbad93d886cd41ed1a914e71b9fc" + }, + { + "redemption_id": 3032509393685573, + "ods_hash": "498a3ea7de7dc676946c8b07f408a01f", + "dwd_hash": "168efdf7b6d212c3346f606d03029921" + }, + { + "redemption_id": 3032514937097093, + "ods_hash": "d8ac8bdbac4a2366fdde90f78b7d5ea4", + "dwd_hash": "87e560e76b5d120fc6f8b5e3a58beedb" + }, + { + "redemption_id": 3032530124278853, + "ods_hash": "6bfcbf08790d94de4a46e155695b778d", + "dwd_hash": "9b13199760f1d356799b273a72e04656" + }, + { + "redemption_id": 3032531255970885, + "ods_hash": "25c25b78c316b6c96e8965f1c68aef6d", + "dwd_hash": "0c1ecee67df45c08c450993796620cea" + }, + { + "redemption_id": 3032536349821829, + "ods_hash": "d6ae1277be5ea755a3e674052b79f0f0", + "dwd_hash": "03584f6d330d2fee4f8b333757491c5d" + }, + { + "redemption_id": 3032538555501445, + "ods_hash": "ba4c149634d6a4df59ab2d2a479c0386", + "dwd_hash": "5d0b2d23f2995e5e2e74c724987d200a" + }, + { + "redemption_id": 3032538555501446, + "ods_hash": "e34652a07055b2d16dee9d3f8391a9e3", + "dwd_hash": "88c08edba509e526942afa6b70939b83" + }, + { + "redemption_id": 3032538606079045, + "ods_hash": "3c7601a03613d754a14eecfd6624fd5b", + "dwd_hash": "fbb4d77b4ad131b62296cb93df5dd8af" + }, + { + "redemption_id": 3032538606079046, + "ods_hash": "8e9b05f74ba8161404025c3f69ae9450", + "dwd_hash": "96646945f5fdd5520d58e913fb51601c" + }, + { + "redemption_id": 3032547976235845, + "ods_hash": "392a9a62371fa368c5668d22fb765e73", + "dwd_hash": "8134b556070d15a3f82363076710290d" + }, + { + "redemption_id": 3032548021472069, + "ods_hash": "5d1f38d6101d981c80b698d72df6567e", + "dwd_hash": "f4ecd361f33185faf5b8d242319b9ea6" + }, + { + "redemption_id": 3032569594252357, + "ods_hash": "5f415838a4974346365186f4bbeac834", + "dwd_hash": "ffa85cbcf47b6a38aa48e32a9bcf4a23" + }, + { + "redemption_id": 3032569594252358, + "ods_hash": "1286e48bbdbc96517ae36bb070ce918c", + "dwd_hash": "2196f4fcfd18a563b0ab8d604bbdd999" + }, + { + "redemption_id": 3032573211348037, + "ods_hash": "8c29a5b745c650fe654f270ccf18eef9", + "dwd_hash": "79642e1b529d16223cb513f8e42cd803" + }, + { + "redemption_id": 3032573211348038, + "ods_hash": "6c88a46a34b4542305c996b5c120431a", + "dwd_hash": "9c51ffdd3fbb6b2bc3d1ac44b6024b41" + }, + { + "redemption_id": 3032573211348039, + "ods_hash": "1510c6bf52b5ee0ec3802c1e35f80703", + "dwd_hash": "5b34b18b636f227fe7857fb69e3c03b2" + }, + { + "redemption_id": 3032582393482373, + "ods_hash": "97edcb7b79d97402d26dc34cdd646bfc", + "dwd_hash": "9ccd610f2b91f312ae9525db9b4e2f53" + }, + { + "redemption_id": 3032582393482374, + "ods_hash": "e7e633368674872090a82c6b6a48d8f4", + "dwd_hash": "109d31bdcd33f2309562c9c6601ff247" + }, + { + "redemption_id": 3032582393482375, + "ods_hash": "0fc16db85a0413562c36cf52ae6f924a", + "dwd_hash": "75afa67d6887c52a32ac2d8cfabbac57" + }, + { + "redemption_id": 3032589577718853, + "ods_hash": "6b37e8ad126d96a6141685942327c395", + "dwd_hash": "7d299b9a398d61f2b7ffe07bd70c1990" + }, + { + "redemption_id": 3032591297186949, + "ods_hash": "4c6687338673be8419fd4df460e292a6", + "dwd_hash": "4da5547b6862e0a8a1daf4ba897aa6a3" + }, + { + "redemption_id": 3032596137151621, + "ods_hash": "34e8856d54b6683d6211744b886a5b65", + "dwd_hash": "1b5088e03e938f496bb5ee809a55b0dc" + }, + { + "redemption_id": 3032598310898757, + "ods_hash": "09e23717dfdef1240413acaa4a3db93d", + "dwd_hash": "c210b35a9baefa5be2fcafdc7bc33d1a" + }, + { + "redemption_id": 3032600070884485, + "ods_hash": "7a56df3ded69608ef6844c4fe8e3fa9c", + "dwd_hash": "0c54cb115a07fea8e1554418767771aa" + }, + { + "redemption_id": 3032601788353605, + "ods_hash": "90927160ac0765c4ab0e2e6088f6ed1a", + "dwd_hash": "8b76fc23a1abbe1ac16b688a4a8adbfa" + }, + { + "redemption_id": 3032601788353606, + "ods_hash": "4bf9d9bf464f26e20d3a26836e79da1f", + "dwd_hash": "c3374a683281fa884431ac0db1749786" + }, + { + "redemption_id": 3032603778796613, + "ods_hash": "837cd030444a3a506c6219b9bbcd57db", + "dwd_hash": "ae7b62ca2b432a33f6f2e87c2300b6ed" + }, + { + "redemption_id": 3032608239488133, + "ods_hash": "9ea786371c01d784c393e6f9e14905ad", + "dwd_hash": "9e514139559313d5ccf07e19ee1530e5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2273, + "ods": 2343, + "diff": -70 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 151190.0, + "ods_sum": 155480.0, + "diff": -4290.0 + } + ], + "mismatch": 2273, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 3031566334823557, + "ods_hash": "ae5861d8c8307280630a49f3146473b0", + "dwd_hash": "da63472d135efffdbbf6b1290b065950" + }, + { + "platform_coupon_redemption_id": 3031571380046725, + "ods_hash": "f482cf8d4b638e360da0f87db09d790b", + "dwd_hash": "fb0afbb69714227d48b1307869138ceb" + }, + { + "platform_coupon_redemption_id": 3031582234463365, + "ods_hash": "883860f548576479ff4975b1a597015e", + "dwd_hash": "dd5647d92cdf02d1ea9e42e46f3aab8b" + }, + { + "platform_coupon_redemption_id": 3031592727219013, + "ods_hash": "85bca9a0b0e5c93a7f5392a99bbaa44a", + "dwd_hash": "b3888cafc63a9e7236df50cffa5eca87" + }, + { + "platform_coupon_redemption_id": 3031624320945285, + "ods_hash": "1662f56d7a5f4c46ce5b54e03b22d01c", + "dwd_hash": "1560c8035feaba295bb246fb66356895" + }, + { + "platform_coupon_redemption_id": 3032172310170437, + "ods_hash": "afad7ca4f527af3ed13e89f36900c7d6", + "dwd_hash": "c61f609f2bae185975442d6eeaa96a06" + }, + { + "platform_coupon_redemption_id": 3032178624793477, + "ods_hash": "3c88ae5df9e3d0cddf9e1c411b65a76b", + "dwd_hash": "b5e63afa912314b2ddeb5c8457cdea76" + }, + { + "platform_coupon_redemption_id": 3032178624793478, + "ods_hash": "6bde5d3ca6ec46a639e0bc27d9273386", + "dwd_hash": "2e0d69124b5329c90a1c1bcad8742e6b" + }, + { + "platform_coupon_redemption_id": 3032185400380229, + "ods_hash": "c4d42107be7dbf85de23ac1363e19aec", + "dwd_hash": "25560f4e216a24ee24ee97b941d8e1a4" + }, + { + "platform_coupon_redemption_id": 3032269820840773, + "ods_hash": "00897227ee829d4a4ea1c2b746d4e34c", + "dwd_hash": "6bcf9118c83639230c919572dfbb401d" + }, + { + "platform_coupon_redemption_id": 3032323186822277, + "ods_hash": "503f8f89b4f03a636762189bcdf043d5", + "dwd_hash": "29b7d4e4da6877ecd24abae4c52d3fb5" + }, + { + "platform_coupon_redemption_id": 3032337653041989, + "ods_hash": "db93f739c5fb68927e22a6455321beb9", + "dwd_hash": "f71e330cb3861637a2bb9b3567004a13" + }, + { + "platform_coupon_redemption_id": 3032396589386821, + "ods_hash": "8db02614fa30daa8be2be3824bf01d4e", + "dwd_hash": "1b44d0d0b6fab3da57abbf63893f5a02" + }, + { + "platform_coupon_redemption_id": 3032405477034885, + "ods_hash": "b543e50697c3d1b1e116fced7e17e00c", + "dwd_hash": "f39ddac58017529ce37f5fba1d53b8bf" + }, + { + "platform_coupon_redemption_id": 3032405609090181, + "ods_hash": "a01873a652def5102c05fce3b3d8ec5e", + "dwd_hash": "f3f45ee9601aedb35091294b9eced8ec" + }, + { + "platform_coupon_redemption_id": 3032406297791365, + "ods_hash": "636ca360c66a23d7878c8b9f67e70e21", + "dwd_hash": "d68811847668f2e703ef9ae28ba2d74e" + }, + { + "platform_coupon_redemption_id": 3032417371704133, + "ods_hash": "243482831bd9e8098633450e9fbd5791", + "dwd_hash": "d9ebe7c64a1e4af12e02ec562a98645a" + }, + { + "platform_coupon_redemption_id": 3032417612893253, + "ods_hash": "c505e505c39b52b22c3f52a848a91db2", + "dwd_hash": "a5fbf2276dc82431009d0042d78cbe8f" + }, + { + "platform_coupon_redemption_id": 3032420373433157, + "ods_hash": "145ab430f52513bced3dffff390f3a2a", + "dwd_hash": "d58949f0dda678b28fc18174e2519ad0" + }, + { + "platform_coupon_redemption_id": 3032420525739077, + "ods_hash": "ebc627e3643c10498f917b089f6983a0", + "dwd_hash": "88d24aef108c652378e7d5ba9d100a68" + }, + { + "platform_coupon_redemption_id": 3032424348830853, + "ods_hash": "8053f8a95e368a5b8a7ebbdea0909a63", + "dwd_hash": "f2e8c8fddb8f855b4c16505397b82dd5" + }, + { + "platform_coupon_redemption_id": 3032425854290821, + "ods_hash": "72df081110b04e8436a0afe691c9c79d", + "dwd_hash": "f15c9be48b9b2a73b32ff8c60e46b5a5" + }, + { + "platform_coupon_redemption_id": 3032425854290822, + "ods_hash": "f4a28a6ed34c38d3928f737067ff5a14", + "dwd_hash": "b41b0a4860c4d7bf0fd6e15b0159517b" + }, + { + "platform_coupon_redemption_id": 3032426090515525, + "ods_hash": "0bb7c9c02efd9e372c2e53287604731c", + "dwd_hash": "5d49929125f20ace7a68065e2a59fa37" + }, + { + "platform_coupon_redemption_id": 3032429216893765, + "ods_hash": "de6554c0d6b77304559dedfdba30be52", + "dwd_hash": "19e3a2b099064b1a28e163b1d9205635" + }, + { + "platform_coupon_redemption_id": 3032445562260357, + "ods_hash": "9493caf6d98bf2fb8198930ec52ee0f0", + "dwd_hash": "6fa5c081a13557d8b53b7cfe466699d3" + }, + { + "platform_coupon_redemption_id": 3032450343259013, + "ods_hash": "0423c831824dfbab1392ff211dc6c590", + "dwd_hash": "81f941d66e09bb0fb0d5ed78f8e050ce" + }, + { + "platform_coupon_redemption_id": 3032451254537349, + "ods_hash": "1b7a1fd74e2691366ea2e8a6c07f2e9a", + "dwd_hash": "533ab3905f88368034b9c006ce4a9103" + }, + { + "platform_coupon_redemption_id": 3032451886779269, + "ods_hash": "1f4032209fae06d05277d9a889aeb15d", + "dwd_hash": "cc17d4c4fd26766722c5df05fbc63982" + }, + { + "platform_coupon_redemption_id": 3032467741543493, + "ods_hash": "150a66a40b750caecb093712704eb19b", + "dwd_hash": "134ffc89f0aa5fc0534b6ff655dbf72b" + }, + { + "platform_coupon_redemption_id": 3032468863568965, + "ods_hash": "773c718c1ab1e0c8f5db01a5506fd0a5", + "dwd_hash": "a9743b58610f0e811e4486e2bc55f7d6" + }, + { + "platform_coupon_redemption_id": 3032469377485957, + "ods_hash": "2389f7026681a12fd164740136f00542", + "dwd_hash": "056e9bf8ad8f242ffc17a5eefc050e1f" + }, + { + "platform_coupon_redemption_id": 3032472322100293, + "ods_hash": "018213a602969b9bec744079f130f4ee", + "dwd_hash": "b346d68947fce5deaac13ca862aae80b" + }, + { + "platform_coupon_redemption_id": 3032473337252997, + "ods_hash": "599a500a19f7ee4f6a3efccb13a60966", + "dwd_hash": "659546913402b7d3c7a3d9b36fa4f67e" + }, + { + "platform_coupon_redemption_id": 3032475223575365, + "ods_hash": "6616c2f51c486c898e59cc25ac8b3dc4", + "dwd_hash": "c5db32c6644d6fa86a11ad3eb0e9138c" + }, + { + "platform_coupon_redemption_id": 3032475372292933, + "ods_hash": "6192fdddad693e6b830de56e00d1ae03", + "dwd_hash": "2855b6d29d6369102e50a0284e7180f0" + }, + { + "platform_coupon_redemption_id": 3032477129886597, + "ods_hash": "d31372d994f924ed0aab652bd7927830", + "dwd_hash": "b67178e393562ac2339de4cb73826868" + }, + { + "platform_coupon_redemption_id": 3032478156491589, + "ods_hash": "ec10e4590356cc2001002b113a3983eb", + "dwd_hash": "2993d843f8d69ce29f24c5190dc4cf21" + }, + { + "platform_coupon_redemption_id": 3032479225351045, + "ods_hash": "b86a9f98227bdeac1764a74f01b17879", + "dwd_hash": "c20e2f34707b2d264773e0ae23032f5b" + }, + { + "platform_coupon_redemption_id": 3032485824564293, + "ods_hash": "57f5d07dca5bd07a1b53954ab293304c", + "dwd_hash": "e0f3b055396d07172654e13847ebd686" + }, + { + "platform_coupon_redemption_id": 3032487075646277, + "ods_hash": "82daff37a6627cd225e074858e9e0766", + "dwd_hash": "7490b7f1e472b989886217626d59c736" + }, + { + "platform_coupon_redemption_id": 3032502695480197, + "ods_hash": "5287bb370a679da53e9cfbf2259e8c86", + "dwd_hash": "03e7c4f9e1f5819091767bc21a499398" + }, + { + "platform_coupon_redemption_id": 3032503077292869, + "ods_hash": "f1b1930fe1381ab47694974ad27adb11", + "dwd_hash": "555ff8475fb2e4384240fb2b8e9889e6" + }, + { + "platform_coupon_redemption_id": 3032512750996549, + "ods_hash": "6ed120c0db6f3be773d51f4d0b08c9cc", + "dwd_hash": "a47cd663914c02ca01c18cf9b56ce3a7" + }, + { + "platform_coupon_redemption_id": 3032513693092677, + "ods_hash": "e219cd2c6df3adfcb49254a7ee7b49e0", + "dwd_hash": "aa89eb9506448a9163f7284ea5423dd3" + }, + { + "platform_coupon_redemption_id": 3032532181863301, + "ods_hash": "90d8c127090692de212431ab2e018aeb", + "dwd_hash": "bfcc7e15776a14b4c9ae6ba0c3f3db9e" + }, + { + "platform_coupon_redemption_id": 3032532565429381, + "ods_hash": "931c8d2c49719a5a07f285021c8037ff", + "dwd_hash": "8a028eab855ed366fc673b4ad10c8253" + }, + { + "platform_coupon_redemption_id": 3032532664470597, + "ods_hash": "3d824180d46382ef8bdc899d161abf13", + "dwd_hash": "e09bdc55674f89a41b135e793f227ed3" + }, + { + "platform_coupon_redemption_id": 3032538489785413, + "ods_hash": "a872a53844ca922ce5eac90849f79a6c", + "dwd_hash": "2c4f470ed97a31ea007f49cfb840a56c" + }, + { + "platform_coupon_redemption_id": 3032539059047301, + "ods_hash": "a6e9829bf80c02e4178a7edc5a964a31", + "dwd_hash": "e46444f45e79023a1f14f7b5fce5e7cf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3050077116909253, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3050242288224133, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3050319796668165, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051599278917509, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3051658126477189, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052689166684293, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3052750316949509, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2806708031637381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806855233947525, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2806859908384389, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2807815241847557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807891556897349, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2807909672309637, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2807912803045957, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2800763348731909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3327, + "ods": 3460, + "diff": -133 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 377823.0, + "ods_sum": 408957.0, + "diff": -31134.0 + } + ], + "mismatch": 3327, + "mismatch_samples": [ + { + "payment_id": 3067985682090309, + "ods_hash": "3fc1b0c33317dfa665a27e4c6951df35", + "dwd_hash": "68e84fef61dbb87e816dc7e07215c439" + }, + { + "payment_id": 3067992371906693, + "ods_hash": "e2ddca032d65f2b469cbcb5a1c62726b", + "dwd_hash": "1e5418966ac5df8c9a3c24f716ba1cf4" + }, + { + "payment_id": 3068007471024261, + "ods_hash": "d07ee5a773f8c1af4ca71aa56cadf0f0", + "dwd_hash": "cb4016f4d6fb77c0482ab422cbb53f68" + }, + { + "payment_id": 3069705957428357, + "ods_hash": "75de018db3d090ea2f7249a56a1cf83f", + "dwd_hash": "1103c0c2a988aa1fbaa32f7bc98fdd74" + }, + { + "payment_id": 3069707204529285, + "ods_hash": "625ddfdd081bbad30d0789283b7eea93", + "dwd_hash": "5d84f9836e4dbf21c8ad9fc9f1d39e9c" + }, + { + "payment_id": 3071062798206917, + "ods_hash": "57bc2de7e2d87f91c284c6845295dc84", + "dwd_hash": "3bb47e477051979713efde7400b0c51e" + }, + { + "payment_id": 3066726317919173, + "ods_hash": "e7fb6c3b34a6b147e07ef160a7749612", + "dwd_hash": "3b6963719d96e8fe04a1293c5bd0cf71" + }, + { + "payment_id": 3066729697627013, + "ods_hash": "fce0b9a0525f58bad7469554d2bb7d08", + "dwd_hash": "77831e2280589e0aafef46569cc4c455" + }, + { + "payment_id": 3066733822840005, + "ods_hash": "0337e765c51fbb925f2d9926a1cd70d7", + "dwd_hash": "d432644ec0b3d97a203af7cff8db7ff1" + }, + { + "payment_id": 3066743160998853, + "ods_hash": "6c79a5590b187a8a44ef482f934d19f4", + "dwd_hash": "b918366e25755c42b19b3b0bc4284461" + }, + { + "payment_id": 3066743226895301, + "ods_hash": "f3c5c20af54cb98cac558c3b4fac4936", + "dwd_hash": "747e22c0e8d0c5d7d3e6d1388edf7a4d" + }, + { + "payment_id": 3066744116235205, + "ods_hash": "e0bf5cadff6916c75fc70b6332b79071", + "dwd_hash": "c4007f4997df7e0d373a3aa91d7fc14b" + }, + { + "payment_id": 3066756385196869, + "ods_hash": "f2ca95c9c7298dfbc9e8cd02f633c277", + "dwd_hash": "7e8f76a4a6626a263cdf6cd0175d9b06" + }, + { + "payment_id": 3066762563636421, + "ods_hash": "5456847292f64d3e236472c77bc89385", + "dwd_hash": "4cd94ecf6f48073fe9596dd95053b7f9" + }, + { + "payment_id": 3031559651576965, + "ods_hash": "4ced7f3c79c478fd2e39311ac26bd1d1", + "dwd_hash": "918854dbb3ed9e47d3fa8be767a8ef94" + }, + { + "payment_id": 3031559791479877, + "ods_hash": "c33f4c968c36c045fe27c5dac7a36fa9", + "dwd_hash": "6f505b04cebeee84d1d2d6ceddca817b" + }, + { + "payment_id": 3031580137622597, + "ods_hash": "a6996a8ad524e13ea90e4b01c814e9e8", + "dwd_hash": "d52aa1811ad27cc6eed1802d758ac250" + }, + { + "payment_id": 3031591023610949, + "ods_hash": "887ee97530f861952835641816e81294", + "dwd_hash": "6fec69fa0bbb1c3a6aa471734749ec79" + }, + { + "payment_id": 3031604208847749, + "ods_hash": "03b427294627273812cd64ee019d1da8", + "dwd_hash": "df41fb225fa4159577ebbbc2716ea46f" + }, + { + "payment_id": 3031604942982022, + "ods_hash": "9aa7b299abaa47385f87d54b61220588", + "dwd_hash": "708514880d545fee4c3316d847763458" + }, + { + "payment_id": 3031610632621125, + "ods_hash": "e7262fb8a1c678298c92b047248bea69", + "dwd_hash": "33bd17f9216f7809552e20129066e79b" + }, + { + "payment_id": 3031646425893765, + "ods_hash": "f8151734b915899e20227405044bda41", + "dwd_hash": "cb7c87075da05bb6ebc609b93296f4ce" + }, + { + "payment_id": 3031646480878661, + "ods_hash": "816620c41d30d521efc2751160d2d73e", + "dwd_hash": "7d73f8ac50236a1c7c29753c014630b7" + }, + { + "payment_id": 3031647109942149, + "ods_hash": "54e65fa1d8e984329dacc5739f5131fb", + "dwd_hash": "3ffbce0e28cec58cfdbaa9110d39b222" + }, + { + "payment_id": 3031653081467781, + "ods_hash": "e8713ce3d63ab21c528f1ac7eafdf0c6", + "dwd_hash": "00e1cc3afd7df7bcbf3dee7b818d3b92" + }, + { + "payment_id": 3031700023708549, + "ods_hash": "dae1e620171439059e1ad53e082d4d95", + "dwd_hash": "5b3f94f2ad5e908ddd8a9f702dc707ca" + }, + { + "payment_id": 3031742585817925, + "ods_hash": "beca4f96297e8635c51eda185c6dc6e1", + "dwd_hash": "0faf2ef54714b0fba73d9a58c35ec9f0" + }, + { + "payment_id": 3031896026073925, + "ods_hash": "56a2b3a10862628d2e9b3a685606787c", + "dwd_hash": "037ec8cea5c0bbc776f516cf70abeb56" + }, + { + "payment_id": 3032139308223365, + "ods_hash": "516d638f963cb1d46ccc928db7494538", + "dwd_hash": "48c362eadfdda2a53bebbfc46b8e18ed" + }, + { + "payment_id": 3032262312545413, + "ods_hash": "91f8848ed6ff3d00862b0409d7377c24", + "dwd_hash": "44c6078d24e95f8826364aec126fc378" + }, + { + "payment_id": 3032291879341125, + "ods_hash": "7bfed360999a0868b2dc355e3361e659", + "dwd_hash": "b9d539abffdc9d6251cc5419db6982d5" + }, + { + "payment_id": 3032346301270917, + "ods_hash": "2f99b1844a028a64085f4a8202bfc955", + "dwd_hash": "440f021106a87d8b36d5810324573ec7" + }, + { + "payment_id": 3032386576796549, + "ods_hash": "80f02a9cd2a937a9443d2aaf13a79ce5", + "dwd_hash": "18cd2213a5dc6c77b1ccd96cc4c2ef6d" + }, + { + "payment_id": 3032388004400261, + "ods_hash": "8b84cfc9553cfa3b5f69d2ba4f95a2a5", + "dwd_hash": "d26f4f3d6612a374492cfd8d89631d0c" + }, + { + "payment_id": 3032388073573509, + "ods_hash": "db04895e512287533819ed25c4095d16", + "dwd_hash": "485d7c31c8c8892dd8c43d3b2c5b2891" + }, + { + "payment_id": 3032388337109893, + "ods_hash": "7bda329477f028f81f2cb93b02ad4ccd", + "dwd_hash": "bc1e200319bb51e01f5627d927b92ce9" + }, + { + "payment_id": 3032390340365381, + "ods_hash": "5d37a665aff58e8578cf6644cc98dee8", + "dwd_hash": "81f178683b1e1152c6eb916cee47144c" + }, + { + "payment_id": 3032455170378629, + "ods_hash": "94734928709786d31010613b42c4a33a", + "dwd_hash": "7ea6cc4b19de175374d4b88fd11234c7" + }, + { + "payment_id": 3032463726283589, + "ods_hash": "2c4a63008373938cde980cb327402657", + "dwd_hash": "8682da46640d227ffe9bdf023185cbf3" + }, + { + "payment_id": 3032467838585925, + "ods_hash": "6157bc429a95ba31691502df02eff4ad", + "dwd_hash": "3fb1312af27b220b09bd6e6115c1a78a" + }, + { + "payment_id": 3032473028955205, + "ods_hash": "84e2e961964af31be3e25a3e1d3d0a36", + "dwd_hash": "e57dd08f65cf7a2acd80fcf333f55266" + }, + { + "payment_id": 3032476571552837, + "ods_hash": "631ebaeb603a0092a195fcfda72de6ed", + "dwd_hash": "81900c740ee338bfe70bd56dfa16d83c" + }, + { + "payment_id": 3032476646411141, + "ods_hash": "e53bafbdc5319917ca463d9c9a45276c", + "dwd_hash": "3acf561dd6b1f63a62da8b70a59deb8a" + }, + { + "payment_id": 3032490419719045, + "ods_hash": "91054d96271815777c4861ccea8d1424", + "dwd_hash": "b2c4a5e03e8bb44ac5b2605f61ef7156" + }, + { + "payment_id": 3032499555765061, + "ods_hash": "100d3cd73e7221d8f4821997415d6ad8", + "dwd_hash": "2ceb2d51f7702de5fcabbf85784bf438" + }, + { + "payment_id": 3032509391080517, + "ods_hash": "706ecd51f4d51ba3f77dc488e1250311", + "dwd_hash": "f009eb3c08023e7345cf36f4248c5c9f" + }, + { + "payment_id": 3032514145766213, + "ods_hash": "09f424040e8033657fb3322e278802b0", + "dwd_hash": "f28f431afae481130b65824a3f67ab93" + }, + { + "payment_id": 3032514934295429, + "ods_hash": "6136c67d552535812c9973192745636f", + "dwd_hash": "b0ca057779e94b718b2fcc24d1ddc8fd" + }, + { + "payment_id": 3032522596600709, + "ods_hash": "1fc3bebd163defec3198415146b54895", + "dwd_hash": "a418de66933f44544379b82b4cadf622" + }, + { + "payment_id": 3032530121657413, + "ods_hash": "2edd4a13b39b12021bbd120398d27dda", + "dwd_hash": "82bf518495efc13cf592b5b4e80c3c13" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 8, + "diff": -1 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -10087.0, + "diff": 10000.0 + } + ], + "mismatch": 7, + "mismatch_samples": [ + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + }, + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23692, + "total_mismatch": 47850 + }, + "generated_at": "2026-01-31T23:24:29.241700+08:00" + } + ], + "api_to_ods": { + "total_missing": 94, + "total_mismatch": 190, + "total_errors": 0 + }, + "total_missing": 94, + "total_mismatch": 190, + "total_errors": 0, + "generated_at": "2026-01-31T23:24:29.241743+08:00" + } +} diff --git a/etl_billiards/reports/data_integrity_window_20260131_235928.json b/etl_billiards/reports/data_integrity_window_20260131_235928.json new file mode 100644 index 0000000..5e3d4f8 --- /dev/null +++ b/etl_billiards/reports/data_integrity_window_20260131_235928.json @@ -0,0 +1,49981 @@ +{ + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "segments": 8 + }, + "windows": [ + { + "mode": "window", + "window": { + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "label": "segment_1", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-06-30T20:00:00+08:00", + "end": "2025-07-01T00:00:00+08:00", + "cutoff": null, + "window_days": 0, + "window_hours": 4, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "71b61d89b18192e9bc8fb0d195dad25f4f58cce97b04f6f6168985044ad0e57c" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10204, + "records_with_pk": 10204, + "missing": 8, + "missing_samples": [ + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12031, + "records_with_pk": 12031, + "missing": 9, + "missing_samples": [ + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17372, + "records_with_pk": 17372, + "missing": 1, + "missing_samples": [ + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8321, + "records_with_pk": 8321, + "missing": 5, + "missing_samples": [ + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "5c5ff20a5a7e90a55a5db1d06856e146f64935dfd70de9d8e7c7a37e4ea8d1d9" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 24, + "total_mismatch": 34, + "total_errors": 0, + "generated_at": "2026-01-31T23:31:01.461062+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -20283, + "total_mismatch": 36252 + }, + "generated_at": "2026-01-31T23:31:18.949299+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "label": "segment_2", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-07-01T00:00:00+08:00", + "end": "2025-08-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "71b61d89b18192e9bc8fb0d195dad25f4f58cce97b04f6f6168985044ad0e57c" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 1776, + "records_with_pk": 1776, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10204, + "records_with_pk": 10204, + "missing": 8, + "missing_samples": [ + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 351, + "records_with_pk": 351, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12031, + "records_with_pk": 12031, + "missing": 9, + "missing_samples": [ + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17372, + "records_with_pk": 17372, + "missing": 2, + "missing_samples": [ + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 44, + "records_with_pk": 44, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8321, + "records_with_pk": 8321, + "missing": 5, + "missing_samples": [ + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 9, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 2551, + "records_with_pk": 2551, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "f092dbbfb3ed41a453adfa95b0a12eb7e3f63aa951fcc5e842298ce91f1580d7" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "5c5ff20a5a7e90a55a5db1d06856e146f64935dfd70de9d8e7c7a37e4ea8d1d9" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 1845, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 10, + "skipped_missing_pk": 1845, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 25, + "total_mismatch": 35, + "total_errors": 0, + "generated_at": "2026-01-31T23:34:41.133974+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1246, + "diff": -1246 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 23, + "ods": 23, + "diff": 0 + }, + "amounts": [], + "mismatch": 23, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "a9539adf7f502e47e5513554ce1793e3", + "dwd_hash": "119df99c5085f7a75bf37c67c3733f3f" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "8d78e002b0e218a7a6762063f7fc1a41", + "dwd_hash": "189bf816ce4973d12d3ae5b5626b721e" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "b4367944a49bc423b0a056239866d24c", + "dwd_hash": "9895800fa93313f29168d3fa984529b3" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "df8af0d038d7085dbb91537ac9696a9a", + "dwd_hash": "9d9bff8283f77046dc8f5ba74356d28d" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "035c5e4db9546875cbb67f2d179cb188", + "dwd_hash": "d3e34b3f99a61144dee282216da1c8d9" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "9c952c3acb0dc876475a5b1f3894ec11", + "dwd_hash": "32472f21cb9b8e2f6f75179ea3e10ed5" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "e46f774f0ba22fda1dbb2ed83385a5b6", + "dwd_hash": "9da3be46145f5ef071fd99705e7e5d14" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "7ba006db5bb328146c796ee7995b9173", + "dwd_hash": "566e873b8083ea4824594c306fe07b2b" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "554ea3ca0f0046482db934dd3692e81d", + "dwd_hash": "27a45c9289edd525e11c8dac9c9ae870" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "88dd360d9b76f70aa1ae4b5100569a10", + "dwd_hash": "05cf7d5233bebbc87dc8c6b3dd59a221" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "6b8edc30ae0bf5754a838c40f0febdae", + "dwd_hash": "34699349b99b358f46c301a2aef61af1" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "0c414fae9a683664f3d0b04037f79015", + "dwd_hash": "d7fbc1ec0b4ff1912f29e21b48a6c7bb" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "707180b7f63682b712ced21d0dceca0c", + "dwd_hash": "da13aad7897526b8fbd08b22ad7427fc" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "a7cf68b4b97f3a5ed1df6a0a1b42c45d", + "dwd_hash": "9073055a695e2ff9a833959c7684c8d8" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "f203f2e9ad3d9606816fbd3aa8e85ef5", + "dwd_hash": "688e987fcf2471ffb19c4d06527ac62c" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "74f4ab97844d0f0ad538c00eca39bbd4", + "dwd_hash": "5e67626d2530daa21c78a055749f48f1" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "f6124875402d348c3f669829c039c209", + "dwd_hash": "804838b9605913caab06db6adfc33882" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "b47682a7b631fd18fa8a47adf6f66917", + "dwd_hash": "5d472164049f5466edbe37e0aae421ba" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "4d4bd11344ac9832934299345766a5da", + "dwd_hash": "6b3bc8d8acd3896ccc8df4c5401cc942" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "e965df782544e08176252dd7a803f6e8", + "dwd_hash": "503fb262c1627a475cdb20139604e43d" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "8ee5d228696bece0925b4149f00e36af", + "dwd_hash": "60a72dfd06de264303527f0c7b9e6b9f" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "5833f5dbc4288e3a52d147aa38e0d0b2", + "dwd_hash": "5223f87867aa3bca50eb2231d7e8433e" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a10a3b3649ca8dbc872534600f9590de", + "dwd_hash": "a80a2558b0464b9a6476c0d0371c1a79" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 466, + "ods": 466, + "diff": 0 + }, + "amounts": [], + "mismatch": 466, + "mismatch_samples": [ + { + "member_id": 2791994266390405, + "ods_hash": "82be2add2019a2096fcb56b23bedf9c6", + "dwd_hash": "5dac1a603e4b3d774b89c9723456e365" + }, + { + "member_id": 2799207056279301, + "ods_hash": "f8e857bf33b8d522e1a73c205d0bf9fb", + "dwd_hash": "2b42ac35ffa951510ee6b5a8188b8566" + }, + { + "member_id": 2799207060145925, + "ods_hash": "8d31eb57b9fd80a01948622b178c99af", + "dwd_hash": "80cd88d08f56810ea2560b7b3b70a3e4" + }, + { + "member_id": 2799207063701253, + "ods_hash": "17456863fe2e47852f358eb5367e3df7", + "dwd_hash": "ba0bad3cd6082a8336826b92d398dcf7" + }, + { + "member_id": 2799207067109125, + "ods_hash": "80ee5d6957dc9fbccc54929ceabe9132", + "dwd_hash": "874f512bbbe2a73fc04568a70bc8b045" + }, + { + "member_id": 2799207071352581, + "ods_hash": "38db4d089a4b1c8742c209c1dec9cf54", + "dwd_hash": "fdab21fc002ab529f4eb22cc6e259038" + }, + { + "member_id": 2799207075874565, + "ods_hash": "352a96bc28661d0a8736a382dfa7825d", + "dwd_hash": "61478d022b6bff1214d7c87c442e975c" + }, + { + "member_id": 2799207079544581, + "ods_hash": "b4951acb79f06c409fe581cf05b8b02e", + "dwd_hash": "3bd6255eb93965f1d4fb7029188ec60b" + }, + { + "member_id": 2799207083067141, + "ods_hash": "181d179a19201524bb23cf18e5852a3d", + "dwd_hash": "3fe7f5c3f7b5522c8bc0a23aadf6e3c1" + }, + { + "member_id": 2799207087163141, + "ods_hash": "d29478bdad3d28f2fd0468872369fa2c", + "dwd_hash": "756cf61cb25d5f018df7e2a6aed7a8dc" + }, + { + "member_id": 2799207090996997, + "ods_hash": "321ef58ab22316529e50ae0557277441", + "dwd_hash": "11a3adfbfbcdc8c4a8c7a7dee1209cd7" + }, + { + "member_id": 2799207094322949, + "ods_hash": "713661697f5043b2b6eef08d06d3347a", + "dwd_hash": "a9f8e52d510bf039265e31ddbe6d4ba8" + }, + { + "member_id": 2799207097812741, + "ods_hash": "223284c0b4faccb430857578e37391cd", + "dwd_hash": "5e3eda1095d01a7860c27cb8091ae1cb" + }, + { + "member_id": 2799207100974853, + "ods_hash": "b1479130ef46924315acd70d881dc5c7", + "dwd_hash": "5fb2018bdf6de893dcb6400383909c83" + }, + { + "member_id": 2799207104726789, + "ods_hash": "f5763279b99fd308845c915f13162029", + "dwd_hash": "bb6a08df70f3ef041d0c2220bae136c4" + }, + { + "member_id": 2799207109379845, + "ods_hash": "ab2061d896aa25c685c761555d555d71", + "dwd_hash": "2318e8ba5d5031b558ea238c4a0fce61" + }, + { + "member_id": 2799207113787141, + "ods_hash": "674e84bbba0e4ab6be90d7481aed2117", + "dwd_hash": "9adc8581f6ec4bc83c90cf631497690d" + }, + { + "member_id": 2799207117129477, + "ods_hash": "7854f960512b19543d764d4b9566ab91", + "dwd_hash": "09bceab4ec881d488957fa8b87b1a6fe" + }, + { + "member_id": 2799207120815877, + "ods_hash": "aa356439fe4fe32233da370409bd5cc0", + "dwd_hash": "6e68252aaca7f49070a9fc9bb801955a" + }, + { + "member_id": 2799207124305669, + "ods_hash": "627b7885b77c1d4ca44c792eb2d79b40", + "dwd_hash": "3911b96b8a41dafac207d3ba59ddc0d1" + }, + { + "member_id": 2799207128008453, + "ods_hash": "fa53281cace5549df939249c79370147", + "dwd_hash": "a5a540703da073f19b763bdd621743ac" + }, + { + "member_id": 2799207133021957, + "ods_hash": "224acbbb5527c7de83d9d619745cd775", + "dwd_hash": "a135b3bdc8f458a39a2177290270f676" + }, + { + "member_id": 2799207137642245, + "ods_hash": "c96a27adeb01884e6e348b131aefb5e3", + "dwd_hash": "39dcaa46201aaf55afaf7e61e4187953" + }, + { + "member_id": 2799207141623557, + "ods_hash": "0fcfe7b832050ee0cad60f65e0d7c018", + "dwd_hash": "8a8957cfd6fcd673cd3bfb47977f2421" + }, + { + "member_id": 2799207146407685, + "ods_hash": "e6e17ebb91a479f9db1341f031400c3d", + "dwd_hash": "3929daebf743a025fda4c9c313eb4d88" + }, + { + "member_id": 2799207149766405, + "ods_hash": "dce7be2b9ff1758b227cb813f2cebe6c", + "dwd_hash": "6f39ebe2af5cec81794eb9fcc7cc654a" + }, + { + "member_id": 2799207153403653, + "ods_hash": "8f82f65313f003f03dd940e128516e62", + "dwd_hash": "8469ef284b6a7a2260782af8aeccbf95" + }, + { + "member_id": 2799207156713221, + "ods_hash": "baa2613a3919ff6394145011fa888df9", + "dwd_hash": "a95faf86fc0f549fdf66f39139157335" + }, + { + "member_id": 2799207159990021, + "ods_hash": "c3c32c722f15ed229964fe6183ca1e5b", + "dwd_hash": "0fe74f5aa3f5c8f6c8dde1106806cbc9" + }, + { + "member_id": 2799207163447045, + "ods_hash": "3ce73efe76f046592a6e4ca125ef87fd", + "dwd_hash": "cfeb594bc13c7c4f054a1e1f13783ac7" + }, + { + "member_id": 2799207166772997, + "ods_hash": "400d6fb505dabd7d748a97faed8f1143", + "dwd_hash": "5abd9dd1560e695288329d7504613252" + }, + { + "member_id": 2799207170164485, + "ods_hash": "d75f681ba3d7890cc238cc3f2b4a4ebe", + "dwd_hash": "ad0ee80c0b19a5899b06ac3d75ef48c1" + }, + { + "member_id": 2799207173424901, + "ods_hash": "2ade0730e7b7bf77a8ddd04ad41fe113", + "dwd_hash": "daae75ab098e90ac5a3a28a78a9d3180" + }, + { + "member_id": 2799207176636165, + "ods_hash": "abcfb6ea2acd89960de8d24df933c226", + "dwd_hash": "7e2a0772ccd5522b5f2cdf2a8a2f5cf6" + }, + { + "member_id": 2799207180060421, + "ods_hash": "7208611027ddaf4a59bef55b9f131573", + "dwd_hash": "93c7529792e67f9167b5aada21e0e36e" + }, + { + "member_id": 2799207184582405, + "ods_hash": "1f574b2ab31ce4b130746f9da7d945cb", + "dwd_hash": "6ee899229f51e6a99f75efaff5c60ae4" + }, + { + "member_id": 2799207188170501, + "ods_hash": "4b4c815bc8b7782df0d666a075ead28d", + "dwd_hash": "33d7d2dfc7c4d89596c56be7855384ca" + }, + { + "member_id": 2799207192626949, + "ods_hash": "dcaed5ad978cd011df7429cc6f620b79", + "dwd_hash": "24dda30a4a0dd8d067064cc0343345e1" + }, + { + "member_id": 2799207196690181, + "ods_hash": "8be10b37f583657e6be94dc2cc6a2544", + "dwd_hash": "1a69bc47269bd2787bac9ff7769d6fa6" + }, + { + "member_id": 2799207200540421, + "ods_hash": "3f774e09292a93b59ff6097e9b8d520c", + "dwd_hash": "95ec491dc85696e47b468af1a9d8ad32" + }, + { + "member_id": 2799207204882181, + "ods_hash": "95913b0f179a7508f135209eb89fb3ac", + "dwd_hash": "624c59c0b8ff60aeacec26ea62274157" + }, + { + "member_id": 2799207208208133, + "ods_hash": "403f4b64923ab45d883453a3af87873f", + "dwd_hash": "d8b61f21714b1a63e6fb9142c3bd4d00" + }, + { + "member_id": 2799207212304133, + "ods_hash": "3ff8af0cd2ed663dc93dab3f19bb1295", + "dwd_hash": "8f8eadf5a451cbc7a75c1d8e7029fd8a" + }, + { + "member_id": 2799207215482629, + "ods_hash": "c6bb386588189bef5a87b4963daf5209", + "dwd_hash": "cfbaf00205abbe81e214dc3e43d3a3b3" + }, + { + "member_id": 2799207218693893, + "ods_hash": "2aa595a3d9a92f519795a2fbcebbd4d7", + "dwd_hash": "63208d1e5e8917fe26cc971d548edf42" + }, + { + "member_id": 2799207221888773, + "ods_hash": "d6d2de008f968c3524cf513e12d60db7", + "dwd_hash": "10a06596d7cfd55825cacb46be786c3c" + }, + { + "member_id": 2799207225132805, + "ods_hash": "10e7d39cdcab73a99dd2940963969876", + "dwd_hash": "462ee6490cb518b9d5039b049580f799" + }, + { + "member_id": 2799207229441797, + "ods_hash": "282ced7acfb25ee04a6f1da893d896a4", + "dwd_hash": "5b4c14e3de2ebd2cda72b37bd32d04c0" + }, + { + "member_id": 2799207232816901, + "ods_hash": "f3c3dd32fe39d11773a49162183268d5", + "dwd_hash": "f3c823a9733e0e9ec206c62830a54d06" + }, + { + "member_id": 2799207236192005, + "ods_hash": "1e9fb16f9dc6ccca815cca27ded2909f", + "dwd_hash": "0172ee909dc0ad315aeba660f501135d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 751, + "ods": 751, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 751, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "bbbd13cdd2b8cca9554f187e237822f4", + "dwd_hash": "ae31383a298e918a4d89ca11c13d79c7" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "bc3e393be56469066bbfdf451466efb7", + "dwd_hash": "8f2a1c55ea4f2ae895baed61b463b5db" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "221b6daa46ab020d6f055efb9c718ee1", + "dwd_hash": "929f3f7fdf5eedc39ed6a3fe46758608" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "599b3bf164c0e2376d57cf5ba64a4d78", + "dwd_hash": "d5c9f65829e8893957ef0af7a761d276" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "700f8fc1cf009bb7f73ee906e4342740", + "dwd_hash": "e68a1c7918d66d24e3d4be5f380a5ca6" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "b539fb3ddc3b1d77fc474382a4347709", + "dwd_hash": "0ae5459ef28bee247ff1c87b34c43915" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "7fcd0791cc51810859a9718f8a5d3d43", + "dwd_hash": "81d5ca28d78aaf276db81f26c585d1c6" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "69307e58b5943693a0736deeeb188663", + "dwd_hash": "8a8d068806dd55227aab934bff896149" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "4ec22bf5023ab4ca31984dd164f97e92", + "dwd_hash": "eadd50ecba6757ef075996350b33ea9f" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "85f588223d10633910489cdfb8d93354", + "dwd_hash": "576c71f811e348b11c2c92174f006e9d" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "04e379c6fee1fc44f7c57662409667f4", + "dwd_hash": "e543e41717a35b6d78a43918e7757da2" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "014e64d2477362b8454664e259ddc4b0", + "dwd_hash": "a0a48752028a33ad218eca236d85cbeb" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "daa948b05094a51a52bed3abe159e724", + "dwd_hash": "4ded2758e13db0761ca4b503796e48e2" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "cbe679804f0f034161126d9383a4f421", + "dwd_hash": "9c070b256b28077d4f71df70e43358ef" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "b55d8e288d070ce412d417ac2a235b38", + "dwd_hash": "031f7d5656146931e456e3826048875a" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "230fea518d94e1c62a2be5d3fc8bd832", + "dwd_hash": "93849b12e8814eb048ba01f10e7209a3" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "afafaaa0d31f4cae0c560dea8b7cd65e", + "dwd_hash": "693719ff5b101af7e0e2715e04954106" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "1d632019a53b7cf0d8b5cd4935e1db67", + "dwd_hash": "4e3b0f05b3d6cf48b846e13d641d6c83" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "05782a94b163964a9d8f42f2765fb6fd", + "dwd_hash": "5d6024779a98e74701e4040ee88c80c7" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "42a4b87712e7bc9784c47d2e22ffa94f", + "dwd_hash": "edd91feae5109bbaf84c3cc150ec415a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 149, + "ods": 149, + "diff": 0 + }, + "amounts": [], + "mismatch": 149, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "05bdb69326692475afdafa1c6fa20f4b", + "dwd_hash": "322f2077c8723272d6d5f086297e58d8" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "3c7f93b82d6b046eedb59daee392adf1", + "dwd_hash": "0fb7610d8b5ad28bfebad7bc718cc5a1" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "98266c4bda972fe1a249f5493038933d", + "dwd_hash": "8ecd70de64f73fd0d0991871a60cf6b7" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "4647d907007c7afeb479f6d1d76035d9", + "dwd_hash": "30d0237e3b4f87e12219c181e8086b3e" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "24624e69aa35a9b5783d94e3c30eda50", + "dwd_hash": "40cfd3aa07f8a50a79807bda01b89ce7" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "7445938ffddda3fc9b71cef257edc194", + "dwd_hash": "c6d8a3179c390533d1c15173efecc536" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "ef4e34a5e89d90ce12b87fb9b520edf7", + "dwd_hash": "85e167c604fe4b2dba001bb170b45751" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "e1545c5925dda2cc3899a60bdefedf34", + "dwd_hash": "be49a356324383f7e8c485533413009d" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "1e3030411ad7a6403b7dbed35e2bc102", + "dwd_hash": "5a3ffd5cd3310cc8a983fcd94dafcaa6" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "45cfeda28dbde9a31a6318c87d03703c", + "dwd_hash": "99d0a30bb6da18b543a17eb9e535be27" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "da5ee4eb84fd3a1d1d5eefe4fde16051", + "dwd_hash": "ba01372bf7d48eb6453661c2bbba885c" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "137ff4b5946917b143a6cd01d4daba61", + "dwd_hash": "e2be0c60f30c94418ba0de16c89ea774" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "0979e9a4f8b35e258bcac0f743511ae3", + "dwd_hash": "ffa1f4e770d2e346dfe58949137bb43c" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "eaf3d8a1d18f503dd183530d48199540", + "dwd_hash": "591430df0895b4179155a034a3ce06f1" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "c07893c3669562be73562063c8e8ebc0", + "dwd_hash": "550cbcc26633c033120ef579b30ac10a" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "d9cba3ef2bfc5cec7931d5fcfba1e174", + "dwd_hash": "a5f92b351abc66a481909c23eb882820" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "23d6b4c469f0907fc1d5f9bd32f626b4", + "dwd_hash": "9240f00a89825a7c0a54656c003b7d0a" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "64aa0037c4d3f2e7f360a2f13cd56f1e", + "dwd_hash": "bd68994750c79d84ba79c0e4446cd532" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "169d93f00123ea963ed16954444eae82", + "dwd_hash": "421987b107ada43da33155d878179209" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "ee6ca2f0ef02c5e61a0450c2213e4bd3", + "dwd_hash": "07d9a0b6649ccf17fb575378e51dcaff" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "27f09ef53de42880c72e50abf02c5c38", + "dwd_hash": "728cf10cc9901d3d9f30374fa4975616" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "987bbcb5c58ed3323ef8f3d518dd7bb1", + "dwd_hash": "e418ba8c4d72e2e0ff5e55ca8f096335" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "2ea5af038f7fffe082d5b8ab95ee8891", + "dwd_hash": "e975458cb31ba8b824a237b1fe506a4c" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "6fa7ffb36f97714f9893b9fd8feafda9", + "dwd_hash": "93d65071c6b36d8c4c8b44522c48fc0b" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "11519776ce8c12fb7d2a7574ad5393c9", + "dwd_hash": "dc123ddaab505062e953a3d167e48992" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "e03dd0a36749decec31631c88c13ba42", + "dwd_hash": "dd8610e6dd8249e9b8653dcb8ae86783" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "49ab5c30405856864eb59e0ac1ab9ec3", + "dwd_hash": "472a014aa02fa026a12ff3ab9fe4aa8d" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "77ca40e29706f7b705aa147a70b36367", + "dwd_hash": "9b02419c2543eb7e9db07a3aedb5844b" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "c39bc02c7b630c369b3039d397260dc0", + "dwd_hash": "d00a564ab5d082afa50f0e7dc4b7b6ab" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "29654ab271f1e46f5e7375135aa98fcb", + "dwd_hash": "635a5431350417ee1350ee153c56cc19" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "6f46989873989318bb7e49638915502d", + "dwd_hash": "5b0d1d0ba8033540a528991d6be4fd95" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "fbac3fe9e1c4fab640e9bacb3573148f", + "dwd_hash": "3f15669459f402b052172db4262480cd" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "f1879476a672ba501672e8dbbce424d4", + "dwd_hash": "963d957f5ae2cbb2e9647bf9d9d3ddab" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "aa9db0fce36f757a6e3ad8710eec61a7", + "dwd_hash": "f03fb8f5aa75708ef41676c56b90e026" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "f20703ef235cbc6792a85d01e49a2898", + "dwd_hash": "585366255a829d0f4e6c2a18fc7f72d5" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "fd840f9225bd2edf58ac086183644a79", + "dwd_hash": "0b279af4d1284a9067ca24fe47010e19" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "9bdefd196ec3e247c42826279fbdf899", + "dwd_hash": "bb298f3206c79ed6ff8290e63c3a65dd" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "805df7fa27aa0b980251e8f7173c99ed", + "dwd_hash": "7f29e3d3d7e9d80010d9b58aad52af89" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "4799ec8dd24bd6902fb4b58dcd70e8af", + "dwd_hash": "9fb38719db68f5c8787ddba15f1d6f4f" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "a4aa6cab7cdba1386b37a8be4d74eee0", + "dwd_hash": "29e3e6b0b584dc2fc91ca3dd47f2714d" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "c0125e969ce85465fd2b8d4e8301ff6d", + "dwd_hash": "841e037525e45cca646a5d8709c06455" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "e2f34b60774bbc28a2e755e3e98d73f8", + "dwd_hash": "625049cc949b9031086d8c6ec8a1e248" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "6b16a2c6d2dc23c7abc64f7c90cf5ae0", + "dwd_hash": "3b7a101f34ab3c351c460b133ecda049" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "442335150b87e8d3c3a58b82fe096bdd", + "dwd_hash": "ab8fc53affd51ec133c851a061b2f861" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "231f0904e4a8376add05ac702b2822b2", + "dwd_hash": "fc8529a7c059c9229d3ea9840e89f4ac" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "323883c8423166925515e434053e607f", + "dwd_hash": "fc7ceee69b26a719370724bbbebae3e0" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "581bea0dbe36b9eb30c55ab25e3aa177", + "dwd_hash": "b86693a67c1f9726b13e6708bbe51b0a" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "dabcf339c1cbe6c8ef2c9c59a2fcce55", + "dwd_hash": "78d5331d0f549aa6ffce4cade3283e1f" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "72ae1961f45ff578cf72a52fd6f4f2e5", + "dwd_hash": "7395fee66097a01de58169098788ab2b" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "90e423c17428049c831f5f507964b3af", + "dwd_hash": "56ee57aea81f644c907c801ae6b873f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 14, + "ods": 14, + "diff": 0 + }, + "amounts": [], + "mismatch": 14, + "mismatch_samples": [ + { + "groupbuy_package_id": 2798713926290437, + "ods_hash": "124714d411c7521c102f527e554aaa6c", + "dwd_hash": "67f8bbd602f7407b406a8e6bf62d7f28" + }, + { + "groupbuy_package_id": 2798723640069125, + "ods_hash": "d9ad850c55b29c3de62c6c95329dbebb", + "dwd_hash": "f10fe74b311b6eeb65eff935ab69acc7" + }, + { + "groupbuy_package_id": 2798727423528005, + "ods_hash": "52ce74dec19291513680b8bbaa515e95", + "dwd_hash": "09617b1e48b1f9b910d1fbaf330c4586" + }, + { + "groupbuy_package_id": 2798728823213061, + "ods_hash": "17e57f32c06014f72067f5c21a0b2be6", + "dwd_hash": "4a7ec7a9b1358b27f80830ee8b03e7c3" + }, + { + "groupbuy_package_id": 2798729978514501, + "ods_hash": "b20ceca50b02e752c988a33616730544", + "dwd_hash": "fae5fc27b5ee2df3351b9cab326603f0" + }, + { + "groupbuy_package_id": 2798731703045189, + "ods_hash": "994906a299edbd7cb91aa03cae0fd068", + "dwd_hash": "dc59d92d57d2189527581bc0355bd259" + }, + { + "groupbuy_package_id": 2798732571167749, + "ods_hash": "0654e76b1bf528b18435062c9675b4cd", + "dwd_hash": "d73e9b9db25c21f1dc4a9e05ea74827b" + }, + { + "groupbuy_package_id": 2798734170983493, + "ods_hash": "5718013aa65bbf36a08236a485d7d530", + "dwd_hash": "22d2c1ad70f638803e04be8e0ceb89e2" + }, + { + "groupbuy_package_id": 2798898826300485, + "ods_hash": "11a4b80248bdd3e760dccda12439cd4a", + "dwd_hash": "97d26f222050435e66e091c87abf6c1d" + }, + { + "groupbuy_package_id": 2798901295615045, + "ods_hash": "ca0eea4f9bae446c091daad784294dab", + "dwd_hash": "5343e31a915288ff77f0c076af283f98" + }, + { + "groupbuy_package_id": 2798905767676933, + "ods_hash": "6bee80b984dfaac039ac7493946597d5", + "dwd_hash": "2daafc0ca71ee8a04711347ec20d0f0a" + }, + { + "groupbuy_package_id": 2800772613934149, + "ods_hash": "17d792982c4ae480d72a3fcd796e6e6e", + "dwd_hash": "07988bc6e99760a611398a5fb56788ce" + }, + { + "groupbuy_package_id": 2801875268668357, + "ods_hash": "35693737db8f88213a44aa46e5770888", + "dwd_hash": "d2486ddfd089d611fefe446b43522462" + }, + { + "groupbuy_package_id": 2801876691340293, + "ods_hash": "2c8c49d8dc54c4cd8eb61d7231bfb374", + "dwd_hash": "f9426da34dbaafd5be848481e6701345" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1246, + "ods": 1246, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 18607.65, + "ods_sum": 18607.65, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 68759.8, + "ods_sum": 68759.8, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 133842.45, + "ods_sum": 133842.45, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 10234.83, + "ods_sum": 10234.83, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 46883.63, + "ods_sum": 46883.63, + "diff": 0.0 + } + ], + "mismatch": 1246, + "mismatch_samples": [ + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "c996b41bdcd0ffe747fdb4522eb4d4a8", + "dwd_hash": "57ad4a71ac22a03d8f04f7ef1ed7ba9a" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "a8c9909a674bcbc69e65d5bdbaac4f47", + "dwd_hash": "df1572236fb8464b6d9bf00cea1f4b30" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "dcdf0370170974b4c8cba8f9eecb31b1", + "dwd_hash": "bde678c03592110cdaf50556681cabcf" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7fe9116f8c313bdc73ff17e8fee54129", + "dwd_hash": "cc835b0f23cfa556109f7c0214a23d97" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "72a2bce3f7b9d8885754111bbec046d1", + "dwd_hash": "983d917a35d9b5f3dc5694e56e67f68e" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "aedbc70f631706dcdd86580c7c151fec", + "dwd_hash": "4ac24c584ceaf9b30d6c533798bf3b23" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "61063e40e6904252b09f3f0ebfa25814", + "dwd_hash": "910113aa336ee07d1777e6558b9b5264" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "b4f2ec57ecfc46b50496fc5c5134d4fd", + "dwd_hash": "eb8eabde873f8ed746756532e59563ee" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "d9387d235883b102a23bf18680841db3", + "dwd_hash": "a1001342b377b5704ea613b76b0a625a" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "5fb15753c058c5e39fc2b2669cb3ed2a", + "dwd_hash": "937bedd3b579e635518e7d515f49cab1" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c1f9daeaa920d9b85fa0a9bd962b9539", + "dwd_hash": "0a767db11e3dc5ec5b6fcf3ee1cf924d" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "d5812a54b74aade826b27fac309425df", + "dwd_hash": "f8cb8075d51e981b0b76c3e0bea569ff" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "1d06da3a188eb5db10dca9082cf9b778", + "dwd_hash": "b27f1a0434b289d6b3a9f4472e159e8e" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "25538df1fc174be57c8445e26f41c182", + "dwd_hash": "d88e798c7283240c52042d165dc667c9" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "6bfdcdd1b48ed134a3eb4306f60495b1", + "dwd_hash": "67abccc69be0d6e0992e276c649c3fce" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "b185d87c6330220129a376803df75956", + "dwd_hash": "069cbb1953b31a4da10e6802d0f2e45f" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "d3df2d1e910208cb3c2361f6d1e51045", + "dwd_hash": "e16492d2a07051c429028b9c5c677226" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "eb5f4d57edaafcaa3460c7a3a2a1f2eb", + "dwd_hash": "3a118bbb15128d78bdd1635ec7c561d0" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "5c427e3c2a6e84ac6bf3b344d13d2fd2", + "dwd_hash": "17005760d989cdd82bf5965148c00ed3" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "8056797c37779c3c21aeb28af2b68f43", + "dwd_hash": "92fbd8b4abf2e50a9ae5578bb07642b4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "e9a084873db3b89811d7cd1105f4b7cb", + "dwd_hash": "4bd74fd2b32d3fe39eddb11272f2be15" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "dafc5dd73179217756a8552935952b9e", + "dwd_hash": "8f0c74aed54caaad55c26379fc4da72d" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "9faf72a81e5b94894d3d055fc503fa6e", + "dwd_hash": "61f94a0d2a94d86724d290de3eed285c" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "17215f75e1d5f0cbb100ff4ef0954e6a", + "dwd_hash": "ac7c74f49245d610fb5624aa4cdd45e4" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "79262995f31f7d0ce410ca9508912315", + "dwd_hash": "bc1429b1b38a1c73ac82038d06c6d298" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "d7027e9c5da37043b4d01272abcbd66e", + "dwd_hash": "abda1c70e9ef51cf704d25223479a770" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "cb851742754b8ecc13d32d4ec207999e", + "dwd_hash": "4f15a8249660849e6b3b8499c1d33687" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "0aa8d513f5cec179e9a2b1dbd273a6e3", + "dwd_hash": "bbb167bd1c8d4790879677562998c869" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "46bca4d8ad0e173954374824c43bf90f", + "dwd_hash": "2434b5ee538ae3059374c35540a1d2bc" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "62430a3c8466e0d2a42faebe53ce9e8c", + "dwd_hash": "70ae3f872582f414d48b28c4af442f2d" + }, + { + "table_fee_log_id": 2800587822172101, + "ods_hash": "a243faa7fb36f3ec7f96914a2773b0f4", + "dwd_hash": "6f4f160d2decb370a26e7f57efc50789" + }, + { + "table_fee_log_id": 2800619360864325, + "ods_hash": "b92ba0ae643df104c13afc669c1cae4a", + "dwd_hash": "650775555ae6478e5e786d94f8abc111" + }, + { + "table_fee_log_id": 2800620933498949, + "ods_hash": "93110f4356682e430b9029a14dc80e47", + "dwd_hash": "bab1f02f25709236df2490df4d3d1487" + }, + { + "table_fee_log_id": 2800620933515333, + "ods_hash": "aa0b091059a6addcdd99f6e87d1ccda9", + "dwd_hash": "3a02b1f44d273eb084b4e3803d7cad8f" + }, + { + "table_fee_log_id": 2800630584150085, + "ods_hash": "399c6f703ff87a7a62ad86653c9a3966", + "dwd_hash": "4e97ec9f427ad56a73ae794f6eeb090d" + }, + { + "table_fee_log_id": 2800637727328325, + "ods_hash": "2f170638f98b048dd53639c0dbfe4794", + "dwd_hash": "db78973b47e4d318f2defbea86d73263" + }, + { + "table_fee_log_id": 2800643258386373, + "ods_hash": "1e0445381b514768baf258be70e60388", + "dwd_hash": "59088a6d8916521dc91037d9ff1c7e55" + }, + { + "table_fee_log_id": 2800653445843013, + "ods_hash": "d1660417f924efb202532aacf42156e6", + "dwd_hash": "0265a660929cdf5c5fd7f67b31cf5e61" + }, + { + "table_fee_log_id": 2800653613074309, + "ods_hash": "0789891c6116ada145c4cbdacca0100e", + "dwd_hash": "ec81871848f4409a33274ae02f2dedef" + }, + { + "table_fee_log_id": 2800659366660165, + "ods_hash": "a80291accbc59f9f2d2bfc901e42b943", + "dwd_hash": "e1f58fe151b4f00aff31c741e02b1cb3" + }, + { + "table_fee_log_id": 2800675353331653, + "ods_hash": "aab3e9b157089cc8ccc7f1b0e76c4a8a", + "dwd_hash": "fd61f0b7d7b95462a844714efb86b089" + }, + { + "table_fee_log_id": 2800675659106181, + "ods_hash": "dac794400ee7547a398a169a7e656385", + "dwd_hash": "174ed3f47c5cf5ab3d068a24ca9fd8e0" + }, + { + "table_fee_log_id": 2800678244845573, + "ods_hash": "87b09f72659260c23c3a1808d59f1b6e", + "dwd_hash": "94d456424a240007fb30e833b1549e8c" + }, + { + "table_fee_log_id": 2800698692732805, + "ods_hash": "8dba496c79d8c0b82a98960ab73c79d8", + "dwd_hash": "03d5aefef9e0567e78eb60f4dfdfebe1" + }, + { + "table_fee_log_id": 2800700728477637, + "ods_hash": "f896db65f1800a060a0c9712612ebab8", + "dwd_hash": "bbea759c1509041090240d6cd62e4fe4" + }, + { + "table_fee_log_id": 2800702062512133, + "ods_hash": "2ce2f5597dc76535e62fa010708bf08f", + "dwd_hash": "d03184e7a62eb145d542666a2800b661" + }, + { + "table_fee_log_id": 2800702963222597, + "ods_hash": "8dff234cb28a56a82549ef112065aed4", + "dwd_hash": "18a5764829440040b8e57e0a83d44460" + }, + { + "table_fee_log_id": 2800706253375493, + "ods_hash": "468e8f6e1f01e705e2263875bb3e9c5a", + "dwd_hash": "5e16051d3c8ef204d26baee0e8f383d8" + }, + { + "table_fee_log_id": 2800711390578693, + "ods_hash": "9946e99cf1fff9878bc7d634e1aa3dd4", + "dwd_hash": "d43b24af7b851344a46b0d6eea5b1e8c" + }, + { + "table_fee_log_id": 2800714782836677, + "ods_hash": "b8c12b9708693aa9c7e19f913bf6008d", + "dwd_hash": "4e3b342ada97de0a81253a673011a6ab" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1575, + "ods": 1575, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 14.25, + "ods_sum": 14.25, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 31186.8, + "ods_sum": 31186.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 29160.8, + "ods_sum": 29160.8, + "diff": 0.0 + } + ], + "mismatch": 1575, + "mismatch_samples": [ + { + "store_goods_sale_id": 2800531576571909, + "ods_hash": "6e303782f91f94d74c8288a319ec8e34", + "dwd_hash": "47666d1d71c9f2ae985997d3ef02ea28" + }, + { + "store_goods_sale_id": 2800534986557445, + "ods_hash": "94f02071ae3de6bc42af66534c4fb5a7", + "dwd_hash": "19200caf5c60ae739cacd8dbbcd2f6d1" + }, + { + "store_goods_sale_id": 2800535383328645, + "ods_hash": "0df3fd31ec78451a9382e88f298fb338", + "dwd_hash": "ddd2ee0ce058b2829c4acba40375b5c5" + }, + { + "store_goods_sale_id": 2800538253232005, + "ods_hash": "da8e35c5f97b05df66f8352d582fb8ce", + "dwd_hash": "ba73244260a670ea4ad4de343752c323" + }, + { + "store_goods_sale_id": 2800561805314117, + "ods_hash": "18b0ceb17ed246f96018f259dac2d45e", + "dwd_hash": "c71407cc9d80344b3e361ee8d91be62b" + }, + { + "store_goods_sale_id": 2800561805314118, + "ods_hash": "3de6565712286692591f8819e7aec6f0", + "dwd_hash": "fb53114306c7631d28f11de2fb6f7092" + }, + { + "store_goods_sale_id": 2800570650150981, + "ods_hash": "438703f9bd4d4b94bcdbf03acc7e57fc", + "dwd_hash": "c04b2414928d9104d3467da61b66c9b3" + }, + { + "store_goods_sale_id": 2800574478305349, + "ods_hash": "a62e10aaf3e5aa5883b6de93e1b3b13a", + "dwd_hash": "fd2bdf1d86b479e9811afa46600598d0" + }, + { + "store_goods_sale_id": 2800595439273925, + "ods_hash": "cb566fcad8e096a4cf853219cb82457c", + "dwd_hash": "9cfd6a6471693c1d2e0963581b884812" + }, + { + "store_goods_sale_id": 2800651545217029, + "ods_hash": "3130c69a7798bc1591778e792f53fd7a", + "dwd_hash": "2c5948ff53df88c17b83fd2646c878bc" + }, + { + "store_goods_sale_id": 2800677355571077, + "ods_hash": "7b11ff75c56954df97c035381f0ee8c1", + "dwd_hash": "2ce192b766227d80c7bbbcf74646fd87" + }, + { + "store_goods_sale_id": 2800693820344197, + "ods_hash": "c76f650f5bb3ba35e7aa3c2993ab8ecf", + "dwd_hash": "cfc60e1d1d93cde18225730b03d997d4" + }, + { + "store_goods_sale_id": 2800702062725125, + "ods_hash": "ce3100ade8842817b23dc008d9c87e23", + "dwd_hash": "e7985d6fb1adceae6fc39b2d22a11f19" + }, + { + "store_goods_sale_id": 2800702062725126, + "ods_hash": "a491499f2d9f8b72113b461bde2531dd", + "dwd_hash": "b2e15370bca9873956f0f8dac1e73ddb" + }, + { + "store_goods_sale_id": 2800702062741510, + "ods_hash": "4f38f06e1584fa1532be6dfdf14ee03e", + "dwd_hash": "328523d3065eadf00ce8e9aa02389677" + }, + { + "store_goods_sale_id": 2800702062741511, + "ods_hash": "01b72eb915d5b540d22dd446c5341fc3", + "dwd_hash": "3e86c1ba6f2b8629bd28585ecaa5a387" + }, + { + "store_goods_sale_id": 2800706253604869, + "ods_hash": "03adcb8dad84783e5480efa38d11317c", + "dwd_hash": "d488d9441c924ab1ddd15685f9e8dcc7" + }, + { + "store_goods_sale_id": 2800706253621253, + "ods_hash": "fbe99cce8b142137cde7b96ac850aef3", + "dwd_hash": "a1138d8d608c89ea4e3fe2f6d9af10c6" + }, + { + "store_goods_sale_id": 2800712221738949, + "ods_hash": "bdc52a597baad99d990144788b02a2b6", + "dwd_hash": "c1d35c51879e132200ac449fa8531ec0" + }, + { + "store_goods_sale_id": 2800745783560261, + "ods_hash": "505ac5584483adf14e86f914b1461c3a", + "dwd_hash": "c91c4f49209578f0b45064e73a52d677" + }, + { + "store_goods_sale_id": 2800753410951237, + "ods_hash": "6ce34270bac4b74b8abe5a4a6d2e578f", + "dwd_hash": "31e967f0441e484cc3a3abef6343b8d2" + }, + { + "store_goods_sale_id": 2800765805185093, + "ods_hash": "cdd7c348469b7f9d52b3e7f1d01bf561", + "dwd_hash": "479edd0303d7c5dfe1700bfe048e3518" + }, + { + "store_goods_sale_id": 2800770325579845, + "ods_hash": "588605cc3fce010d9d1c43b424b83911", + "dwd_hash": "4836ba831ba91ecb515a438bc75534bf" + }, + { + "store_goods_sale_id": 2800770325596229, + "ods_hash": "0b70937c19dc18dcc52070ad365c9cf7", + "dwd_hash": "ad050624bbe214b8d96f86259401a06a" + }, + { + "store_goods_sale_id": 2800770828699781, + "ods_hash": "c743f14515b3ae6a445004c746d73671", + "dwd_hash": "653d4f2de27d7c77edc901c34dd27cbb" + }, + { + "store_goods_sale_id": 2800772219226181, + "ods_hash": "2f004047e557505be36d95512a112efb", + "dwd_hash": "25487c09a89013e573aab96ac54a3507" + }, + { + "store_goods_sale_id": 2800772219226182, + "ods_hash": "820b9f4cf0af1b2c8b36de071356ba1b", + "dwd_hash": "b71d5eb9b61408d5d6530ec484eaa837" + }, + { + "store_goods_sale_id": 2800772219242565, + "ods_hash": "195f3df3f97b941c8621f19b65ba1e76", + "dwd_hash": "dd227dd706a01451e9559bfda907f61d" + }, + { + "store_goods_sale_id": 2800772219242566, + "ods_hash": "195f3df3f97b941c8621f19b65ba1e76", + "dwd_hash": "dd227dd706a01451e9559bfda907f61d" + }, + { + "store_goods_sale_id": 2800772219258949, + "ods_hash": "ecb6faec666d5c72ce80c2d5f9ac0882", + "dwd_hash": "8cd781e37297a1f846388cd3d86cf720" + }, + { + "store_goods_sale_id": 2800772219258950, + "ods_hash": "63060db3bc2495b4f866d58ced4907f1", + "dwd_hash": "0824f4a4ade70b67414527d2dad5ed7c" + }, + { + "store_goods_sale_id": 2800772219275333, + "ods_hash": "820b9f4cf0af1b2c8b36de071356ba1b", + "dwd_hash": "b71d5eb9b61408d5d6530ec484eaa837" + }, + { + "store_goods_sale_id": 2800772219275334, + "ods_hash": "820b9f4cf0af1b2c8b36de071356ba1b", + "dwd_hash": "b71d5eb9b61408d5d6530ec484eaa837" + }, + { + "store_goods_sale_id": 2800772219291717, + "ods_hash": "1f401ccf8c1d835dd8034eb93c8ea6a4", + "dwd_hash": "c0c0377ac74a7670d1d460ec57d538b5" + }, + { + "store_goods_sale_id": 2800791365798021, + "ods_hash": "2ad974c0d1ce2d672b21809da774eeb5", + "dwd_hash": "0483a60bf20d85114796507d1c92f1ce" + }, + { + "store_goods_sale_id": 2800791869212677, + "ods_hash": "af9314097e1475dc5b7cc1b76082eb96", + "dwd_hash": "472800b5af808fcfb0338a56f17f493a" + }, + { + "store_goods_sale_id": 2800795263191173, + "ods_hash": "b2f6ad311201915055707aa4ffd92a33", + "dwd_hash": "b280dff7f08b67b456850a843fb47786" + }, + { + "store_goods_sale_id": 2800796133050437, + "ods_hash": "da6abd586590f96bc39163285da50b89", + "dwd_hash": "30aa7f518b787463e9f220357a568056" + }, + { + "store_goods_sale_id": 2800804798498693, + "ods_hash": "d829b7df9b8a50b19e4200db6f6c095c", + "dwd_hash": "1eca17768773071cb20e7a860901ce4c" + }, + { + "store_goods_sale_id": 2800823717955589, + "ods_hash": "22521d4fb60361767acaa87cc582e47b", + "dwd_hash": "86c35440699929147d1dc554c4cf729b" + }, + { + "store_goods_sale_id": 2800825635424325, + "ods_hash": "16509a8bde34eb45f5fd7b6cbc8246ad", + "dwd_hash": "d848bee7a495e64020302a93e71276c5" + }, + { + "store_goods_sale_id": 2800825635424326, + "ods_hash": "ed519714cf4df6b7a5e76564bf64902d", + "dwd_hash": "09b2e6c928c9c146d522b7111325f192" + }, + { + "store_goods_sale_id": 2800833196132421, + "ods_hash": "ed8571fe9c4f1fbbd734db02fd1e2f35", + "dwd_hash": "3902da8633dcbf65b99f0c4ec2304352" + }, + { + "store_goods_sale_id": 2800843724703877, + "ods_hash": "67cdc248d2004609dc1d195bf9b4168b", + "dwd_hash": "1df4723471cdc99c840f4c5938066396" + }, + { + "store_goods_sale_id": 2800843724703878, + "ods_hash": "251583a2b01832353b8c789064b224a7", + "dwd_hash": "3ca4dee645dc655d0424ce9a22b544b1" + }, + { + "store_goods_sale_id": 2800843724720261, + "ods_hash": "8fb92e3b0c017e8f69f28fce3ad77144", + "dwd_hash": "73e44b4e8df749bd6502996205b88d94" + }, + { + "store_goods_sale_id": 2800843724720262, + "ods_hash": "0eead13899fa71897d58a59fa3fe4644", + "dwd_hash": "37d2e4a30cd2e73e8a650ce5f8711ecf" + }, + { + "store_goods_sale_id": 2800844154177733, + "ods_hash": "92ca7fcd30e479dff65de978b0fba085", + "dwd_hash": "367e728b9be8164e33cc68958d8a5a87" + }, + { + "store_goods_sale_id": 2800864104286405, + "ods_hash": "16964978c0a1aac03935f63eaf1968c4", + "dwd_hash": "1bcc9f87788cf77a7d8f201ec8f61c94" + }, + { + "store_goods_sale_id": 2800877972146245, + "ods_hash": "44e714b3441d6d0deb490cea1aee4aa4", + "dwd_hash": "f0625629c9102cf784350ab792bee9d2" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 351, + "ods": 351, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1261.59, + "ods_sum": 1261.59, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 113232.99, + "ods_sum": 113232.99, + "diff": 0.0 + } + ], + "mismatch": 351, + "mismatch_samples": [ + { + "assistant_service_id": 2801967422032133, + "ods_hash": "49771ce98565b0f4dbee66b1c5f39873", + "dwd_hash": "d1aafccd1922e697fc102e19d84f1a7b" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "b3cac284d3a6674a7bfcbc9f44a69bf0", + "dwd_hash": "04f4d09b4f812aae6acc63d975e5be18" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "bfff4b90934f7aea1d04be9ffaa5739e", + "dwd_hash": "72df9c5f40b7fe97e19d4141c203688e" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "0f971392d49e892b0541fd7b6b6a606b", + "dwd_hash": "1212bff294146d887b732ebbd4c4046e" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "02a2ce4a0b01165b7655dc4274d8dff0", + "dwd_hash": "1712fa4a92a510ad6448fb60abf22ecd" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "511226ea547622179fda3c4eb82d2e1d", + "dwd_hash": "eea083348ad1262de77075f7575bd3e7" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "ab444af6b2c46b520bfd0186f5b04e33", + "dwd_hash": "ad2e9f2bf4bb7e00ca856143d1328151" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "ef235ceb666539856d83cad5414369a3", + "dwd_hash": "eb8287cfa6dcd84ef055c8060e1d7d26" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d63a8cf912c3ab789f1de8d635beeadc", + "dwd_hash": "1a07661fb8d7d72d34b8cbe2f5b6de26" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "2cd83d8abb414e4ded583e3efb583388", + "dwd_hash": "f07bf3166968fa8e8edc838df409e4ac" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "d6afff64f3461c1a3835e3d17f7606e3", + "dwd_hash": "b2dd5513b74d1db2c76736b620c53e3e" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "889470978e095c3172c8cef88255cd90", + "dwd_hash": "7ca7e4e3c7afa11f41d850d48eef3d6a" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "44035f578e9e5c012c9564fd9da35e91", + "dwd_hash": "b0c3eb736bd1d49b4bce0c0975a3d235" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "3106efc3dd0b819749b693e13ee0aed7", + "dwd_hash": "15f2234761a2e8f24646797bf45ddb1e" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "5e64a42fd8f0e5ca77a1f3b95e20ce55", + "dwd_hash": "01ef5de3702f79c9b49679ba22bf9779" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "62a8f6e5f8ec1185e9eba1a9321b0001", + "dwd_hash": "ae55de5310606e9a27f12b9ad6170849" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "4d5920d10f660fc9f983a518ad57093f", + "dwd_hash": "1995a857fe537e4b06d3b9c127445d1d" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "4c2509c35c8d663792480660408d89e9", + "dwd_hash": "285ba2eb49e69bc54e7465776e57721a" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "1a27ed795e502774497e062fbb686264", + "dwd_hash": "4cc743765fa87bd0a83365c7edf263e2" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "c69ecc1ef5ac6263d365f46a23cb0ad3", + "dwd_hash": "03f994e4bb20cbbb0e79a035ad53752f" + }, + { + "assistant_service_id": 2802363811252293, + "ods_hash": "93627910a5181e201965a44ca86702c1", + "dwd_hash": "16eb97fb27fcbd1f5ecc683f0bc077c2" + }, + { + "assistant_service_id": 2802363811465285, + "ods_hash": "6c5588429261bd47f8f96b8752ea0952", + "dwd_hash": "20882640d390668cba5a5834d084d930" + }, + { + "assistant_service_id": 2802363811678277, + "ods_hash": "51c818d5ae1917427e60cbd8835797b5", + "dwd_hash": "2116101c9c5f4d21d13f629510fbe591" + }, + { + "assistant_service_id": 2802394734644421, + "ods_hash": "327b45e89b493bcc9e004aedac4ef95f", + "dwd_hash": "7886f0936fc9e5b8335815271699caaf" + }, + { + "assistant_service_id": 2802394734890181, + "ods_hash": "f22f371f9de79af3ef22cd0b76e33338", + "dwd_hash": "f0416ea6ae7289cf65ae1fb00582aaec" + }, + { + "assistant_service_id": 2802394735103173, + "ods_hash": "ef94e963ad77877b106f6df6c90bce57", + "dwd_hash": "5a8b413b21563130fad67d841efddb19" + }, + { + "assistant_service_id": 2802394735332549, + "ods_hash": "397e0023f16027966ab332ea39ff93d3", + "dwd_hash": "c129c37dff5a85cdec85515a3c14ce1a" + }, + { + "assistant_service_id": 2802399882299461, + "ods_hash": "0b13fdafc344807ddfebf663c3f1db04", + "dwd_hash": "c3966341fc20ade840292f89584bc016" + }, + { + "assistant_service_id": 2802399882528837, + "ods_hash": "0221abbddaaa5140a54b28cd708b4b1b", + "dwd_hash": "561472456c6de33ae0ad6fa01770cced" + }, + { + "assistant_service_id": 2802457542379589, + "ods_hash": "8351c42c605e3df4f9706a58486c41f9", + "dwd_hash": "b9f638f1df97e5122fd1189fd7f207f5" + }, + { + "assistant_service_id": 2802457542641733, + "ods_hash": "1329a5b3c4988a9d45c45fb21788b26e", + "dwd_hash": "bc2688a8cbe06d8c3b1a0de3bf923128" + }, + { + "assistant_service_id": 2802487729769733, + "ods_hash": "d2801172392acfb34fce5189082db41d", + "dwd_hash": "e50f23f53365416a77d107e30d3ccef7" + }, + { + "assistant_service_id": 2802487729982725, + "ods_hash": "00d9635a4307b1d8b75cc24974b5f9d9", + "dwd_hash": "074362aa8042ce5970abb83679eafdfb" + }, + { + "assistant_service_id": 2802534807734341, + "ods_hash": "36cfefc489bd85dd0e63b0c2ba5c5828", + "dwd_hash": "70b987779a0f1b5500fa34384ab6f6e0" + }, + { + "assistant_service_id": 2803174292146245, + "ods_hash": "55a882851a772217e310b4841922116e", + "dwd_hash": "1e6d1ec116a12bc2dd1b425a7c5081a6" + }, + { + "assistant_service_id": 2803184722643013, + "ods_hash": "827392d43ed691f19b3e5de1e56e1a98", + "dwd_hash": "28f3a1d7255783af709d5000dd386629" + }, + { + "assistant_service_id": 2803255025569029, + "ods_hash": "68d3a386041120587e39083dabce80ff", + "dwd_hash": "08d81d5a7e906e787e8eeb9363876705" + }, + { + "assistant_service_id": 2803270380783685, + "ods_hash": "1e984996495e90f51ed7d8ff4a6f4075", + "dwd_hash": "c5aed19e28eac8e6b9e0349ffa60d05c" + }, + { + "assistant_service_id": 2803405096520901, + "ods_hash": "f354764dced35b2de9d19bc1cc4738e3", + "dwd_hash": "598bfdefdc0227c0fca177aab4f134da" + }, + { + "assistant_service_id": 2803421117942981, + "ods_hash": "c62112bc75bf3267f6855cc3b6a23359", + "dwd_hash": "98641a696277287591b3ff2155adad84" + }, + { + "assistant_service_id": 2803525167155269, + "ods_hash": "e5fdc91a66d96de14b371bbfd7d1f429", + "dwd_hash": "e97971c586cf889657441f43942fc053" + }, + { + "assistant_service_id": 2803525167368261, + "ods_hash": "b50202b9ff285188e50daa344ab087f7", + "dwd_hash": "257bc5d674e76ef37afd292327d73ae5" + }, + { + "assistant_service_id": 2803556073867333, + "ods_hash": "f9f11f8fd54e07f523144cc0ee02bde3", + "dwd_hash": "ec232e0c62c4bb3d64b7dbbfe3db227a" + }, + { + "assistant_service_id": 2803557601938565, + "ods_hash": "7347b3c81f880aac537d2b08f416d63a", + "dwd_hash": "f5dcb8aed1942062f0544368066f9fe7" + }, + { + "assistant_service_id": 2803629803556421, + "ods_hash": "f9ef038087b5397b60dc8af0e5080896", + "dwd_hash": "27119d7438a1ff64c42402ee27831ebf" + }, + { + "assistant_service_id": 2803645228338373, + "ods_hash": "01dcec42e16c9ac9213c9c27f9982fdb", + "dwd_hash": "5b15fa4486ee41704e2319862c25d447" + }, + { + "assistant_service_id": 2803648599952581, + "ods_hash": "6b91b76565dc818f752ea5d5047823cd", + "dwd_hash": "49a984ba228ad94926d1e704f85cd817" + }, + { + "assistant_service_id": 2803650125925573, + "ods_hash": "bd926e3f7c934fd357b5fdaa1ccabd8e", + "dwd_hash": "1a7393d98f2069c9412126c295175345" + }, + { + "assistant_service_id": 2803652597845253, + "ods_hash": "0a70ec380f8e02262b2378667b65dce6", + "dwd_hash": "b10b4766db01120404f909f8f163e693" + }, + { + "assistant_service_id": 2803664219147461, + "ods_hash": "c7cda6bf0ca5c002b20e0217f272f899", + "dwd_hash": "50ee2c017243d64ef6e2b9906676477f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1007, + "ods": 1007, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 72348.0, + "ods_sum": 72348.0, + "diff": 0.0 + } + ], + "mismatch": 1007, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2800177890035141, + "ods_hash": "ade4e809f29ac4743d478b94205e4ca2", + "dwd_hash": "5b221810ba8374239f826c5e5236d1e4" + }, + { + "platform_coupon_redemption_id": 2800212049381381, + "ods_hash": "e3b829651f740513ec36bb8cc66fc607", + "dwd_hash": "0b001d2157096e73dceb1f85a6c8e62b" + }, + { + "platform_coupon_redemption_id": 2800225041270661, + "ods_hash": "7aafc96fef21ea9853442a152eeee740", + "dwd_hash": "54b01e796c7594395dc81c5bedd623c3" + }, + { + "platform_coupon_redemption_id": 2800232957233029, + "ods_hash": "48267e8884fd102431766f933f4e65a2", + "dwd_hash": "90c93859ae104ff0cc2e42ee4cf80a2e" + }, + { + "platform_coupon_redemption_id": 2800240468477829, + "ods_hash": "e890a71ae57fc93593bf6efeced47358", + "dwd_hash": "49274b79cd93bb8f0875d1fd8cd8a1db" + }, + { + "platform_coupon_redemption_id": 2800252347369413, + "ods_hash": "dfc2d9edbe02797f8be18d40484109be", + "dwd_hash": "1e78abbff1b6328e58e80ca6098c979d" + }, + { + "platform_coupon_redemption_id": 2800270091077573, + "ods_hash": "870cc1586b39aa06efc630322aaa20b7", + "dwd_hash": "31d271f1c47e4e6d0ecaec5357cb8b93" + }, + { + "platform_coupon_redemption_id": 2800286639622085, + "ods_hash": "80fdf0f666584e627840ab871e10da13", + "dwd_hash": "8f4bc04fc7077753d2639d64fb540a79" + }, + { + "platform_coupon_redemption_id": 2800293317429253, + "ods_hash": "a0767d00dd75293b454b8f445c4e0205", + "dwd_hash": "526bbd4e1ffead6ab46133f74d41414c" + }, + { + "platform_coupon_redemption_id": 2800301651707909, + "ods_hash": "cd11a6d997e927bbb48c660fcd0ed939", + "dwd_hash": "8e3702539679c2535d284ccdcab542d1" + }, + { + "platform_coupon_redemption_id": 2800305630529349, + "ods_hash": "ef7779250b2a43e5f93e3153b8f3180f", + "dwd_hash": "b9aaef92354164a6ae00af9a54bb2dcc" + }, + { + "platform_coupon_redemption_id": 2800308975028165, + "ods_hash": "eb011b2abd19ef6f8cbc057b6b1173b0", + "dwd_hash": "d8a4f95314f5fd387a68d3dcd2bd17a9" + }, + { + "platform_coupon_redemption_id": 2800319846107205, + "ods_hash": "467f187fd36407fd9f32f8c38ad0b600", + "dwd_hash": "05240ac8a39d7372f9ab9b537c6612da" + }, + { + "platform_coupon_redemption_id": 2800340951697477, + "ods_hash": "86665614d11e0c2df0e223b737cafe4d", + "dwd_hash": "d7c8e9160548159a533dda4b521863e6" + }, + { + "platform_coupon_redemption_id": 2800340951697478, + "ods_hash": "01ae4f9328e13354c2891426e2177893", + "dwd_hash": "f34b78bb06cc78fd46a40dd38b7108e3" + }, + { + "platform_coupon_redemption_id": 2800353933297605, + "ods_hash": "bc722eedc9e7e1bcd96c0338894e4ecb", + "dwd_hash": "8bff90b57620756d0fb2d9a09281d89c" + }, + { + "platform_coupon_redemption_id": 2800355332851781, + "ods_hash": "1628c8d25090193a6ca550145aaa508d", + "dwd_hash": "28fc3ec94675c75d5609f7cb316f4f29" + }, + { + "platform_coupon_redemption_id": 2800356309387269, + "ods_hash": "8c47ba6688a323e5ccba28c5134620e2", + "dwd_hash": "1479335d208297d317af944d2df3b91e" + }, + { + "platform_coupon_redemption_id": 2800362555115525, + "ods_hash": "600115fcc9ddb8ac04e9965b9a7d0b15", + "dwd_hash": "895f5741fb26a2d2a0d6093354fa01b8" + }, + { + "platform_coupon_redemption_id": 2800362669098885, + "ods_hash": "570232fb69276c01304286d87362b601", + "dwd_hash": "ccf60c2df63a748b91e04fba7cf1dc2f" + }, + { + "platform_coupon_redemption_id": 2800363269703685, + "ods_hash": "01f0c634e2fae36ae5bc45020905054a", + "dwd_hash": "15708064ccb06a274d03f97596d29c5f" + }, + { + "platform_coupon_redemption_id": 2800370398169157, + "ods_hash": "7725fa8a1249de65c50548d2e1032be0", + "dwd_hash": "586f0773266b98ade772a46bca59ceaa" + }, + { + "platform_coupon_redemption_id": 2800387336226757, + "ods_hash": "6d41aa998ed396d33331eda38addff76", + "dwd_hash": "2e71e47517a5949405ab3c087eacddd8" + }, + { + "platform_coupon_redemption_id": 2800389263624133, + "ods_hash": "223ff854601f7b293286898b35cedf80", + "dwd_hash": "41e907cc77f34081f8950d88f9a7e2ab" + }, + { + "platform_coupon_redemption_id": 2800401805641669, + "ods_hash": "2cb2c6eb3b73505bd9ffe591f99fc53d", + "dwd_hash": "a852660ff5daab2afcd2a1bd9863a6d0" + }, + { + "platform_coupon_redemption_id": 2800404125993029, + "ods_hash": "951fc66a7b6ec672ae7ca0eb3a26502e", + "dwd_hash": "ce86f73f7dc00eb41332926812a27435" + }, + { + "platform_coupon_redemption_id": 2800414616422469, + "ods_hash": "3a27814ae4303c10ae3de576a23492f3", + "dwd_hash": "170cc866d1b6374c5c353af578d85c14" + }, + { + "platform_coupon_redemption_id": 2800422218499973, + "ods_hash": "51a6a30e6f00769bfe71ee24f8a398bd", + "dwd_hash": "f136316036b0c16b14eb494260c16181" + }, + { + "platform_coupon_redemption_id": 2800428127078405, + "ods_hash": "ff7910d5618d6fe18b9094f081e6a527", + "dwd_hash": "20c89cf9373cd12622d653042cba196b" + }, + { + "platform_coupon_redemption_id": 2800429601409093, + "ods_hash": "85e5e13e4285b4f5c44ed962fe6c1845", + "dwd_hash": "60b551b1617e4588cf95ad2d62908b64" + }, + { + "platform_coupon_redemption_id": 2800451581429701, + "ods_hash": "a63facdd2afdd203f18d4848679f45d9", + "dwd_hash": "10279413760bbd96b8ae3b6297ff8701" + }, + { + "platform_coupon_redemption_id": 2800461754812293, + "ods_hash": "002684c2a59a392f462bd286b3ec57a7", + "dwd_hash": "b0425af2ef943dd21f32e336adc3a95e" + }, + { + "platform_coupon_redemption_id": 2800475627833285, + "ods_hash": "db7f7d912e549af8bdfff4b4ac952b4a", + "dwd_hash": "b0a36b3ae8408015ce2bd06edc3c02d9" + }, + { + "platform_coupon_redemption_id": 2800483301148613, + "ods_hash": "b690dca390d2892662fab3bf8b54c303", + "dwd_hash": "aaa56e1a87750fce44a36a269aedb19a" + }, + { + "platform_coupon_redemption_id": 2800501422180357, + "ods_hash": "eefb5a2baef65c4f5c72986aa708aff1", + "dwd_hash": "d7cf0f200ccaa0c03013975ec5c1a260" + }, + { + "platform_coupon_redemption_id": 2800503587326021, + "ods_hash": "8853e624f1d3011ee46625a87adc2865", + "dwd_hash": "b0accf1b3d3aeb1447358c84fa2e5a0b" + }, + { + "platform_coupon_redemption_id": 2800506609436741, + "ods_hash": "0083d54a4f6a6abeff393480a3d8bff2", + "dwd_hash": "91941f516f764d7d5b6ed2e21a8ac6d3" + }, + { + "platform_coupon_redemption_id": 2800545193510917, + "ods_hash": "a2f1f1b4bc575e5fd06cf6dcabddb148", + "dwd_hash": "ea523c1f621e7b26fdc5966d8442c6ae" + }, + { + "platform_coupon_redemption_id": 2800549046913093, + "ods_hash": "270850c652cfc3a5d842787a9998415b", + "dwd_hash": "21b5645ac2a879d244279a59a861e7a9" + }, + { + "platform_coupon_redemption_id": 2800560878684101, + "ods_hash": "95b313944231bbfbb4a2c3a4f504e19a", + "dwd_hash": "5d0d035806df5ba13273edbff9c0ab92" + }, + { + "platform_coupon_redemption_id": 2800578953414533, + "ods_hash": "189f122cbe1d4e5f63a73b0df1112226", + "dwd_hash": "fae060a7379505c3c419451ffb06df1d" + }, + { + "platform_coupon_redemption_id": 2800579223996421, + "ods_hash": "655eaca314f45ea0c75fec734e2321a9", + "dwd_hash": "0062c42ba78f1b1fe0f1d8f5a547f4fc" + }, + { + "platform_coupon_redemption_id": 2800584785168389, + "ods_hash": "8a510ebb2d10ec7c0aed81f219b202fb", + "dwd_hash": "f6156f25ebdc84db4ad2486b95689987" + }, + { + "platform_coupon_redemption_id": 2800594394073029, + "ods_hash": "e37289f5015be76d1e285f6b2226de55", + "dwd_hash": "8774829fb1a588f5dcc6a8a450f224e0" + }, + { + "platform_coupon_redemption_id": 2800594659755973, + "ods_hash": "237315fdd6a95f5f1552a351d13380d1", + "dwd_hash": "926912d17eb99c7c03c8f6122af34b42" + }, + { + "platform_coupon_redemption_id": 2800594975229893, + "ods_hash": "eee7b44638d6db1c0d85225ee0b32a48", + "dwd_hash": "47834261a305d2b117e081d4991ed20b" + }, + { + "platform_coupon_redemption_id": 2800596665812869, + "ods_hash": "6dbe00177615276ddfe7776c84d9482f", + "dwd_hash": "974b8f818a28dacd02e29ba5cb084c4a" + }, + { + "platform_coupon_redemption_id": 2800600780146757, + "ods_hash": "ff18038120db11a0075e3ca96b6c1ebd", + "dwd_hash": "d0ef92860396ace8d82aafc0794d7b94" + }, + { + "platform_coupon_redemption_id": 2800602247038853, + "ods_hash": "8109ad32925059727f09889b5298cc1b", + "dwd_hash": "10f84296bf50036ad03933ebcc466728" + }, + { + "platform_coupon_redemption_id": 2800632886396933, + "ods_hash": "d75be0384a11b295084acc02cb5295e7", + "dwd_hash": "100972b836e7363119b5dbad5075cad3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1833, + "ods": 1833, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 178060.0, + "ods_sum": 178060.0, + "diff": 0.0 + } + ], + "mismatch": 1833, + "mismatch_samples": [ + { + "payment_id": 2800320955156357, + "ods_hash": "e185862ea789af05d4bf0bf493ac85b3", + "dwd_hash": "7ed4e6f7cd7128fb4dbfa4eac7e2707e" + }, + { + "payment_id": 2800328510212037, + "ods_hash": "9afdab5a5a5e7fe445e0f0e98c948624", + "dwd_hash": "7f9bbd7038ca0b5336a118537be9b30d" + }, + { + "payment_id": 2800343415572549, + "ods_hash": "11e4548641837260e60b03435330a7c5", + "dwd_hash": "7e0830ba6a3f67678f4aada9064a9cd4" + }, + { + "payment_id": 2800348154136645, + "ods_hash": "85f0e858e4a6f0ee98ede2f2092a9ce4", + "dwd_hash": "2b83dd14dae4baa44893a5f813b89fbc" + }, + { + "payment_id": 2800348914337669, + "ods_hash": "f06d855272128da5bd404d116f4dec33", + "dwd_hash": "e062fe185fbc8b893f07b6b28b47fee6" + }, + { + "payment_id": 2800353092929541, + "ods_hash": "9c6c4f17ca0c88599f746d15b2237628", + "dwd_hash": "6575ae39aa4f5f5287b6ddfa359b716f" + }, + { + "payment_id": 2800353214072709, + "ods_hash": "81592ea2ef36ce3748b8a7298546e870", + "dwd_hash": "7f9afe06882234595854fa93e8e5ff19" + }, + { + "payment_id": 2800360635533317, + "ods_hash": "50b53dbe0ad342f044c34a5d7d3f5c1d", + "dwd_hash": "362ad3eb3787c3f551534579aaae080c" + }, + { + "payment_id": 2800363076880325, + "ods_hash": "97eeb052c05665995a103d7374d71b89", + "dwd_hash": "fa7471786f2a0b965df3e3580919da2c" + }, + { + "payment_id": 2800371999131653, + "ods_hash": "4269a83adf9d0fdf1a2ab1e521a2cd0f", + "dwd_hash": "0ee04e5145e86895b6468c72bd7e81c2" + }, + { + "payment_id": 2800378703595589, + "ods_hash": "555935523dc96530ae1740b382ed0ca4", + "dwd_hash": "7585141dd17b54fbb38e23374385a4ea" + }, + { + "payment_id": 2800378802735109, + "ods_hash": "046512a70a4b23ca791e7a6daf34960c", + "dwd_hash": "4cf40242297e556975da2d031a6a4397" + }, + { + "payment_id": 2800379695089605, + "ods_hash": "451dc6f129d3d1e4f5c9efea6d371fbc", + "dwd_hash": "bd77cf004d64adeec80ca31ea43ea6f5" + }, + { + "payment_id": 2800379778369605, + "ods_hash": "537d2b533dfe46372f1e5b19373aa705", + "dwd_hash": "9521a25c074d947a202fd4e956bed1ac" + }, + { + "payment_id": 2800379847935877, + "ods_hash": "be1205011f3b9227a186c591561765be", + "dwd_hash": "856ed8189a3b620a7e96bd184133170d" + }, + { + "payment_id": 2800383250122693, + "ods_hash": "591421d9496305fa1ba635cca890001e", + "dwd_hash": "cd9ff6a5387b3549425a5fe8040900bc" + }, + { + "payment_id": 2800388502718469, + "ods_hash": "f7d37d263b77236884350c45b1d7ab87", + "dwd_hash": "eb8238fd843c86689e1fd2dbe202fd28" + }, + { + "payment_id": 2800388806477893, + "ods_hash": "a9e6b3e1324e70f8e16c16df2336fd62", + "dwd_hash": "7c8b2288216e2c80da2ada615aafa8cc" + }, + { + "payment_id": 2800392614594501, + "ods_hash": "694b811811f7bd1625f930e116d12e88", + "dwd_hash": "0b573a867fe5db5fd35efd900a3fd3f8" + }, + { + "payment_id": 2800410252199877, + "ods_hash": "70f5396602dd4534686cb244b39a3ac4", + "dwd_hash": "2a2b3d80f92f1a6b9489961f2bb4e41e" + }, + { + "payment_id": 2800410962970629, + "ods_hash": "8e08bad09f2d70b4336977d9c795d5fe", + "dwd_hash": "300fee6908eccea3985fedd7e89437e0" + }, + { + "payment_id": 2800420128491461, + "ods_hash": "e3e16b74a23fb5fd4a616df8f4405693", + "dwd_hash": "5d1d3d31e4ce4dd75a2fa6345dd31505" + }, + { + "payment_id": 2800421758322693, + "ods_hash": "f6dc4f8cfd0adde279f1b16c706c89a0", + "dwd_hash": "9dc16d207370bb0468311bd798f4b902" + }, + { + "payment_id": 2800423575046085, + "ods_hash": "e58676756216f6571683e98adb42df2c", + "dwd_hash": "a6ebaf4a69af96fa37a29ff16e02bf60" + }, + { + "payment_id": 2800428879693893, + "ods_hash": "7e0f47f2cd60421e86b7e9916c985510", + "dwd_hash": "8ac8043bdd3c5788e8dfc39559ae9fb4" + }, + { + "payment_id": 2800430750239813, + "ods_hash": "6921c6ae1c3cdc569d33553e066929c5", + "dwd_hash": "45f7e8be6b836c5e9f361466de986215" + }, + { + "payment_id": 2800433690068997, + "ods_hash": "689ff43ff8c01007a1652574a6b714f4", + "dwd_hash": "4a8a37cfa782dea10fc96ae88ea14e94" + }, + { + "payment_id": 2800442627786821, + "ods_hash": "e75974fae83e95e1f2596203fde62c8c", + "dwd_hash": "01dba45f16063d55dde6b345601e54c8" + }, + { + "payment_id": 2800448080398341, + "ods_hash": "4a085b966d528fb5ef08762bd9ca9786", + "dwd_hash": "4a87eb0e218f9cdb73340e9059b4c84a" + }, + { + "payment_id": 2800454938134533, + "ods_hash": "ec442f48ba2125f4c8206a8e21d98f6a", + "dwd_hash": "bf1584b92d21922dcd1d2a4192a0a21d" + }, + { + "payment_id": 2800460252219397, + "ods_hash": "50e46f59b343877155e4d4bdcca1b58c", + "dwd_hash": "546cebece39602ac36cb13520098554e" + }, + { + "payment_id": 2800462784497605, + "ods_hash": "87a90975c6ecc79a50d0474294e09ff3", + "dwd_hash": "ee1db1d3cbb09232d02bbb0086db5a12" + }, + { + "payment_id": 2800464767879109, + "ods_hash": "e0c4c51e7633d1ddcda5331724bf8805", + "dwd_hash": "ad60d780d0a91ea5c979e4b088894542" + }, + { + "payment_id": 2800474493765701, + "ods_hash": "57382f6a703bbd24eb5478c6f4eeee8a", + "dwd_hash": "631e26e1db65b90a92e9d4801061a622" + }, + { + "payment_id": 2800477849552901, + "ods_hash": "fe1a5d6ed1006c4313d7e61257ffdc70", + "dwd_hash": "8024d8272dcd8912b13d22b7278cdc84" + }, + { + "payment_id": 2800479194548165, + "ods_hash": "8c9f720fb4f0b0f38356d23293baccc8", + "dwd_hash": "52d974fa60977420bb2eaaa3c050450c" + }, + { + "payment_id": 2800479975000069, + "ods_hash": "512fc221dbcffe423bbc4504fbf9df5f", + "dwd_hash": "cf4f0e7b438c3a7839d2b6756618bb7e" + }, + { + "payment_id": 2800486209587205, + "ods_hash": "1304f77fda842b0fcce0d25954352afa", + "dwd_hash": "77e4b0ecc54d38f73049a2a0ce674f6d" + }, + { + "payment_id": 2800486384175173, + "ods_hash": "8e72c42415a6b5995eb1e25ec031b20d", + "dwd_hash": "acb55ee4d339277938168fb0c3858871" + }, + { + "payment_id": 2800488016021509, + "ods_hash": "75b0e5ddbe78b12a061d2e11adee2fc3", + "dwd_hash": "4d9925a2dde4e0ea74e91cb1758739bb" + }, + { + "payment_id": 2800488100415429, + "ods_hash": "96cde0c5495600301828cfec3ad6e06b", + "dwd_hash": "ad54691e902f9453ba43627dfd4d6e44" + }, + { + "payment_id": 2800489991407557, + "ods_hash": "f82b36acb549790fd78145b7558d4c2a", + "dwd_hash": "778030f746d5d841a918ff5a635c0b5e" + }, + { + "payment_id": 2800520186988613, + "ods_hash": "295dcb3555b878cd46f4c6db0a8e418a", + "dwd_hash": "234a573409ffcc8e20d2079554ddc7c9" + }, + { + "payment_id": 2800524095670277, + "ods_hash": "0f3335b0af7714229d9a3309d88b0c08", + "dwd_hash": "3fda015051ff9483850478285210b0ae" + }, + { + "payment_id": 2800526168819717, + "ods_hash": "bd7a6fbbd35fa628be4cc37151d13582", + "dwd_hash": "7804464fbbb72514f45f0788cae8725a" + }, + { + "payment_id": 2800531575556101, + "ods_hash": "fa30efb6a0911e13b987e91048a0e8fc", + "dwd_hash": "be7038167ef4ea571bf5317e936a859c" + }, + { + "payment_id": 2800531894486981, + "ods_hash": "1490f78b9d6da213e313985afc963322", + "dwd_hash": "4aaeb0eb2cb0673ba3507689c91df52d" + }, + { + "payment_id": 2800534985230341, + "ods_hash": "a89a92321154cd8a851d15a043995cf4", + "dwd_hash": "486884b73e957c01456a1946d174c892" + }, + { + "payment_id": 2800535382034309, + "ods_hash": "85ce517e2a971a8ccee0e9283cc72a30", + "dwd_hash": "c7922cc302fa741ab72533928f320eb1" + }, + { + "payment_id": 2800538252183429, + "ods_hash": "5c89358c81a0f879c4a06d5857dafea7", + "dwd_hash": "707ce488f2b18af8a9a4599c63fab117" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21529, + "total_mismatch": 43667 + }, + "generated_at": "2026-01-31T23:34:57.803192+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "label": "segment_3", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-08-01T00:00:00+08:00", + "end": "2025-09-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4602, + "records_with_pk": 4602, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10205, + "records_with_pk": 10205, + "missing": 9, + "missing_samples": [ + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 859, + "records_with_pk": 859, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12032, + "records_with_pk": 12032, + "missing": 10, + "missing_samples": [ + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17372, + "records_with_pk": 17372, + "missing": 2, + "missing_samples": [ + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 94, + "records_with_pk": 94, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8321, + "records_with_pk": 8321, + "missing": 5, + "missing_samples": [ + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5196, + "records_with_pk": 5196, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 26, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "f092dbbfb3ed41a453adfa95b0a12eb7e3f63aa951fcc5e842298ce91f1580d7" + }, + { + "id": 2793002509209733, + "content_hash": "2e739d711f46303194cabd04874ff4e2178a5e175d77c63c390735ec29dec126" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4763, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 24, + "skipped_missing_pk": 4763, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 27, + "total_mismatch": 38, + "total_errors": 0, + "generated_at": "2026-01-31T23:38:44.856957+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3587, + "diff": -3587 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 7, + "ods": 7, + "diff": 0 + }, + "amounts": [], + "mismatch": 7, + "mismatch_samples": [ + { + "assistant_id": 2815977780611909, + "ods_hash": "a098b0d088e6fb311b94dd8ac5e04705", + "dwd_hash": "b4ac77f66b68c1822c545472ec26cd57" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "915d5d6a0d4cda24070713bb7008e6c6", + "dwd_hash": "c73987776532c4bdb954e63c036c3f9e" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "ce44c54704563df8c1892fb3692750e9", + "dwd_hash": "4e2cf82bbe46e7581577256c09f0c7e0" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c5273140a0bc55d286b1009cdd86dc8d", + "dwd_hash": "9d3ef2a5df5c6a6a248ea4e851d617b8" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "1f57c342cfe4aa076a35b9a9fe70b647", + "dwd_hash": "874e429f536ac523beede4db89e2a04d" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "4a9fed7d5eb85f6430cea79ee19e3a2c", + "dwd_hash": "cc35f4c3549f07a9eca4531e0fa86662" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "2de9048ce2a0609876540c364a15b0f9", + "dwd_hash": "9bfb9b3a4da39f4895244b8f075f8385" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 18, + "ods": 18, + "diff": 0 + }, + "amounts": [], + "mismatch": 18, + "mismatch_samples": [ + { + "member_id": 2817491019861701, + "ods_hash": "64715bf3a0935051f3110e208951224a", + "dwd_hash": "7324e3394ea605678aece7cf0c6a2d69" + }, + { + "member_id": 2820625955784965, + "ods_hash": "0a67b2b237aec2a3cc8fc49c3b134af9", + "dwd_hash": "1c1b03ba65e51c08259e3b5dc221228d" + }, + { + "member_id": 2824666609323205, + "ods_hash": "ba649eda785c327c9d56f2c62122dedb", + "dwd_hash": "89d0e57e5490e1b6611bb37f6a3e166c" + }, + { + "member_id": 2827380844252229, + "ods_hash": "68a7985928f282bda0381d0efd886ec8", + "dwd_hash": "68cae67c8f7235842cb6ffd4280d2a35" + }, + { + "member_id": 2831769896094917, + "ods_hash": "2b95d2b57f6e865af2bcced6d95dadaf", + "dwd_hash": "56c1c617e03d245ff1b460f266a16cc4" + }, + { + "member_id": 2834033031598725, + "ods_hash": "c85bcf991b075ee72ee992d0861a8226", + "dwd_hash": "b4956ce392d2bc937dd92417793a4ac3" + }, + { + "member_id": 2837539913779333, + "ods_hash": "3d5d7aa85551cbf1cad3c8d43940ba9f", + "dwd_hash": "8c4fb65492a8beb02538f8e0e32aa2fa" + }, + { + "member_id": 2840365873464901, + "ods_hash": "c3dd902083269aaa6776bd5180694f55", + "dwd_hash": "e5102dca54441fd3758b614c21a7e66a" + }, + { + "member_id": 2844424744569925, + "ods_hash": "c1fc85e8ec09470cf7dc0752869364bc", + "dwd_hash": "844d50965151cd09a927ba36d40ea81c" + }, + { + "member_id": 2844990190242821, + "ods_hash": "fef89181b49d82a61c2f09c86638d501", + "dwd_hash": "122c1fce738b1869e2206e9ab2e8df2a" + }, + { + "member_id": 2846153189592005, + "ods_hash": "c0148f7488b45b173c12b99b59259f11", + "dwd_hash": "14f9e49775a7b3e6b130f58b90cffb3f" + }, + { + "member_id": 2847747357002757, + "ods_hash": "8bbcb917330148f8cf7cd33bf34f1d53", + "dwd_hash": "48cf196622f0912d2687810b0527815c" + }, + { + "member_id": 2848686922632133, + "ods_hash": "44138d9e6d291d52db08690be1672054", + "dwd_hash": "c02ea97a603de03eee3cf45445e77f98" + }, + { + "member_id": 2849995548625861, + "ods_hash": "f1f4c5c7a6410582c7b7171f009c8d63", + "dwd_hash": "ebb2ecb6ae8356ae9ead021c9d1494a6" + }, + { + "member_id": 2852938817408709, + "ods_hash": "ec31b57177373e8ee152e8e1375287fc", + "dwd_hash": "dc8ff664d887e4243cb30f584cf6810c" + }, + { + "member_id": 2853881398644101, + "ods_hash": "fc06b5550d56dd4501de4e9ee42b506e", + "dwd_hash": "48276af881a50472a25b84a83f3765f8" + }, + { + "member_id": 2854141942400709, + "ods_hash": "04c88b7f6e22c2d025ec410737757bea", + "dwd_hash": "8126c94bd4844a6bdef2c3a6c1433acc" + }, + { + "member_id": 2854163871024645, + "ods_hash": "c5e67b4719cec4c87e572b569db98851", + "dwd_hash": "877829ada3c7804274967b060a17bda3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 51, + "ods": 51, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 51, + "mismatch_samples": [ + { + "member_card_id": 2815108067970885, + "ods_hash": "8ef14472dfa2ad17821a22c95b68a8b0", + "dwd_hash": "3b3893f61d3f1bb865892314341a3585" + }, + { + "member_card_id": 2817491020107461, + "ods_hash": "8d357bc754709dcd013f9371cdd2aa99", + "dwd_hash": "6b8729e71c2b7108ab9aa3ce25cd9d79" + }, + { + "member_card_id": 2818031136034501, + "ods_hash": "78e9198960a52fa21bea0ec72db9410f", + "dwd_hash": "057c4c3e33a8f964d2a21b0901354ba7" + }, + { + "member_card_id": 2818227314724613, + "ods_hash": "e120c9e3616b645ed9d807515efddef5", + "dwd_hash": "ec488059079281a84be83394f5cab3e4" + }, + { + "member_card_id": 2818731958570565, + "ods_hash": "d6987c6ad3fc5290014a6eefb59dfe76", + "dwd_hash": "7c5299e8dc3134786064d1cabf66ab12" + }, + { + "member_card_id": 2820249101142021, + "ods_hash": "ad10d2f939ace02add7117b6480ae934", + "dwd_hash": "9de5cc377ebcce317ff81050e8a5f503" + }, + { + "member_card_id": 2820625956014341, + "ods_hash": "253997bed3c0ecfcc63fa2fb75549553", + "dwd_hash": "a5c541d04de316f08c0b82658af41543" + }, + { + "member_card_id": 2820628725778629, + "ods_hash": "faca824b7a0ec79dd904f0e94dae3111", + "dwd_hash": "d73d9c173b69ab1a4a214efe57bc0c93" + }, + { + "member_card_id": 2820628983728389, + "ods_hash": "8c5262b1977849b8f7289114ec4a0a6c", + "dwd_hash": "05535934847b4e114071e4d7e0435e4e" + }, + { + "member_card_id": 2821727959238917, + "ods_hash": "269d66184b379df5b264c42c027c9e5e", + "dwd_hash": "b706968ccd79c84d821e5147dd8262e4" + }, + { + "member_card_id": 2821947676182789, + "ods_hash": "af29f4c139e011764e44755088c5fa7c", + "dwd_hash": "c6dfccf610beb228484eace2dd5e851b" + }, + { + "member_card_id": 2822329141528837, + "ods_hash": "45b12856bd3e0279086d3501140f0771", + "dwd_hash": "19c37e24c97f6a5b52ca4531ab1012f1" + }, + { + "member_card_id": 2824666609552581, + "ods_hash": "29d6f7d69a740bfe8f8fb10d27f7d255", + "dwd_hash": "b29493a99d47f34cdfedbba5653fea58" + }, + { + "member_card_id": 2825889494584517, + "ods_hash": "373db7faa6f0ac7f0278cd384ec0c548", + "dwd_hash": "2865ac01a9ec78425d55a706a9270465" + }, + { + "member_card_id": 2827308686380165, + "ods_hash": "95074b22580d33fa0420bef64c7bf314", + "dwd_hash": "5f2b04f02d41bb6c3d43a3c98d3f9de3" + }, + { + "member_card_id": 2827380844497989, + "ods_hash": "45939f084e61b0034ab9f73c3eb802d3", + "dwd_hash": "867c345954989b2d55e46f1fc4b1484d" + }, + { + "member_card_id": 2827381452835973, + "ods_hash": "342b63611a0361c0afb756bdbe688d4c", + "dwd_hash": "f46c3c16de053816a6de36744d71ba2c" + }, + { + "member_card_id": 2827381540998405, + "ods_hash": "8e1e1bea6b45a80937c484dccceeaf94", + "dwd_hash": "ff5a35df311cb221bdef40e3d606a224" + }, + { + "member_card_id": 2827777100008581, + "ods_hash": "9d8a76477f44e0e22d09da71af04d26d", + "dwd_hash": "c1c500b811d9c602ec19697f0741c6f6" + }, + { + "member_card_id": 2830546961943621, + "ods_hash": "b7eaa7ae78ba4de498fb117a3140fd5d", + "dwd_hash": "ebafa73ada57e05ce682bebaa969ec8e" + }, + { + "member_card_id": 2831769896340677, + "ods_hash": "d29aca1c31e3e75536c27e21325c0b11", + "dwd_hash": "48d940e5d0f2039a4fc542cbeb53bf28" + }, + { + "member_card_id": 2833345652100165, + "ods_hash": "8a43905c7d4ae2db074c7410c1a7c6eb", + "dwd_hash": "595b313de0e4a43c810c38663058cb2c" + }, + { + "member_card_id": 2834033032139397, + "ods_hash": "ae3ed4067dddb337f391cebe87f383b4", + "dwd_hash": "e296072ece42217fb2f89a4ddd22ee20" + }, + { + "member_card_id": 2836326463522885, + "ods_hash": "c0008efbb2b34eab3711a0fae36f1cce", + "dwd_hash": "bdc29f50c819366beebd8ca561a8e7aa" + }, + { + "member_card_id": 2837539914025093, + "ods_hash": "b44598b6c2a7114aa8aa8653a9dd08ab", + "dwd_hash": "e0a08c7aa958422188655cf15a9f1888" + }, + { + "member_card_id": 2837540289677637, + "ods_hash": "f0773aed1d040d78b11ce2b31a1063e8", + "dwd_hash": "41ba45541a2d5649ea4fd71e606b9311" + }, + { + "member_card_id": 2839012675143813, + "ods_hash": "196b60fb8313133f63d0dfc94ccaf343", + "dwd_hash": "d515bb547e4634738ce0784b85a2036e" + }, + { + "member_card_id": 2840365873727045, + "ods_hash": "fc9203211262bd2db8d2bf7a7d75ef16", + "dwd_hash": "47c8677957d8ceb3d8bf71f2255d3290" + }, + { + "member_card_id": 2840366142164677, + "ods_hash": "abe9b46d6829cb018cebaad856575e68", + "dwd_hash": "d07d8b9301ba903f413d8c39fd5ec619" + }, + { + "member_card_id": 2840366209568389, + "ods_hash": "8f8fe547ea43f0d0cb3fe7f176748ea9", + "dwd_hash": "63acc25502d409889ebad5f8084207c0" + }, + { + "member_card_id": 2844424744832069, + "ods_hash": "076ff036484965f3c46e183df3877b8e", + "dwd_hash": "12eac245b67af6e34d09745f09948b85" + }, + { + "member_card_id": 2844990190488581, + "ods_hash": "be48b43d7ccb1fde82dbf9e0e8a2cf95", + "dwd_hash": "0bfe4802d4e27dc17f5093375fbfe697" + }, + { + "member_card_id": 2844990784883781, + "ods_hash": "b0dfb54dc5b608c095ab6e0e32fc85f8", + "dwd_hash": "be4620b58a83881606d198980d983aa0" + }, + { + "member_card_id": 2846153189837765, + "ods_hash": "45d8ad0e1ab9d93a4776fe33bab23410", + "dwd_hash": "306d2e2c31d6254e2862f1991955b06c" + }, + { + "member_card_id": 2846153576238021, + "ods_hash": "a1602543b7fbc1bff0ef6a99d11375bd", + "dwd_hash": "e78e2002831577cc12c4043023cfc42c" + }, + { + "member_card_id": 2847747357248517, + "ods_hash": "4b43dc7b7a17ffb742424cff0987a140", + "dwd_hash": "303c00a6e51a9b38334647917fa33c4a" + }, + { + "member_card_id": 2847747562769541, + "ods_hash": "2cf03128d3b64a840248e0fe8fdf3688", + "dwd_hash": "b3f82fa74b44a8803e4f2a7e41bc734f" + }, + { + "member_card_id": 2848686922910661, + "ods_hash": "6eb03d2428e152a9a974890532cf396b", + "dwd_hash": "cacf0b1b31e863872f67e243b2373d20" + }, + { + "member_card_id": 2848687461583813, + "ods_hash": "3dd69c4ffde10f2c58c1fbf61efb0d48", + "dwd_hash": "f6dad020ef38f69e722b08937d0a71cf" + }, + { + "member_card_id": 2849995548871621, + "ods_hash": "c5e33c687c13aa04ec64fece20a54ff1", + "dwd_hash": "cbd968f4e2648d64f3b77e157a004d3c" + }, + { + "member_card_id": 2849995983768645, + "ods_hash": "c59092c815811c28bb23b5818fbe3e3a", + "dwd_hash": "116b298d64ded26bac81fbe3ad48c6f5" + }, + { + "member_card_id": 2852938817638085, + "ods_hash": "67140d68f8858ea040e2e77d75673be3", + "dwd_hash": "3f4f1c490917908f6255e05a0607bdf4" + }, + { + "member_card_id": 2853799025233797, + "ods_hash": "49b65362a18f556f398898ae78741923", + "dwd_hash": "65479373a9e162ecc21fcbeb0130b713" + }, + { + "member_card_id": 2853881398906245, + "ods_hash": "f435485cc595f2b836fd4a1622776d98", + "dwd_hash": "0e965c1c52563f3acede031dff2f8cb3" + }, + { + "member_card_id": 2853881757159301, + "ods_hash": "bb2218d73bba63c42e5faaf3a29cf16d", + "dwd_hash": "cf5da66c1b3ae9b8b8efd9fd18f1bc9e" + }, + { + "member_card_id": 2853882120703749, + "ods_hash": "e9e12f6de6b9f7fc881013c330c9fca3", + "dwd_hash": "9c776d7cfd027ca5c9020d7dbcbe043b" + }, + { + "member_card_id": 2853883412664005, + "ods_hash": "d5b25d1ba1e7f26bd2a69842ba36d74c", + "dwd_hash": "df37e5f1634eab2c33b0da123b257aeb" + }, + { + "member_card_id": 2854141942662853, + "ods_hash": "337d9097b00eeb098906812d71b973d9", + "dwd_hash": "01b50358ca6864ba3d1cbbfdd23053a1" + }, + { + "member_card_id": 2854163871696389, + "ods_hash": "504929be1836258d7624186bcc720a7c", + "dwd_hash": "786e444fbd6f0bad08e27b3b047adb16" + }, + { + "member_card_id": 2854164219332293, + "ods_hash": "c6527f1693a8620361625397bda8f8fa", + "dwd_hash": "ca7c406ec3638a55796a54be33f80a7d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "tenant_goods_id": 2823319050914565, + "ods_hash": "f4426796897a568385b86cc055b8cbdf", + "dwd_hash": "fa84b3ddd0ab039b664f11f3f0327516" + }, + { + "tenant_goods_id": 2825999662156549, + "ods_hash": "e631b7ac82470837b627bcd071e25df9", + "dwd_hash": "21054342437f62c5dd1b7e5631b26a08" + }, + { + "tenant_goods_id": 2826003270470405, + "ods_hash": "6ad5b263163661c028451fb00eea0219", + "dwd_hash": "54dbac857a236e793e4f24f9ea500625" + }, + { + "tenant_goods_id": 2828836270377733, + "ods_hash": "9a180ba7a6a5264b41119f60cc57cb6c", + "dwd_hash": "6515b154a7980df2e66984c60d062bce" + }, + { + "tenant_goods_id": 2834061165348997, + "ods_hash": "e1b5cf924c741b0df80b48df1561fac1", + "dwd_hash": "3cb63b1bfa8bffc6ee9571018897f3ec" + }, + { + "tenant_goods_id": 2834064312158533, + "ods_hash": "86d1e419613aecff6578298114eca4cc", + "dwd_hash": "6d354e8270f0a3e56279b32b7baa53ea" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2836713896429317, + "ods_hash": "c42b179cc08ffc1af57fc9ad1cc382f1", + "dwd_hash": "0043eddf2f27f805a9211c3b82973953" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3587, + "ods": 3587, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 54919.33, + "ods_sum": 54919.33, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 186359.95, + "ods_sum": 186359.95, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 383097.96, + "ods_sum": 383097.96, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 44840.88, + "ods_sum": 44840.88, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 145513.13, + "ods_sum": 145513.13, + "diff": 0.0 + } + ], + "mismatch": 3587, + "mismatch_samples": [ + { + "table_fee_log_id": 2814985972206021, + "ods_hash": "76e3813af265a92d853b13f10c0f1214", + "dwd_hash": "451ca5fa393707b952ca6e7312fbd33c" + }, + { + "table_fee_log_id": 2814998029913413, + "ods_hash": "b245299682524a9bb591b2113138abf4", + "dwd_hash": "c3230b7e5c9d2b83249022ed78992a2e" + }, + { + "table_fee_log_id": 2815007740776133, + "ods_hash": "5faf40762c950c78f670894ba143907e", + "dwd_hash": "6c25c75a34471a15010ef45104942637" + }, + { + "table_fee_log_id": 2815007740792517, + "ods_hash": "c33d9f7bce2f78ad4466efdc05f796d8", + "dwd_hash": "470224891bd0c699176b899cdd4d5a3a" + }, + { + "table_fee_log_id": 2815008603967109, + "ods_hash": "2902f8abfc2d5f2040e074b546386dc8", + "dwd_hash": "aafa01860edbeaf49601e5980a6f161f" + }, + { + "table_fee_log_id": 2815026157325957, + "ods_hash": "5d41edc38dc5264e78fb3737b635706a", + "dwd_hash": "59fabc86d48e1d02089408ed32f715c5" + }, + { + "table_fee_log_id": 2815045005807429, + "ods_hash": "1b0c7bebda4a86501756fe06e3408a2b", + "dwd_hash": "a4e4974083bde827ae5ecb59c5ceb79d" + }, + { + "table_fee_log_id": 2815049223392901, + "ods_hash": "e42ef722c7ab06b23f8f969396460609", + "dwd_hash": "df5551f9e06edb1d5cd7622116f8ba9a" + }, + { + "table_fee_log_id": 2815050753789573, + "ods_hash": "b77ec0e52a937c882a09ff9189061d52", + "dwd_hash": "3c6f2acd41d9719b319d8e5a86c7e5f1" + }, + { + "table_fee_log_id": 2815053686968069, + "ods_hash": "2ce089c20cbddbd395bf7a35b144fc60", + "dwd_hash": "8af56567ac6602166d7146f45a8173c5" + }, + { + "table_fee_log_id": 2815057361407685, + "ods_hash": "d4b57244a4e94f80dfb320cffaa6f42c", + "dwd_hash": "38215f94c24b37b657aa6c1dba6fe61f" + }, + { + "table_fee_log_id": 2815065077092165, + "ods_hash": "b53da518a3abb8cf8c5a619ab760130c", + "dwd_hash": "de2565d74a415ccc1e3738223dd5ee5c" + }, + { + "table_fee_log_id": 2815068579778373, + "ods_hash": "fb9042742f2abc4b4125393bc83a9770", + "dwd_hash": "647f8491ce811dd5207884fe90449525" + }, + { + "table_fee_log_id": 2815068925710085, + "ods_hash": "b01521ee2686b6c2879e08c338b6dab4", + "dwd_hash": "4d9eb0ecfad074d16efd161fefd95bb8" + }, + { + "table_fee_log_id": 2815080294387461, + "ods_hash": "26fc4fef1adf060c4558b43b40ffd5c3", + "dwd_hash": "5e36edceff0b0e8e8c7835f1fa062b93" + }, + { + "table_fee_log_id": 2815081796407109, + "ods_hash": "8bb222d9b4da505d27c8b312b5df64da", + "dwd_hash": "20b442e2ddddc1f24eb556f27d9eb175" + }, + { + "table_fee_log_id": 2815082742222597, + "ods_hash": "3a32f788b69cf53a5314dae98a56bbdf", + "dwd_hash": "60b1ec938f3d5eeb0b49605c09b6a88a" + }, + { + "table_fee_log_id": 2815092451331781, + "ods_hash": "17235596dc03fd1f43a7b32f51fd8fd1", + "dwd_hash": "9c9434a58bd9f7fe4c1394625ba82255" + }, + { + "table_fee_log_id": 2815117514428101, + "ods_hash": "dd66e8f360d38873c0ada5e8ee9dc7b7", + "dwd_hash": "a1852ee4604404d08de7c2291a0b62e8" + }, + { + "table_fee_log_id": 2815120860810949, + "ods_hash": "90a8c93d6979c0348318831cb2c6d7ff", + "dwd_hash": "84bc32633551b53e4b9ff271b83f9fb4" + }, + { + "table_fee_log_id": 2815157254885061, + "ods_hash": "998b36915f9ba1cd3e22893b852e2879", + "dwd_hash": "5196fb4ab7ba25dff2bd30d440217026" + }, + { + "table_fee_log_id": 2815189895171845, + "ods_hash": "d43b803e48a68b5cfccc08a2000ad6c4", + "dwd_hash": "691e2efd12eebda8d2cd5193dc3c54ce" + }, + { + "table_fee_log_id": 2815192882155141, + "ods_hash": "b951662d9d75d2254f1bfccebcccbdd6", + "dwd_hash": "f5f3803c4f584d6b3e0414075ff8606c" + }, + { + "table_fee_log_id": 2815293410987653, + "ods_hash": "09a1e60e0f91da06e8471eafa1fc5dd6", + "dwd_hash": "2d59951646a40027aa5204ad2f9838b3" + }, + { + "table_fee_log_id": 2815315341791045, + "ods_hash": "5f98dd39935952acd9ce080b88166f4b", + "dwd_hash": "4d529848eec955b7e03a40282fce3840" + }, + { + "table_fee_log_id": 2815777846021893, + "ods_hash": "e717572450b079d8ea645e0e0a2b86bf", + "dwd_hash": "24ff6f0ffd21d0ae28fd559117328f18" + }, + { + "table_fee_log_id": 2815783875481349, + "ods_hash": "4d9dfc69d2da8bf77447e11bd82ae0a7", + "dwd_hash": "98bb7c2840229448991d760f368cbcff" + }, + { + "table_fee_log_id": 2815835682541381, + "ods_hash": "acbf4bd9ea18d4ac08e03672b6e1fcd3", + "dwd_hash": "decffd69a10d9440d6d46f8944396046" + }, + { + "table_fee_log_id": 2815914438299397, + "ods_hash": "41e03b28d3153983693f7f75a0b62f8e", + "dwd_hash": "c240bec354ddc3c89d13447b49a6cd98" + }, + { + "table_fee_log_id": 2815916694834949, + "ods_hash": "a066b23255ac4ec68a21b1a48ae32b42", + "dwd_hash": "34e06c02f057869e081e992f21f6f9e1" + }, + { + "table_fee_log_id": 2815919540670213, + "ods_hash": "54c4727507d463871cc01a5af1c5ccf9", + "dwd_hash": "3a1a09ed0c8b0403ab71a67de6ff7aa6" + }, + { + "table_fee_log_id": 2815946582118149, + "ods_hash": "4a7b68dfe202dca075120fcefb092f3f", + "dwd_hash": "26f03c8a4a2cf4b33e9612d3c1e51356" + }, + { + "table_fee_log_id": 2815974002560645, + "ods_hash": "fa6d2e228494d46b002d1146ecd15227", + "dwd_hash": "af48790b9cf09096e4a575d00373f16c" + }, + { + "table_fee_log_id": 2815986131783429, + "ods_hash": "9b98298c1680f6698784b3153daec7a3", + "dwd_hash": "a85546d319d31ec656565a566178aefb" + }, + { + "table_fee_log_id": 2815994029494021, + "ods_hash": "cb4eec5723e0f284ab339353e69bde65", + "dwd_hash": "1b9e4fd8f73dff4b3be89beb8c16605e" + }, + { + "table_fee_log_id": 2816001166020293, + "ods_hash": "45041b503af34eba0021392c8a915047", + "dwd_hash": "74a263a9c0f55bfee1806d2fcba1c212" + }, + { + "table_fee_log_id": 2816030066708229, + "ods_hash": "138ce994c52ff0367f1fc4d651269d25", + "dwd_hash": "72a75b3ae0189b72e192ff84737469bf" + }, + { + "table_fee_log_id": 2816034617790085, + "ods_hash": "3cbf660aa4d414836fb1a08084a32fe0", + "dwd_hash": "4d57c85b8d50be8fa82a86d7aa1ba0d9" + }, + { + "table_fee_log_id": 2816047032813893, + "ods_hash": "735e4d39787e8aa02948b37a5e2000a8", + "dwd_hash": "709439bb0047b4752ed58f6d80e565fd" + }, + { + "table_fee_log_id": 2816053946255621, + "ods_hash": "cbc66e7cabdf8b46cc3feed47559de35", + "dwd_hash": "f22cd5bd397d406a4e9cf06a5c2ec708" + }, + { + "table_fee_log_id": 2816069549148486, + "ods_hash": "d0ab8d535a8a09e471c997cf138df502", + "dwd_hash": "eb82eef96c1ee02af1a991c99a108285" + }, + { + "table_fee_log_id": 2816070476810693, + "ods_hash": "8543f1ae383db4f2c63e38ef7166ef39", + "dwd_hash": "f47c29a81fcc38295a1412af56e2537c" + }, + { + "table_fee_log_id": 2816072417446277, + "ods_hash": "cfa2bee4503f7399ec4f8f4b23a76b50", + "dwd_hash": "a135d6d1950ab8e6e92fc002b255775b" + }, + { + "table_fee_log_id": 2816073294760325, + "ods_hash": "5e3377ba644653778c45b794078641da", + "dwd_hash": "57833ac0d3206359b0819c925a994960" + }, + { + "table_fee_log_id": 2816082352130373, + "ods_hash": "e4c750c7f4b9e7f3735accc4dc21516e", + "dwd_hash": "defcb45721a38a852d3d925eb3b565b8" + }, + { + "table_fee_log_id": 2816090994903493, + "ods_hash": "9ce31fde0382b799e197f4da6fd6343e", + "dwd_hash": "4eed84f06d6e3aaa5709599c344e08e2" + }, + { + "table_fee_log_id": 2816095192927237, + "ods_hash": "40d3e71f731ab561b6824cf4f020e6fc", + "dwd_hash": "22f656df4b9d784779556f1395df5cd6" + }, + { + "table_fee_log_id": 2816097542671173, + "ods_hash": "b26c9afd7684a9a632dd14e95deb1616", + "dwd_hash": "ef805730474d447bee4d39dd76fd1b74" + }, + { + "table_fee_log_id": 2816107865738245, + "ods_hash": "553b90946a5b841e8e0cf3229695a90d", + "dwd_hash": "28bad0d4aa9e0d565b36afddd02bfcab" + }, + { + "table_fee_log_id": 2816112411675653, + "ods_hash": "d397fa94c16b29426dbbf3ccb80b6e7d", + "dwd_hash": "7d6ac591c783ec7132fe01046f7c87f3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4305, + "ods": 4305, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 47.45, + "ods_sum": 47.45, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 87523.4, + "ods_sum": 87523.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 83759.0, + "ods_sum": 83759.0, + "diff": 0.0 + } + ], + "mismatch": 4305, + "mismatch_samples": [ + { + "store_goods_sale_id": 2814989979093637, + "ods_hash": "fa3c286285345f94e47d74ee9a8d2e26", + "dwd_hash": "ccb9467c6be12d62b029f58e5513a0fe" + }, + { + "store_goods_sale_id": 2814993035152005, + "ods_hash": "a66f0c86a9cc6b53ddb13502fbbe1f0f", + "dwd_hash": "febdea29512fe4d2f1aa0a89e8a5a778" + }, + { + "store_goods_sale_id": 2814997899349509, + "ods_hash": "c848c8d7d3380b9c11753371ddfb55de", + "dwd_hash": "d6d4d8e5cfc65c03745fc02e2e81bec5" + }, + { + "store_goods_sale_id": 2815007741349573, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741349574, + "ods_hash": "33ee6fd9a1b6e05c9d2012b680de0cea", + "dwd_hash": "e8d03c5b8ddfd7035152912024587f81" + }, + { + "store_goods_sale_id": 2815007741365957, + "ods_hash": "857f85eb20bee8090041bd9a44ce55c5", + "dwd_hash": "65a54bce3024938bdbfef3f7a8b0c964" + }, + { + "store_goods_sale_id": 2815007741365958, + "ods_hash": "321b047af492099f22536597eef7dae1", + "dwd_hash": "44f6ce0b54908e76b5500c4172f51c2c" + }, + { + "store_goods_sale_id": 2815026157538949, + "ods_hash": "36d7fff34fd912cd53ee1fc77863b8a5", + "dwd_hash": "48f27bf97049d650917f1d5fe1e8cf84" + }, + { + "store_goods_sale_id": 2815031624896325, + "ods_hash": "c79ac9417886bcee03e880e5cbc1494e", + "dwd_hash": "9b5e70abcbe840edbe931ff44753d6e5" + }, + { + "store_goods_sale_id": 2815050754297477, + "ods_hash": "98e866b5d52a77ec7b7f8ce0c968cce7", + "dwd_hash": "1579a5d0b90082029e718914d81e545a" + }, + { + "store_goods_sale_id": 2815050754313861, + "ods_hash": "ccccda71619845595eb1f57303f8ea53", + "dwd_hash": "6374079d462672c7a9720ab363d41cda" + }, + { + "store_goods_sale_id": 2815053687164677, + "ods_hash": "fcca4157529b4b599f5c7c8d5960033c", + "dwd_hash": "b65787a349eee7c0ee932e60261c00ca" + }, + { + "store_goods_sale_id": 2815068580499269, + "ods_hash": "a9fcab426eb3fcb2f68db1fbb48dd6ba", + "dwd_hash": "57dbb4e659103d76e2bbaa47d6a8dc52" + }, + { + "store_goods_sale_id": 2815068580515653, + "ods_hash": "e2252c090fdfe2c3c2dcab5473f01609", + "dwd_hash": "79ff193df285f9450e76dba6d90b7b8d" + }, + { + "store_goods_sale_id": 2815068580515654, + "ods_hash": "b98606aebfca9aabc5c976ff80626131", + "dwd_hash": "99db93af70e63e00615f43122527f745" + }, + { + "store_goods_sale_id": 2815068580532038, + "ods_hash": "36c578f57753260df03adc00169edc24", + "dwd_hash": "948303a0a371960e78627ae98279bf12" + }, + { + "store_goods_sale_id": 2815068580532039, + "ods_hash": "ab797411b6ea59279b632c1bfbe73806", + "dwd_hash": "0c69d25b70be364c709b01e41973befd" + }, + { + "store_goods_sale_id": 2815068580548421, + "ods_hash": "fba6d59e174a2ddd504406e6e868b092", + "dwd_hash": "0c35eac8d838fbac8d7f6fce59d915bc" + }, + { + "store_goods_sale_id": 2815068580548422, + "ods_hash": "593df276997f242ce1a277f27ebc810c", + "dwd_hash": "bcd871eb4dc92401f70c629b6a21e1a0" + }, + { + "store_goods_sale_id": 2815068580564805, + "ods_hash": "ad68991723d07fcebf885b2a71a04572", + "dwd_hash": "87414930033c4ad25ffcf2cdcca5c807" + }, + { + "store_goods_sale_id": 2815068580564807, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581189, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580581190, + "ods_hash": "c577b3cfeff2633ccbaf7f5b34530f0f", + "dwd_hash": "f14d4ec8e7b721bd787577d3e0afac6f" + }, + { + "store_goods_sale_id": 2815068580597573, + "ods_hash": "89f2a52fb6ac9f5e096efcac4e4320aa", + "dwd_hash": "3683a7e44ed3c5d01da36e6c2e758402" + }, + { + "store_goods_sale_id": 2815068925923077, + "ods_hash": "67fd3334cc096f3d7ee40951ee572dad", + "dwd_hash": "ea242d2335b83e0252fcfa460d66688e" + }, + { + "store_goods_sale_id": 2815072464981701, + "ods_hash": "60518f0bc0fd94bfa293bedb62ac53f9", + "dwd_hash": "680101aeeef29be95a847ab256eaafef" + }, + { + "store_goods_sale_id": 2815080294567685, + "ods_hash": "85c7f035b67caf8e6a066c7631ba2b54", + "dwd_hash": "fdd2c48d710bdf1618c2b551a87ec858" + }, + { + "store_goods_sale_id": 2815080294584069, + "ods_hash": "32dbc77c79263ccc5402e671c94d54a0", + "dwd_hash": "208f4a08c77ae17bc19ace6fd80a7d75" + }, + { + "store_goods_sale_id": 2815081796652869, + "ods_hash": "9f22471d2fef963a064163d793a55dec", + "dwd_hash": "1ec5607522c4feddf4f227b6e5cd8258" + }, + { + "store_goods_sale_id": 2815081796652870, + "ods_hash": "7c399348f4f8f9cf7bd42e77094edec9", + "dwd_hash": "3a437803467856747477ab5c1c992434" + }, + { + "store_goods_sale_id": 2815081796669253, + "ods_hash": "76c461ed03eeb452dfc7f0a3484e7d7a", + "dwd_hash": "2a196dbaf65f6d6136c40a5b06e6b0be" + }, + { + "store_goods_sale_id": 2815091671715461, + "ods_hash": "ac522be15de73083c43d77e916f6b77c", + "dwd_hash": "36c4d584786f30af3d0eb86779222069" + }, + { + "store_goods_sale_id": 2815117514641093, + "ods_hash": "972d33838e9d8260bcd737c41d530dde", + "dwd_hash": "e5fda81376e2032dd9c12d4ee3b44ff8" + }, + { + "store_goods_sale_id": 2815120861007557, + "ods_hash": "e34a88e57ce72843765c34a43e8e7d6a", + "dwd_hash": "44f3937db465fb8f9fc9b2af6f7471fd" + }, + { + "store_goods_sale_id": 2815120861023941, + "ods_hash": "6f79278bb8cb68e1a3c2aa9b2fb32226", + "dwd_hash": "b0a5de1f9dfc56081dbc5ed453192880" + }, + { + "store_goods_sale_id": 2815147245915845, + "ods_hash": "c7ed2e920a5c26bfacc0f40b4c77cb75", + "dwd_hash": "160a4851b4acb0f24815e1d51a7e0d0d" + }, + { + "store_goods_sale_id": 2815189895368453, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895368454, + "ods_hash": "734d41abcca0aadf14bf6ca5906d534a", + "dwd_hash": "a1e47917e84ec9913625eec0b6568151" + }, + { + "store_goods_sale_id": 2815189895384837, + "ods_hash": "99a92737a94d89e122c8ae8cc7110e07", + "dwd_hash": "e8f3001a8d97bbb871bd170381dc270a" + }, + { + "store_goods_sale_id": 2815189895384838, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895401221, + "ods_hash": "491086a73ed90b2cbb85ae9c138c02f6", + "dwd_hash": "05a3a28c361aca7e4984fb94c2c1a0e9" + }, + { + "store_goods_sale_id": 2815189895401222, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417605, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895417606, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815189895433989, + "ods_hash": "cf685f4bd6fe2b70015242e17298b1b4", + "dwd_hash": "82baf87db05e07f3c24fd680ef9b2064" + }, + { + "store_goods_sale_id": 2815189895433990, + "ods_hash": "7b7525be5ba133df92c8be76eb7422a8", + "dwd_hash": "8f685dafa105785cf2d16d7d3febe495" + }, + { + "store_goods_sale_id": 2815315343150917, + "ods_hash": "0815aa45bb7157886698e233bb70fe9c", + "dwd_hash": "3ae752abb2be922c918325e52c2cb37b" + }, + { + "store_goods_sale_id": 2815315343167301, + "ods_hash": "6e4be2c3b7d2b99b6ff05c1107d155f6", + "dwd_hash": "0c8a7920d46a058d04fea0862e42a4ad" + }, + { + "store_goods_sale_id": 2815315343167302, + "ods_hash": "35dc4e7db965162b4704384a4858c6b7", + "dwd_hash": "04049fa9b643a05003ba24381652800e" + }, + { + "store_goods_sale_id": 2815315343183685, + "ods_hash": "4872df3bc9d436632860d96f3f3d220a", + "dwd_hash": "c6206cd5369226ee5ec20ab3d863fb8f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 859, + "ods": 859, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1874.75, + "ods_sum": 1874.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 268501.57, + "ods_sum": 268501.57, + "diff": 0.0 + } + ], + "mismatch": 859, + "mismatch_samples": [ + { + "assistant_service_id": 2815007740939973, + "ods_hash": "f9ce7fbcc8fc19c8161a87c44a1c12e6", + "dwd_hash": "e24ea3d86bcf1dc075f05cad49074b78" + }, + { + "assistant_service_id": 2815050753953413, + "ods_hash": "b1a557685b82aa17d919e07b0fbaeb98", + "dwd_hash": "25a3808bd9c829641c9504148e967292" + }, + { + "assistant_service_id": 2815068579925829, + "ods_hash": "7a81c04f3dcf57bf8e204b76637b1e94", + "dwd_hash": "209dd8096c6cd6c486eb82b149f7dd30" + }, + { + "assistant_service_id": 2815068580155205, + "ods_hash": "5e61a83470f06f0994c105114cc8d386", + "dwd_hash": "ac6ffa46a5c8046769ce24b618143d61" + }, + { + "assistant_service_id": 2815192882302597, + "ods_hash": "c45adff8a4715c97b581f627fa6dfda2", + "dwd_hash": "072b72f6cbd844e3a33ffa6e4f6accab" + }, + { + "assistant_service_id": 2815293411135109, + "ods_hash": "3b324c88dbf0cc963f75ffe28ec5fdac", + "dwd_hash": "cc45c3bfb8ff606fd465b45a1a7898f0" + }, + { + "assistant_service_id": 2815315341922117, + "ods_hash": "0051f623fe90ebb5f5ed050dc084cf09", + "dwd_hash": "73c484d7e5f797b9530d83485cc7ceb8" + }, + { + "assistant_service_id": 2815315342135109, + "ods_hash": "9e892b2625ebc56b7fd81201488b92a0", + "dwd_hash": "f64c6a17e155c416513452e29297bab8" + }, + { + "assistant_service_id": 2815315342364485, + "ods_hash": "050470715d70d6a824fd27522cfaeda0", + "dwd_hash": "c06714076008c3959e0074d80f2a4e0f" + }, + { + "assistant_service_id": 2815315342593861, + "ods_hash": "1a0e4994bf2573cc027908ee3f590beb", + "dwd_hash": "b1045eb5cc31df8d61cfabf99e0e2e22" + }, + { + "assistant_service_id": 2815315342806853, + "ods_hash": "4c9992a0088b01b98f592cb09855e77c", + "dwd_hash": "83f802640dd1b35ec058fae19450ee72" + }, + { + "assistant_service_id": 2815904071470789, + "ods_hash": "e5ab401ebfa552c576eee29af660228b", + "dwd_hash": "77bf04dfbd8ae3a800de36db2ebe0b0a" + }, + { + "assistant_service_id": 2815914797567813, + "ods_hash": "cf502b9ea44020f573405f8de20ac07b", + "dwd_hash": "916df74d53de51545d6501b8503ef7d9" + }, + { + "assistant_service_id": 2815944874250053, + "ods_hash": "60fee31ac98a32bf01df401fc6a0f651", + "dwd_hash": "a77e1251c004feed00c35148eb389d69" + }, + { + "assistant_service_id": 2816030066855685, + "ods_hash": "2bf9cc4469a0db29caebe85e45edc6f8", + "dwd_hash": "a2c1140d6b166820622a820280d5cf9b" + }, + { + "assistant_service_id": 2816047032944965, + "ods_hash": "da5f9de03bd3a1fee22b55dd99b3ceed", + "dwd_hash": "63fe5217681b1b401b899f48c40c120a" + }, + { + "assistant_service_id": 2816097542835013, + "ods_hash": "5cc9233ecb68eaca2a27ead046209acf", + "dwd_hash": "f7be57f64692352d195bac3c3b3861e8" + }, + { + "assistant_service_id": 2816097543064389, + "ods_hash": "eaef3de6b3d6be88c30d046dfa3f3447", + "dwd_hash": "e538d750d81ec4501ee9a2cf8efc46f7" + }, + { + "assistant_service_id": 2816112411839493, + "ods_hash": "af7c3be5c3fb270f2559d0899bf3520b", + "dwd_hash": "fc488cf75a35ebd79a8471dfa861b507" + }, + { + "assistant_service_id": 2816112412085253, + "ods_hash": "a43c8e2ff1fc185dd0188950538b0a4e", + "dwd_hash": "aa3b19dd23048684d15f11ea305d87a4" + }, + { + "assistant_service_id": 2816117998341061, + "ods_hash": "2d19ff102f3a526363a3b323a45dd7b9", + "dwd_hash": "e46dc114412a9a50a71193051f1d3dc0" + }, + { + "assistant_service_id": 2816117998635973, + "ods_hash": "1e9a6b6ba7032a538d98eb93fbca3867", + "dwd_hash": "fa085a69fab55f4cbf56933ff57f1b09" + }, + { + "assistant_service_id": 2816249127078725, + "ods_hash": "cbf2a6e55888e2ef7b6a4560d775b670", + "dwd_hash": "ce55856cb47615e05f2aecac7edb42db" + }, + { + "assistant_service_id": 2816269318032325, + "ods_hash": "7d099c5835e5e7c9c293e3da0d924c0c", + "dwd_hash": "6b8ff92fcda1c92ba053d670ecb46cf0" + }, + { + "assistant_service_id": 2816293725277061, + "ods_hash": "23c242055dfbdf6ed5ac95f4d764aa0e", + "dwd_hash": "9bdbe277075886277f876aaaae46092a" + }, + { + "assistant_service_id": 2816339174493125, + "ods_hash": "5591c0e4bc4b49d1459e92c7542e8f3e", + "dwd_hash": "86ad9f1ec4e00067594785a8e17ba157" + }, + { + "assistant_service_id": 2816344718724101, + "ods_hash": "90ba80a419ee28c7ccd8cc55ed5fcc3c", + "dwd_hash": "349c5dfa7e4b0ef7c5ea94808b95aac2" + }, + { + "assistant_service_id": 2816352675613573, + "ods_hash": "3e799052214401cec9018d44969881ab", + "dwd_hash": "28f8ba909f6eb79c4fed977d80c5ddbf" + }, + { + "assistant_service_id": 2816363071605701, + "ods_hash": "f61b73446e279bec5b142b3736bdc790", + "dwd_hash": "14a12eb1fb47a2a9e1874ba4aae0fbf6" + }, + { + "assistant_service_id": 2816378223725445, + "ods_hash": "9d3d42864197ddb3fa8c528ee48ee3a6", + "dwd_hash": "6a6879ee645e013810bdbde893f87f79" + }, + { + "assistant_service_id": 2816383976393541, + "ods_hash": "36857fb57d1d012356d4308f44d21a93", + "dwd_hash": "ee5b056799c852aacabcf022a3c404c1" + }, + { + "assistant_service_id": 2816390074338181, + "ods_hash": "f076df9329383063581c78dc19009aba", + "dwd_hash": "4f0ce10425e4bd5f33e41145e02ba490" + }, + { + "assistant_service_id": 2816390074567557, + "ods_hash": "b265275c59ab0218ec7c564c9ee90129", + "dwd_hash": "f2abe70bb88b0a6aece4ffdcfd1f82cb" + }, + { + "assistant_service_id": 2816402998315973, + "ods_hash": "387b43a62d51b05441f8797776d794a6", + "dwd_hash": "1c99984ef2384442a86d58dd18b1225f" + }, + { + "assistant_service_id": 2816435102649349, + "ods_hash": "b52c92fa4efc547d53f8aa9a673d1612", + "dwd_hash": "5139e73f86b7690b82d21bc176ba5e99" + }, + { + "assistant_service_id": 2816449614121797, + "ods_hash": "abe7c18690009457ca997d48b7c8ff96", + "dwd_hash": "f7b6fa917438fbc602ed421c0c282cb3" + }, + { + "assistant_service_id": 2816450094533445, + "ods_hash": "01627e094ec69c15ac4355de3bc946d9", + "dwd_hash": "9abd7179f4605fb01a0f34beba9a8e09" + }, + { + "assistant_service_id": 2816450094811973, + "ods_hash": "51b410beba14b4384f72524d1d5e8fe6", + "dwd_hash": "97be4007318ae9237b7d6b33c26bde85" + }, + { + "assistant_service_id": 2816456185826117, + "ods_hash": "5d424e7c407279f37aa867f5b560dcbd", + "dwd_hash": "206691651a92a995eaa61372fa136e2d" + }, + { + "assistant_service_id": 2816456774618117, + "ods_hash": "0fdb50d99ab5c91bc82942e813af7b7f", + "dwd_hash": "370c24fa68eac8144d9c5d14da474bf4" + }, + { + "assistant_service_id": 2816456774863877, + "ods_hash": "1a3c8230a827b1f6db34c08236d6b57e", + "dwd_hash": "e63c7b2ba2f2839377f60c807278573c" + }, + { + "assistant_service_id": 2816464057518981, + "ods_hash": "1488b78dabcca9bc95b26ba7f80b18e0", + "dwd_hash": "d4ff94afcd76046a9547bd19cbd780d6" + }, + { + "assistant_service_id": 2816464057748357, + "ods_hash": "44c3245fc0544009d12fbee698fd1dbb", + "dwd_hash": "263ae165f1fefc315b49250cebd45015" + }, + { + "assistant_service_id": 2816464057977733, + "ods_hash": "5082c3bd738dadfcac0954d0947c9ffd", + "dwd_hash": "4a800b57fd0c26234095d5ba3032edb7" + }, + { + "assistant_service_id": 2816482033912773, + "ods_hash": "22adf47bfda80f15b16796f6f38279b5", + "dwd_hash": "47b7b49343c69fcf90d8b16c6665c7b4" + }, + { + "assistant_service_id": 2816500336462725, + "ods_hash": "1ec51b3e541ecc3a6b53e20349b90e4a", + "dwd_hash": "bb5f00fe51db20e5022ffbf7dc45e280" + }, + { + "assistant_service_id": 2816500336757637, + "ods_hash": "7bc49eb8299bc59076bacf7ba658a929", + "dwd_hash": "9d148da2664fbb5a9c648fd214fcb584" + }, + { + "assistant_service_id": 2816500337052549, + "ods_hash": "5060b41e9bd33bf83997bcfee089a8f7", + "dwd_hash": "d6513625851b0f9891810327dc84e5d7" + }, + { + "assistant_service_id": 2816500337281925, + "ods_hash": "9d17f139b9400149ed20471df9427dfb", + "dwd_hash": "9fa44449e927c5cf32e34531f1b712ed" + }, + { + "assistant_service_id": 2816500337511301, + "ods_hash": "d539397d7c835b2544f0d8d739ce12fb", + "dwd_hash": "db2075e86e08d52cca0d1c16dc995aba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2850, + "ods": 2850, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 189960.0, + "ods_sum": 189960.0, + "diff": 0.0 + } + ], + "mismatch": 2850, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2814986061335237, + "ods_hash": "3888256320941db1f6ba11d8854224a8", + "dwd_hash": "fab6a8a62d492fe2ef593eaf1a186fab" + }, + { + "platform_coupon_redemption_id": 2814998145469765, + "ods_hash": "c2bdbd213544486ee2285f33209480e4", + "dwd_hash": "9654668bfd14ae0ee695ead73e2eb324" + }, + { + "platform_coupon_redemption_id": 2815038220521221, + "ods_hash": "c24fa1bce5b9386a0e2bf22ac5dda85f", + "dwd_hash": "051a473e67d78507c5f78c35fa78faad" + }, + { + "platform_coupon_redemption_id": 2815050032221957, + "ods_hash": "8fa1bddb32ce46ab37614c05732ece64", + "dwd_hash": "b936fabc032db47c3e257e70bd3309bc" + }, + { + "platform_coupon_redemption_id": 2815670259388229, + "ods_hash": "36efcc93d54d83934db122aa67aea16c", + "dwd_hash": "32617bc5d6220cd8a96919d7781ef356" + }, + { + "platform_coupon_redemption_id": 2815708950073029, + "ods_hash": "37a42453c4512c51ce94dded5274a466", + "dwd_hash": "ed2f262ac353b8cbb010e2f227c7b864" + }, + { + "platform_coupon_redemption_id": 2815714020364101, + "ods_hash": "1add4bbb06f5d06766ba3e71f5717102", + "dwd_hash": "bc701181bf4f68404579e4119abecc95" + }, + { + "platform_coupon_redemption_id": 2815763466932037, + "ods_hash": "959a26a7f7cd55277d48ca06575abf55", + "dwd_hash": "1ea4c19b9922c1b44aee6670031f9953" + }, + { + "platform_coupon_redemption_id": 2815815918718789, + "ods_hash": "9237f9c9441ad647a328b26c242b505d", + "dwd_hash": "0f2e7a9d57ee5566ebb40c237ab6441c" + }, + { + "platform_coupon_redemption_id": 2815835787415365, + "ods_hash": "3146d20bac3d95750b9a7ee2ec31a3a1", + "dwd_hash": "30293354760b5e97c70e021f439f9061" + }, + { + "platform_coupon_redemption_id": 2815857501196101, + "ods_hash": "225c01232fffcdb18becc49d1dfe9e4f", + "dwd_hash": "7e5bd6dfe32b0281f1f0973bff373fd5" + }, + { + "platform_coupon_redemption_id": 2815888248032965, + "ods_hash": "9adf560dc3bf4487214d4f0219730b90", + "dwd_hash": "d19b7958c85cb7c1b24e264cc6a48374" + }, + { + "platform_coupon_redemption_id": 2815915389603589, + "ods_hash": "50987f4f0c859a826ff933dc7045c4af", + "dwd_hash": "f18ca30636612015bdc6602ebe4c8eac" + }, + { + "platform_coupon_redemption_id": 2815924436356741, + "ods_hash": "45739a272156a5afabbcad4fb8f5c4b7", + "dwd_hash": "80d3f583a091319b9ccdae56533fd849" + }, + { + "platform_coupon_redemption_id": 2815928947183429, + "ods_hash": "44ae0fa6d5b4e12dd8f0a2138691b5d1", + "dwd_hash": "dcb54a0a2599da4199ac0b82771e057b" + }, + { + "platform_coupon_redemption_id": 2815929939775109, + "ods_hash": "cb83f3f570df93e1dea68028b809b8d1", + "dwd_hash": "4490c6a24c10bc8622b0ee018017a374" + }, + { + "platform_coupon_redemption_id": 2815934117449477, + "ods_hash": "3e120226e383ed978c313ce0f46a4f6c", + "dwd_hash": "cfb524b7c0314fab5a376ecd3e649a31" + }, + { + "platform_coupon_redemption_id": 2815942572084933, + "ods_hash": "14b10cbc11df659eb6e6b1a94db3c920", + "dwd_hash": "2ffa1f9b54e54a43ba424e38a0682c7a" + }, + { + "platform_coupon_redemption_id": 2815948326112965, + "ods_hash": "411dc014eec78ddcf2a5a522b2ba7f38", + "dwd_hash": "46d2888c307dd277ab9d8b164155c886" + }, + { + "platform_coupon_redemption_id": 2815952511684421, + "ods_hash": "d3d19ac8e44299cc18f3581887cb6328", + "dwd_hash": "3ccd8a5a9ab80b17b5fba1b6a31583c7" + }, + { + "platform_coupon_redemption_id": 2815954552934213, + "ods_hash": "3a7df6ebec1fc17ad5bd8bf3c73f5429", + "dwd_hash": "f1fd4141da918e4b5176e247ee0f0fc3" + }, + { + "platform_coupon_redemption_id": 2815957094158149, + "ods_hash": "9c3c07053f101b9ec8bb6f4e10817061", + "dwd_hash": "844f2e18a71fb921843cf00a6d82c03e" + }, + { + "platform_coupon_redemption_id": 2815968915050117, + "ods_hash": "2a3210ac10e845d0ea0db129a3b21d94", + "dwd_hash": "392bd0e6b45fe6fc825fb5d0bb906fa7" + }, + { + "platform_coupon_redemption_id": 2815987124997893, + "ods_hash": "4a4b7199e69f8fdc879c03f64c464f9f", + "dwd_hash": "d736038d1f623107546fa2a61e7d5862" + }, + { + "platform_coupon_redemption_id": 2815998670311109, + "ods_hash": "55ab64d190eb558f9397276771e9de76", + "dwd_hash": "439cc0badd2d97f77db963a5c94764d2" + }, + { + "platform_coupon_redemption_id": 2816011536912197, + "ods_hash": "7a43de88f3f2b8e0181a9b7f8ee56ec9", + "dwd_hash": "5e89c6afdd68e0347ec1dc3fe4b41539" + }, + { + "platform_coupon_redemption_id": 2816011777920773, + "ods_hash": "5cf2016c72b91e92f0343d95b218ff09", + "dwd_hash": "104231165eb6a10a72cf30036b731b28" + }, + { + "platform_coupon_redemption_id": 2816016143077061, + "ods_hash": "480c5fb78b6487f4a18101868b0ffde7", + "dwd_hash": "05f226eab6ece2ba44f505bcf1ff3221" + }, + { + "platform_coupon_redemption_id": 2816023900737157, + "ods_hash": "10281a653600d80285ad3b6f7d4a93bf", + "dwd_hash": "28a980d1e5fb408d3692fd64703e80cc" + }, + { + "platform_coupon_redemption_id": 2816024269786821, + "ods_hash": "a68ef68891e3a9ac8eb80d6ec5b79e56", + "dwd_hash": "c4250a21e350a4a140cf62b6aa7a5972" + }, + { + "platform_coupon_redemption_id": 2816036284845701, + "ods_hash": "413a2e31f6535d6be3a3db25ad981b79", + "dwd_hash": "05e105f80780f6fe807a66cbf1a00e24" + }, + { + "platform_coupon_redemption_id": 2816057573902725, + "ods_hash": "a6e6f2009d3b0ff5a7959f80eaf037a7", + "dwd_hash": "9cbe17739bd92fd31571330a4a052691" + }, + { + "platform_coupon_redemption_id": 2816067471591877, + "ods_hash": "1903e655014e868f8a6205debc115c66", + "dwd_hash": "417a99057dff8e92276d2b57814348f5" + }, + { + "platform_coupon_redemption_id": 2816069306780101, + "ods_hash": "fd7568620240fdaef5fb1d4a9f381461", + "dwd_hash": "1dc1e84f9cc6330f1c8e6aedc5cbec7b" + }, + { + "platform_coupon_redemption_id": 2816071852886405, + "ods_hash": "976903d2166ad46b8cb84ecaf5c3af35", + "dwd_hash": "fd826931f5480bd3388b4f57da37fde2" + }, + { + "platform_coupon_redemption_id": 2816091699940229, + "ods_hash": "5b8bcb5a54e4c0bd69666aa7b5c1e2b0", + "dwd_hash": "ddaf1d902e25bf8e0ba7cfd4d2eacdbf" + }, + { + "platform_coupon_redemption_id": 2816102986648453, + "ods_hash": "b6abe2a922a07412e7458e7fa0f4d205", + "dwd_hash": "5d8f93c546f7c097dd51aaf96eb1f549" + }, + { + "platform_coupon_redemption_id": 2816109543607109, + "ods_hash": "9c72dafd11f45c66b8aa5974b26f5b63", + "dwd_hash": "cc8509b52672303d76e7f3ea7c08d5cd" + }, + { + "platform_coupon_redemption_id": 2816118965668869, + "ods_hash": "6da932393e17ad05f7448d7bc51e130d", + "dwd_hash": "ba74782281b7cadb563c97e0beed86a9" + }, + { + "platform_coupon_redemption_id": 2816129503628165, + "ods_hash": "277616cd7089578e8a4cdca886c05471", + "dwd_hash": "a484b9bbbe6181dffae2ef6ac97cf3c2" + }, + { + "platform_coupon_redemption_id": 2816131384724357, + "ods_hash": "986806f535c32084a8d7d2b36b7362c6", + "dwd_hash": "0b847adc3565e2e03e2d1a051aa34ace" + }, + { + "platform_coupon_redemption_id": 2816133827038213, + "ods_hash": "d630e70d062bc0b9f91204d91bb1fdc6", + "dwd_hash": "a0a7b85fae9f3218ee949f1ee18fd258" + }, + { + "platform_coupon_redemption_id": 2816138340240389, + "ods_hash": "db360e2fa44735bfdfeec81ee1cf738c", + "dwd_hash": "37acb9679c95f33471f95b03cc984289" + }, + { + "platform_coupon_redemption_id": 2816144492645317, + "ods_hash": "86f6780b11bf05c666a8d8faf0be1838", + "dwd_hash": "1ae044dc19a3f5707a6435f1a172032a" + }, + { + "platform_coupon_redemption_id": 2816150533196613, + "ods_hash": "109e306422a7e2b51474dbc94ab853e5", + "dwd_hash": "f30d0acf1e953a3460bf14d7f4d061df" + }, + { + "platform_coupon_redemption_id": 2816151252011973, + "ods_hash": "7c583b05d3aa7a86f55441066f3b600c", + "dwd_hash": "141f0de3c13a932f3173667d4292cdcb" + }, + { + "platform_coupon_redemption_id": 2816156159249285, + "ods_hash": "7ade0eb0077538810a1f99cb696da883", + "dwd_hash": "1eda86d74e9e37b7ee0363875398896e" + }, + { + "platform_coupon_redemption_id": 2816160355093509, + "ods_hash": "cadc9e9e052c4b4c5c7970f03b999c10", + "dwd_hash": "c4a11c04ea23f01f9ccb1638288e48c7" + }, + { + "platform_coupon_redemption_id": 2816163721071621, + "ods_hash": "72410ef6ca8ddeece0c4cfc9c6783f34", + "dwd_hash": "24463093c5bb4a5e63a4c1e1036dc64e" + }, + { + "platform_coupon_redemption_id": 2816175656422341, + "ods_hash": "1bd76394747e1e1c33f1373ed8d6baff", + "dwd_hash": "a5d5b97b4ec110b3dffff8a6f797acc5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4763, + "ods": 4763, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 381598.0, + "ods_sum": 381598.0, + "diff": 0.0 + } + ], + "mismatch": 4763, + "mismatch_samples": [ + { + "payment_id": 2814985970502085, + "ods_hash": "c50be1c89775292425df05286485eebb", + "dwd_hash": "6256ad399f94538bda1e63c6200b3d35" + }, + { + "payment_id": 2814989977602693, + "ods_hash": "3f708b93cba1775c2ed773dfc8ef373d", + "dwd_hash": "888beaf9f13c92474ee523d97a287f85" + }, + { + "payment_id": 2814993033726597, + "ods_hash": "db9f1440aeb29ec385da55cc6d5afbfe", + "dwd_hash": "f0210389f6d7785aef8f515071f83f5b" + }, + { + "payment_id": 2814997897989637, + "ods_hash": "f2287bc74ffa966d962543aa3b30b2be", + "dwd_hash": "68e2d1106ef11e7deeb0bb80af868056" + }, + { + "payment_id": 2814998028193093, + "ods_hash": "3e9df3f6510c23e4244c4f698422fb04", + "dwd_hash": "ab4c8afe8b1a2cd0f529e521582d09d5" + }, + { + "payment_id": 2815007737417413, + "ods_hash": "ed84bfc5560fda937796bdd1f6d23fba", + "dwd_hash": "9c99074518bceeee6fb8884570247893" + }, + { + "payment_id": 2815008601984645, + "ods_hash": "92c5bc2c46dc3e2299465fc1b08f1eb3", + "dwd_hash": "026ea05be0df682601918b4e2c957735" + }, + { + "payment_id": 2815026155277957, + "ods_hash": "68a6558ecf151b4407671be33ab9f1fe", + "dwd_hash": "6c0c6dab582ed102d73c4a8091ec841d" + }, + { + "payment_id": 2815031623470917, + "ods_hash": "66b2a77a82462afae88f00b7c75665e2", + "dwd_hash": "cf09749b9948ab17f8c29c6acd24bef9" + }, + { + "payment_id": 2815045004054341, + "ods_hash": "72196564a81b1f1e4d186efd3fa9cadf", + "dwd_hash": "8b152cc2e100d3a93a226d83f5d544b9" + }, + { + "payment_id": 2815049221656197, + "ods_hash": "6e1e5724eaac9cdbf4d95e3ff3390b17", + "dwd_hash": "56aff7a721276973899c613989a30ea3" + }, + { + "payment_id": 2815050751610501, + "ods_hash": "f5169b7031106fd22742479b17fe227a", + "dwd_hash": "40e1f49ea83959e4870db51e54cca731" + }, + { + "payment_id": 2815053685149445, + "ods_hash": "bba416b66c14f96c301cb287f844430b", + "dwd_hash": "e6dd4ee5b631e9cc372be9b37722a50b" + }, + { + "payment_id": 2815057359802053, + "ods_hash": "399e7d37faed4c6d8fa040c553fd5a08", + "dwd_hash": "bd902ca3aa8180ade7f1a0ff8013f18a" + }, + { + "payment_id": 2815065075126085, + "ods_hash": "db21d1532a9b849080dcb8027b2c9971", + "dwd_hash": "e1b01155f94e6e071293cda1aa5d0d49" + }, + { + "payment_id": 2815068576862021, + "ods_hash": "5f5c7852a984ec339b7fafc69c10f654", + "dwd_hash": "4fdb936142af519d3e2a6d34bfbd8180" + }, + { + "payment_id": 2815068923612933, + "ods_hash": "9f7787973fb275bfb0202277ec704c3b", + "dwd_hash": "205d58a2a910cf38afd5603814a26529" + }, + { + "payment_id": 2815072463474373, + "ods_hash": "e098c24d37883cb9d1518a9484f5b7c5", + "dwd_hash": "a322e15458837c47e3fbd1eac083af4e" + }, + { + "payment_id": 2815080292683525, + "ods_hash": "fb3998b45f48d687d7493058a17a2498", + "dwd_hash": "f02b959c6c5a1a4856b58b8611fafa17" + }, + { + "payment_id": 2815081794539333, + "ods_hash": "f8437e0d7e5692a9f4270d5b01edad77", + "dwd_hash": "1dd7d0afbf3eb8da57968c6204dd5057" + }, + { + "payment_id": 2815082740518661, + "ods_hash": "2ec129fc60b63a9a522dc234432801e4", + "dwd_hash": "6c2917764532a8794c24094738e42b67" + }, + { + "payment_id": 2815091670437509, + "ods_hash": "64e0643e24dacc0b4d5d536eb46edaae", + "dwd_hash": "b6df36012a9dc9161f9fbe347138675d" + }, + { + "payment_id": 2815092449660613, + "ods_hash": "7253c40eb25a68594cd9aebccb55363f", + "dwd_hash": "00ae18e0e01432ba6ac0120a8da9b5d8" + }, + { + "payment_id": 2815107865972421, + "ods_hash": "e2a7f1c0bf1c41fa6bd1f823941e0e4e", + "dwd_hash": "1e2fb8f61bf894c4ebd6de7ad98f5456" + }, + { + "payment_id": 2815117512658629, + "ods_hash": "b54cf1e6f3aaf61ec933722d21e615e4", + "dwd_hash": "15de86cc122b68740540f44442ee4f4d" + }, + { + "payment_id": 2815120859041477, + "ods_hash": "54ec949fad7b3c0d0566ef81447352f5", + "dwd_hash": "c202551fcf0d8bcbab29cbc6e3aa8da3" + }, + { + "payment_id": 2815147244654277, + "ods_hash": "a0b297d1a6adf10a2a9c23ad4aad1c6c", + "dwd_hash": "9fd038e38af8d6a7269535c274187ecf" + }, + { + "payment_id": 2815157253148357, + "ods_hash": "20cbc3291edab7a318c095fa962bf345", + "dwd_hash": "971097851faedfdd2fdb66f1ce32f436" + }, + { + "payment_id": 2815189893582597, + "ods_hash": "45c65c8ea04c4b22754deb4a1e87963b", + "dwd_hash": "a374a0fc8cbed35d32a9b84b1ff3a912" + }, + { + "payment_id": 2815192880057989, + "ods_hash": "a95706200dd2c2a025d93fbd46e2c1e5", + "dwd_hash": "f0c4a56bb3f7d3336570adf1a54c2d37" + }, + { + "payment_id": 2815293409152645, + "ods_hash": "f959aea4cc9f31ad4d140eaca4ed8a22", + "dwd_hash": "da502e9d5afc29fdba78a23171ed8826" + }, + { + "payment_id": 2815315338366789, + "ods_hash": "a6ff0db853fecb14845fd9e7d134df4f", + "dwd_hash": "4d6120b649bd3bc184be6a3462155cd5" + }, + { + "payment_id": 2815321450139333, + "ods_hash": "240500f364d60cc356a097217e40b7d0", + "dwd_hash": "72044f0114ee628081b7ca2aea0f5342" + }, + { + "payment_id": 2815715901181573, + "ods_hash": "511f0309aab6a0dbd827d1b3e65e85c1", + "dwd_hash": "4f91ea47a1c418e9525b882c7f9f4a5d" + }, + { + "payment_id": 2815716522757957, + "ods_hash": "67719a485a90ca1ea8177c0f373a0740", + "dwd_hash": "1f7f5c47b18a3f5ed1b1bfb9b7acf6cf" + }, + { + "payment_id": 2815728942829381, + "ods_hash": "89d0929d0e9fef5e6eba04169cbbfad1", + "dwd_hash": "4d63a711c4b7ec027177bb83f7a5cd17" + }, + { + "payment_id": 2815777844334341, + "ods_hash": "93ab71f685d08d2316775825a72ee761", + "dwd_hash": "e970eca04fd348130f55d27b9c0bc7f0" + }, + { + "payment_id": 2815783873875717, + "ods_hash": "4f55761ef392aa0a2c44ef18b556ecd3", + "dwd_hash": "b1951b5dc16746dcd22a768531a9a40c" + }, + { + "payment_id": 2815808178769541, + "ods_hash": "59ada987d823cab0fbce3b5df33e8059", + "dwd_hash": "4505417bc6c88b9028b69d3ceefabbd3" + }, + { + "payment_id": 2815835680689989, + "ods_hash": "d50100129666ad36039417f9c601bef6", + "dwd_hash": "faa806409279e90c527fc9d2a672beba" + }, + { + "payment_id": 2815904070012613, + "ods_hash": "8950c432bcf84ee40ce2e0fa60161f2d", + "dwd_hash": "d0b8bf6ab0037abe45c1d7b4896e6522" + }, + { + "payment_id": 2815911087017733, + "ods_hash": "55f1660861e7a3d057a9d909cca25563", + "dwd_hash": "3beb253150050a7e1e36dde0dfe4ad9f" + }, + { + "payment_id": 2815913389248197, + "ods_hash": "badc831db99d7dfa23d441e11e308405", + "dwd_hash": "4c3a55cd420d6bb88ffefb1bf4610210" + }, + { + "payment_id": 2815914436546309, + "ods_hash": "e3c6f7d60963b03a646ea9dacf57ce4f", + "dwd_hash": "bb65046f1b871bc8390861c025222e93" + }, + { + "payment_id": 2815914796060485, + "ods_hash": "ed1943483c5e0fbd6291ade8155852fb", + "dwd_hash": "e5d41043552e2298e44688bb4e16137c" + }, + { + "payment_id": 2815916693098245, + "ods_hash": "0001e5c339cf81575c80ad076c6e734a", + "dwd_hash": "ad4dcf64388b3bc9b81c01f2b02c92c0" + }, + { + "payment_id": 2815919539179269, + "ods_hash": "8b2b17fea5296cae77f0280ae93a203d", + "dwd_hash": "233c64df9928d275d0bf7cc7aaa858b0" + }, + { + "payment_id": 2815944872595269, + "ods_hash": "deebfebba9294c54a6746c09f7715ed6", + "dwd_hash": "c732e8f2ddc994dfe82914820a276ed5" + }, + { + "payment_id": 2815946580381445, + "ods_hash": "82bd075aa0aba34961c9bdac0c4aabb5", + "dwd_hash": "3b87223bd39c4510befea513773d9000" + }, + { + "payment_id": 2815952265891589, + "ods_hash": "6be85d999a06db1ddf98996bb6cf532b", + "dwd_hash": "b44edde7c3e01d2117f1d3c08d48c0a9" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23870, + "total_mismatch": 52699 + }, + "generated_at": "2026-01-31T23:39:00.675771+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "label": "segment_4", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-09-01T00:00:00+08:00", + "end": "2025-10-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3720, + "records_with_pk": 3720, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10206, + "records_with_pk": 10206, + "missing": 10, + "missing_samples": [ + { + "id": 3075420149368197 + }, + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 654, + "records_with_pk": 654, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 4, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12033, + "records_with_pk": 12033, + "missing": 11, + "missing_samples": [ + { + "id": 3075420146779525 + }, + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17372, + "records_with_pk": 17372, + "missing": 2, + "missing_samples": [ + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 54, + "records_with_pk": 54, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8322, + "records_with_pk": 8322, + "missing": 6, + "missing_samples": [ + { + "id": 3075420149908869 + }, + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 10, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 4816, + "records_with_pk": 4816, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 25, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 11, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "f092dbbfb3ed41a453adfa95b0a12eb7e3f63aa951fcc5e842298ce91f1580d7" + }, + { + "id": 2793002509209733, + "content_hash": "f7731ae70c2594663305a4bbe70fea0a93193446d1584fb2d0d8dfe04fa16415" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3810, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3810, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 30, + "total_mismatch": 38, + "total_errors": 0, + "generated_at": "2026-01-31T23:42:53.402098+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 1264, + "diff": -1264 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 11, + "ods": 11, + "diff": 0 + }, + "amounts": [], + "mismatch": 11, + "mismatch_samples": [ + { + "assistant_id": 2859776051579717, + "ods_hash": "5172d297f617d2b1a76c1caac62f4f7f", + "dwd_hash": "8c24879e00366952537597aa9f27329d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "d97664e051a9042eef66534daf030ee4", + "dwd_hash": "d59773662ea53811be0f57019260779c" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "2355c8fbfc1161764b6fb0770b0f64e1", + "dwd_hash": "3eeccb71cc38a585afa629bfa9184660" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "350220d7328ab9df6687e2418df2c6b0", + "dwd_hash": "fb91c890987b27c1003778d15a6d8f39" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "fceb2aa66d27f815a258c5f14e3b5cf7", + "dwd_hash": "d68cb303f2f6ea05e18325c43c588677" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "7978b181e1813e2661feef48298acaad", + "dwd_hash": "752862d5e99266814ba55c562b8fc091" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "c0915cbe315524a64f0a41b5ddf046ae", + "dwd_hash": "34b299aea3c197f0360373f716b38034" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "db9a0fdca1004ad0f9d258b23bdcd0f5", + "dwd_hash": "4b8f126c21d9afea6f01d9be140de54e" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "6d11b5c8d7bcb816adc07d7804f24737", + "dwd_hash": "1191b8769fa7483a761dd4f5ace91768" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "03cd415b21d994c4fa295a7ca0f1e8c6", + "dwd_hash": "3ce874bb673b6c55001b5f25ea1bd582" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "152a308a7a0095b4d1ddbd4dc3f2c6a9", + "dwd_hash": "74715d89ab6e9ffe77e03d2d4d3134f0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2860039721438277, + "ods_hash": "a1a38e307560d38aa8497c1a3c4f9e54", + "dwd_hash": "ff979b1149a289d17f89026ed24cc6b8" + }, + { + "member_id": 2860045549128837, + "ods_hash": "a37e540dc7961b1ce47fa2f20002dbd8", + "dwd_hash": "ce587d64c55c31569aa5ebd2df9d40ed" + }, + { + "member_id": 2878376367018757, + "ods_hash": "8426041ae5079cd76ca57aaf35b59245", + "dwd_hash": "ec041392cb620e306821a1738248aa5b" + }, + { + "member_id": 2880000482366213, + "ods_hash": "cd1d546ecd5c0fb4fdfc972be628d139", + "dwd_hash": "58e7d781e3fc6dc13dd6ec3be41a6d7e" + }, + { + "member_id": 2881216340641797, + "ods_hash": "1954b0f568dca2f32bddfaaf9b6fd14b", + "dwd_hash": "14ea6d232676bddb0d8b8e54aeb7cc34" + }, + { + "member_id": 2896726929361669, + "ods_hash": "c9f9768694d9da6db0add62971e5d3a1", + "dwd_hash": "a2c750d2a6f119b533430d142dfec278" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 10, + "mismatch_samples": [ + { + "member_card_id": 2860039721946181, + "ods_hash": "3eabe16d72ba7ef7177356cc97f560bf", + "dwd_hash": "02b7be99128f8e213f1158a0d9d3b699" + }, + { + "member_card_id": 2860039882673285, + "ods_hash": "81ece0f90d6287c1faa1f0ac09ebfcd2", + "dwd_hash": "caffd1ac152f811a9c7fa37913dee2cc" + }, + { + "member_card_id": 2860045549603973, + "ods_hash": "5948f84abd215bfcf14a7c3bb2da86c8", + "dwd_hash": "6d087039b107aa409bd5f45b3337a682" + }, + { + "member_card_id": 2868694674264133, + "ods_hash": "575d0eb987c73a450890b476857f2481", + "dwd_hash": "db9ba2a553e6c08cc6a12f15bf521389" + }, + { + "member_card_id": 2878376367297285, + "ods_hash": "5306efdd2facff9c47596032b4f87b70", + "dwd_hash": "b61e578229bcc7e96c8fae3371a7610d" + }, + { + "member_card_id": 2880000482644741, + "ods_hash": "2ff26e86b708caca395819ef96d13149", + "dwd_hash": "4debb84c02d4ded0abb3aef5e7303ecb" + }, + { + "member_card_id": 2880001639385029, + "ods_hash": "97284e94aebc5e9572918c5e76f42197", + "dwd_hash": "843dde010291d2b11c44a1d9e72c4cbf" + }, + { + "member_card_id": 2881216341149701, + "ods_hash": "7427d9ee34ceecd66bac74df58a87753", + "dwd_hash": "065ee10b28f2ec16cd2e43a46c51b758" + }, + { + "member_card_id": 2886024745945541, + "ods_hash": "3742196a475e4972c218ae0d81243ec0", + "dwd_hash": "ff08b9425a29eec0b71778c19cbd8f23" + }, + { + "member_card_id": 2896726929672965, + "ods_hash": "59a4881ce8762e85c2ca1b5fa42ef896", + "dwd_hash": "e8087813e09921dad35fe39eebc23225" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2, + "ods": 2, + "diff": 0 + }, + "amounts": [], + "mismatch": 2, + "mismatch_samples": [ + { + "tenant_goods_id": 2868227554610821, + "ods_hash": "7e73a7a3a8b678a2f59cf40e19ce93d5", + "dwd_hash": "94324959021d51cad98ce0255d9a29cf" + }, + { + "tenant_goods_id": 2878390970471173, + "ods_hash": "c69df2a4dbed64c1bb5df0d673538260", + "dwd_hash": "9a3770d65f62d7e3bef19498841f2e81" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2861343275830405, + "ods_hash": "937df0df369b22a549e0b718e606856d", + "dwd_hash": "f78b0098b8a0eb271688ab5ad961d24f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1264, + "ods": 1264, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 11020.51, + "ods_sum": 11020.51, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 73893.75, + "ods_sum": 73893.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 137203.92, + "ods_sum": 137203.92, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 15685.02, + "ods_sum": 15685.02, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 52340.33, + "ods_sum": 52340.33, + "diff": 0.0 + } + ], + "mismatch": 1264, + "mismatch_samples": [ + { + "table_fee_log_id": 2883738007719045, + "ods_hash": "fb9dd4cee69d5698e6c1fafb797dab1f", + "dwd_hash": "864a9e90630756e3900e1bdd121a520b" + }, + { + "table_fee_log_id": 2883783941360773, + "ods_hash": "9e3d6ada7afb68cc1d7e7b8ff52227f7", + "dwd_hash": "f0eaf2b51ee297a158757c984416f042" + }, + { + "table_fee_log_id": 2883842833550469, + "ods_hash": "3587d9b5174c1a22e19f3fe8675784ec", + "dwd_hash": "3b6f09eed8ede9fec3f60f6d4e231a00" + }, + { + "table_fee_log_id": 2883913640562117, + "ods_hash": "67f6b281bb20869f178fac552c487b59", + "dwd_hash": "ba50bcbbdbe25a880230d2486aea8aca" + }, + { + "table_fee_log_id": 2883925552795141, + "ods_hash": "b4b7a413184b6d648b1999641ce625aa", + "dwd_hash": "bf32a2ed18305522cb6aa0680329ce24" + }, + { + "table_fee_log_id": 2883936115772805, + "ods_hash": "217da08684f425c32f64fdf5e2c26a60", + "dwd_hash": "d90b72f0a709e9aaa89af8cf671c3571" + }, + { + "table_fee_log_id": 2883967682006405, + "ods_hash": "92d0c4e989b1712d8cf79e931b64bf0d", + "dwd_hash": "5ac5708666e89b01d7ec15f251f1ecd2" + }, + { + "table_fee_log_id": 2883972314320389, + "ods_hash": "b5c73967257af950fa5a17a52e8dac5b", + "dwd_hash": "ede1be33418809215766b6136947a6f0" + }, + { + "table_fee_log_id": 2883995919437253, + "ods_hash": "645106b07e943e4a446d1f4622d2efee", + "dwd_hash": "7546137eb7a78b2340b2e9a98632bf92" + }, + { + "table_fee_log_id": 2884035527724421, + "ods_hash": "132d77ddf5a54fb92e2ea39676e8e51c", + "dwd_hash": "5722bda672842a9e81d0d3c8285e2c83" + }, + { + "table_fee_log_id": 2884038344576325, + "ods_hash": "702e04af43efe57006d57827c84e4c98", + "dwd_hash": "ac1a82af95f92c46948f740a39ca6994" + }, + { + "table_fee_log_id": 2884039651315141, + "ods_hash": "25469e1b29ac0b9cf7996637ee9ee131", + "dwd_hash": "760698b4ff3ef5f26aced2309edc76d4" + }, + { + "table_fee_log_id": 2884073990655301, + "ods_hash": "84f978920438351a3eaee4f3e0871b1a", + "dwd_hash": "01886b135ef5168a14a310d13d6142ab" + }, + { + "table_fee_log_id": 2884075079552453, + "ods_hash": "b5aae6a8e4ea21cb73c2fd1a98b97aa2", + "dwd_hash": "bc8918da623a50561d4ccc111d16af06" + }, + { + "table_fee_log_id": 2884084162039173, + "ods_hash": "69f65a6419459c00f9cc6e26fefee3e2", + "dwd_hash": "b183984bb35b92bc3dedcf8ab8363621" + }, + { + "table_fee_log_id": 2884084805455301, + "ods_hash": "2e84fa7b8569b0957792e2c51b60f354", + "dwd_hash": "8b2ad1d21bbc9789ddfeb425ed147267" + }, + { + "table_fee_log_id": 2884102524226949, + "ods_hash": "72b173f1156841a9be459d24fde212ac", + "dwd_hash": "df1e3c764267af56174665dbe32ca761" + }, + { + "table_fee_log_id": 2884112822406533, + "ods_hash": "08eb519571572da3bca154f27ef26940", + "dwd_hash": "b67d538c1475c39acaaada2104ba4098" + }, + { + "table_fee_log_id": 2884113768140293, + "ods_hash": "dc922af02a01f8a217ce90ab40309672", + "dwd_hash": "e4a1c4f913f4b88cbe7c49d760f40a5e" + }, + { + "table_fee_log_id": 2884133674716485, + "ods_hash": "8539580ebdec38d1408b15af1e5c6a5f", + "dwd_hash": "95badeb2bbfb26ee9b6bd7e959243a39" + }, + { + "table_fee_log_id": 2884134140857669, + "ods_hash": "6ee48e53cc27ab671c61ed7fa52c4870", + "dwd_hash": "d419c2cbcdfbcc7cbf446237b021d0a6" + }, + { + "table_fee_log_id": 2884144797437317, + "ods_hash": "5054827ab3c0b4ad85b7d5209f98ad77", + "dwd_hash": "0432a33571d60ee375b314ef1aa34db8" + }, + { + "table_fee_log_id": 2884146733534725, + "ods_hash": "d559b7325d167c11fcdd85aa21669660", + "dwd_hash": "242433d89782cf0e05eeb2298056433c" + }, + { + "table_fee_log_id": 2884146919738821, + "ods_hash": "23982d16002e0c3534709e97fc5dd675", + "dwd_hash": "8e411b6b548a96fe3e121050947bd774" + }, + { + "table_fee_log_id": 2884159167745413, + "ods_hash": "da2d6bc2e509241077826f1ec5841c23", + "dwd_hash": "475085fc91d6fc081f3d16194ed29ec4" + }, + { + "table_fee_log_id": 2884167223102789, + "ods_hash": "69e0fb3662c525c8fb6c22875ae374d4", + "dwd_hash": "3cffb7b4ba1d5488e0d135c1fc288651" + }, + { + "table_fee_log_id": 2884169189674501, + "ods_hash": "15596adb3878f3f4306c7e594b5774af", + "dwd_hash": "955e1874ac1f5e58832f8e66c3d5d081" + }, + { + "table_fee_log_id": 2884176832663045, + "ods_hash": "9cb2644a960586b3c3ade6c236318a5a", + "dwd_hash": "41dcb0dc15b68dc331015c0e0ebb2dbd" + }, + { + "table_fee_log_id": 2884182426881413, + "ods_hash": "d3d4ee0df53ddc473cac3b13f1949ccb", + "dwd_hash": "a028ec8d170218e71215a55b849444ea" + }, + { + "table_fee_log_id": 2884183893658949, + "ods_hash": "218ca627dcacf4a7c3c1a23f5ac7bc13", + "dwd_hash": "f60ed62205aa75e56776faee5d94256d" + }, + { + "table_fee_log_id": 2884187077086725, + "ods_hash": "b8f3628d3e95409605e7911c465a81c8", + "dwd_hash": "5385fe2011965fc3ea63f26a5984b3ec" + }, + { + "table_fee_log_id": 2884192656428549, + "ods_hash": "09146ee3072c01b267182394d07f723f", + "dwd_hash": "09f5630fa5dd8642584848edd5dfb29d" + }, + { + "table_fee_log_id": 2884197687758149, + "ods_hash": "b3d24d4e50873d1b994ddb7c6642d3fb", + "dwd_hash": "36689f6fb530c04ba40740b0d5ae26e6" + }, + { + "table_fee_log_id": 2884199480249861, + "ods_hash": "bd851e9acc6b32dfe946cc3135a3656f", + "dwd_hash": "376c9277cd135eabbc616e56575bdd1b" + }, + { + "table_fee_log_id": 2884199528287621, + "ods_hash": "7b8bcf425dc209ebd300e7d47fa1e31d", + "dwd_hash": "a02d357c50f71f94722c88fe75028887" + }, + { + "table_fee_log_id": 2884206911147525, + "ods_hash": "bbc1b5fa2269e9a0f43309d5be6528a9", + "dwd_hash": "7e3ce036643f5caf03fb879cc8d7c71b" + }, + { + "table_fee_log_id": 2884206979304773, + "ods_hash": "7e8c8d1d6449a1e16ed6ed3c12be57c6", + "dwd_hash": "4e99e1bcea32be42f32601bed5647ef3" + }, + { + "table_fee_log_id": 2884219169066437, + "ods_hash": "a1999cf68000e600bb3e6c1b8ac0211a", + "dwd_hash": "4212c2f914e47082a5b99ddf457ebb94" + }, + { + "table_fee_log_id": 2884226569899333, + "ods_hash": "0cb546dd0eaafbe0354d518acf96b9ca", + "dwd_hash": "b366e734962b9587194631a756223373" + }, + { + "table_fee_log_id": 2884229269982597, + "ods_hash": "f88974799ddb3d389df69084f9ddd369", + "dwd_hash": "32b191fa498b84febcdf1eb50a57313b" + }, + { + "table_fee_log_id": 2884243554258245, + "ods_hash": "1ab802a71bbb484c19751a9fed7a07af", + "dwd_hash": "9aae17c72dc2e9dd7078b7590811b641" + }, + { + "table_fee_log_id": 2884243669323205, + "ods_hash": "c92ad5701a6743a716aeedafc345407e", + "dwd_hash": "1d432244312366d1da469aacd4c8a568" + }, + { + "table_fee_log_id": 2884243721096645, + "ods_hash": "5ccfe315e4918958a679f207b63b7477", + "dwd_hash": "0c4486ec719159c12ece0478adf4d8b5" + }, + { + "table_fee_log_id": 2884244935298501, + "ods_hash": "a07481bf180b6d3a0b2ee9ce673d9ed3", + "dwd_hash": "37b832a29b2736f353176504423fb878" + }, + { + "table_fee_log_id": 2884271138639301, + "ods_hash": "a90973f31a766e25bf64e79524493e54", + "dwd_hash": "d18f634643de88cf9d3e038bc3c42893" + }, + { + "table_fee_log_id": 2884274545347973, + "ods_hash": "ab52f5c147676cb439ece8f3ce918f29", + "dwd_hash": "44588b8e978266779347a01a8d35d539" + }, + { + "table_fee_log_id": 2884276476464645, + "ods_hash": "95fc3a21c24d06c43a330db6261bd288", + "dwd_hash": "9e34f76b94f69f1c137b16c1a7ecb0b6" + }, + { + "table_fee_log_id": 2884278030454149, + "ods_hash": "5a8429d74f20755e09ad7b5573a5aed6", + "dwd_hash": "48ced2afc3a08158982b4b78713c3302" + }, + { + "table_fee_log_id": 2884281067752837, + "ods_hash": "0f22bbf61dac1a8c6d1c9a15d284a5b8", + "dwd_hash": "d93c3b0b5b221a173771ab8ea445b81c" + }, + { + "table_fee_log_id": 2884282419072453, + "ods_hash": "0bd5a3c027857d1e89ad2ed225858bf3", + "dwd_hash": "1bb664720b8de0eae55d42aed510f070" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1449, + "ods": 1449, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1.41, + "ods_sum": 1.41, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 24706.9, + "ods_sum": 24706.9, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 23874.4, + "ods_sum": 23874.4, + "diff": 0.0 + } + ], + "mismatch": 1449, + "mismatch_samples": [ + { + "store_goods_sale_id": 2883719457049669, + "ods_hash": "a91b64d7fe769cc0f269ddc530b0ba1e", + "dwd_hash": "8d7244d0b526aa59584c42ea20a09918" + }, + { + "store_goods_sale_id": 2883719457049670, + "ods_hash": "5ba96663a0def9f5909a7fbba37ceb3e", + "dwd_hash": "6301817448b64bed6906957c38435d9b" + }, + { + "store_goods_sale_id": 2883719457066053, + "ods_hash": "28f45646fbfe9d68b3edc9a29b631e09", + "dwd_hash": "6401e62de708e347bd78cc2c942ab5d9" + }, + { + "store_goods_sale_id": 2883783941704837, + "ods_hash": "c189bdbccfc5db6cd86f7e422b2ab197", + "dwd_hash": "bc44abd80acd10f7ebc472e9948b5e57" + }, + { + "store_goods_sale_id": 2883783941721221, + "ods_hash": "6cbf93d555eea63b3d4939c9e6080a75", + "dwd_hash": "45b0eff2fa1396d231e6c0e06c78a1e8" + }, + { + "store_goods_sale_id": 2883783941721222, + "ods_hash": "0e0c57748031e56538f99a5cf89eb037", + "dwd_hash": "bc5658a0b35c59935adcea72a62b9e19" + }, + { + "store_goods_sale_id": 2883783941737605, + "ods_hash": "a7359b682225f1dc9da3ac7f74511ee1", + "dwd_hash": "bcf1622ef85aee478496042e79ab9fc6" + }, + { + "store_goods_sale_id": 2883783941737606, + "ods_hash": "106c88898916312a37b8d89320638bf5", + "dwd_hash": "1160e657ee1912714a41dce5b80bddc2" + }, + { + "store_goods_sale_id": 2883856965274757, + "ods_hash": "c3273833abda5351077d27d6e1d4341d", + "dwd_hash": "917b8d16ac8ee609972d60141952e2c3" + }, + { + "store_goods_sale_id": 2883856965291141, + "ods_hash": "584c7d1a3ac154f5f013df1c04415934", + "dwd_hash": "463482d525813f30915dcc169e899ef8" + }, + { + "store_goods_sale_id": 2883856965291142, + "ods_hash": "ef750e65cd14c02c528cc15bbc8b15d0", + "dwd_hash": "938e9d8073e5d660abeb5f52636d4c57" + }, + { + "store_goods_sale_id": 2883924157975877, + "ods_hash": "75b1d10570a40b392f860bd3ab2a930b", + "dwd_hash": "2958e3d456da9c8d5aa944afe79a8e99" + }, + { + "store_goods_sale_id": 2883925553204741, + "ods_hash": "6cc412c799dd4667fb0fbb06f1a64b41", + "dwd_hash": "5306e942404138ad75da2291d1097823" + }, + { + "store_goods_sale_id": 2883925553204742, + "ods_hash": "e10985368e8c75255284de033aa2cdf1", + "dwd_hash": "b29413f78b1e3ae09269c812d778289b" + }, + { + "store_goods_sale_id": 2883925553221125, + "ods_hash": "b5a448d0fada4358be7881d03b73ed1b", + "dwd_hash": "bb0a16bc75665255f6f59971c28429e8" + }, + { + "store_goods_sale_id": 2883925553237509, + "ods_hash": "a68931864e24dba44dd01997c60a1c8b", + "dwd_hash": "705efd4eed87345570f5da9ea0de50e7" + }, + { + "store_goods_sale_id": 2883925553237510, + "ods_hash": "86897dbec65405fe8b786f7e270fb766", + "dwd_hash": "9035e526a4549a35c047f7de7a122ab2" + }, + { + "store_goods_sale_id": 2883925553253893, + "ods_hash": "211e6850ad3cbc00155def5c8ab0fbde", + "dwd_hash": "90c339157e60e57c4899339ff3c99109" + }, + { + "store_goods_sale_id": 2883925553270277, + "ods_hash": "72b25698330fdc84960e4f22884feea9", + "dwd_hash": "02f4ad7d0a5ed0c52b6e42a92878c49c" + }, + { + "store_goods_sale_id": 2883925553270278, + "ods_hash": "6c80b802caf401b58807876d66426e2c", + "dwd_hash": "c5724a5eb045f3c535a3fc19f077b776" + }, + { + "store_goods_sale_id": 2883925553286661, + "ods_hash": "bf255a3e7d53ba761f6e7873a35ed935", + "dwd_hash": "663199a7b6903dba7927d62842c6f201" + }, + { + "store_goods_sale_id": 2883952992161221, + "ods_hash": "4b03de7c8f1ee9aa1a74181aaf9d400a", + "dwd_hash": "db372dc18ad8d2da3aa5aa6e1c859c95" + }, + { + "store_goods_sale_id": 2884028546698693, + "ods_hash": "7018f987e18bcd5c1b78c20e9bf22f56", + "dwd_hash": "167821c747f2cb0b403bb994c46041f9" + }, + { + "store_goods_sale_id": 2884028546715077, + "ods_hash": "81575dc7f561cf3b5d0f605b1901c6ac", + "dwd_hash": "fab2ffce0dbb1de7be22da44f5186b96" + }, + { + "store_goods_sale_id": 2884035528134021, + "ods_hash": "af919ba5ff0e4112a4dd5e4e2aa3dfb8", + "dwd_hash": "4c5cbf148fa99ba2cf8710aa517a0ae5" + }, + { + "store_goods_sale_id": 2884035528134022, + "ods_hash": "d08ef32d2f49c27caeb8090a0486a07b", + "dwd_hash": "4b5b8a78b6e104ffae84a4d63fe76aad" + }, + { + "store_goods_sale_id": 2884035528150405, + "ods_hash": "31165ae7133ba2cea89179aad9745427", + "dwd_hash": "38d4b6e87b087278da88008ce7721c23" + }, + { + "store_goods_sale_id": 2884035528166789, + "ods_hash": "a7675b58bd639867e7f0dbd7e62dba32", + "dwd_hash": "b49f87851e9d273e582c5829df90bcec" + }, + { + "store_goods_sale_id": 2884035528166790, + "ods_hash": "23fc156783e0b243e62430ed4eb03d08", + "dwd_hash": "98a291a4e927cd2de76450eceb9b1b28" + }, + { + "store_goods_sale_id": 2884035528183173, + "ods_hash": "5a3022c5a1dda76f44cdde8d015a6506", + "dwd_hash": "b31e11cc410b23a32740a295ccd90631" + }, + { + "store_goods_sale_id": 2884073991015749, + "ods_hash": "8df8368b42997814a1825e522255fa81", + "dwd_hash": "da501c4fac916f0d858dd16e1ea43225" + }, + { + "store_goods_sale_id": 2884078411140549, + "ods_hash": "cb7a3624485a4fdd2af2b4d9cbdee70f", + "dwd_hash": "ce37fca008859a723cf90392d1a8a695" + }, + { + "store_goods_sale_id": 2884084162399621, + "ods_hash": "754128a8da0760f1fc329ea73ac52c10", + "dwd_hash": "ca6c85e9645964a16e67a5a5a60a1eb7" + }, + { + "store_goods_sale_id": 2884084162416005, + "ods_hash": "bff7f382b16a21304be0a97db123f4ca", + "dwd_hash": "fa5d96a8dc210dd18ab744bd492378f8" + }, + { + "store_goods_sale_id": 2884084162416006, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432389, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162432390, + "ods_hash": "878db418743f1aca6c41c4335e70f905", + "dwd_hash": "81cc68194a08a153698f81e87c5023d6" + }, + { + "store_goods_sale_id": 2884084162448773, + "ods_hash": "70b158141c0619a54c1c13acfa9d2d48", + "dwd_hash": "6b449cd166371bfb45866fa259df2e61" + }, + { + "store_goods_sale_id": 2884098831977797, + "ods_hash": "c7b7ba710418e7941da40f9ce2f66fd6", + "dwd_hash": "5f204ece2bbc12c5781dbe6c5fd78753" + }, + { + "store_goods_sale_id": 2884102524636549, + "ods_hash": "9c33cde00e86e171831deee4cf68461c", + "dwd_hash": "4a06c420add98d40fdaa2dae9b1a8248" + }, + { + "store_goods_sale_id": 2884102524652933, + "ods_hash": "1bc93482f3f018b6ea14580d88fd0112", + "dwd_hash": "12331a59520c8db205dd4f5d965836fb" + }, + { + "store_goods_sale_id": 2884102890245445, + "ods_hash": "fde5c30494e2da3f7e17054d48a0f0ee", + "dwd_hash": "9db910f3ba8141084dfe40e8d909ebc8" + }, + { + "store_goods_sale_id": 2884102890245446, + "ods_hash": "1a0ac5832c8b012fff1f9ff845aeef5f", + "dwd_hash": "3d3b9d08393e5e07d10ebafeda6aa598" + }, + { + "store_goods_sale_id": 2884133675044165, + "ods_hash": "be361bca6dff3f43aec6b2675253f9e3", + "dwd_hash": "b4c32c2c3398bbdaf6fa3d1a11229fab" + }, + { + "store_goods_sale_id": 2884133675044166, + "ods_hash": "d52d925c896fca712697acd73f593e44", + "dwd_hash": "3c94ba7089bca3a231447d834e44efbb" + }, + { + "store_goods_sale_id": 2884144797764997, + "ods_hash": "e8656e1b065de3f00822779934c12d3b", + "dwd_hash": "f39fe3f945d77878009a89c7c6381f56" + }, + { + "store_goods_sale_id": 2884144797781381, + "ods_hash": "3c17f17227601424eed5b14e5c87af2c", + "dwd_hash": "9c7a3945f74793135b2be1b77e12e257" + }, + { + "store_goods_sale_id": 2884144797781382, + "ods_hash": "661b0c51cb67b13f44f7f3cf3194509e", + "dwd_hash": "aa7723e85083b6be4526203a98cb56d1" + }, + { + "store_goods_sale_id": 2884144797797765, + "ods_hash": "f7b12d5d10ed0f1003e5753d0f70b3e6", + "dwd_hash": "b80167dcb9346eb517561e795802f1ba" + }, + { + "store_goods_sale_id": 2884144797797766, + "ods_hash": "f7b12d5d10ed0f1003e5753d0f70b3e6", + "dwd_hash": "b80167dcb9346eb517561e795802f1ba" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 654, + "ods": 654, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 781.44, + "ods_sum": 781.44, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 192541.75, + "ods_sum": 192541.75, + "diff": 0.0 + } + ], + "mismatch": 654, + "mismatch_samples": [ + { + "assistant_service_id": 2883857218604037, + "ods_hash": "d26a532bfb9c327e3f4ac97f41380ef5", + "dwd_hash": "396cd43c0a4d774a8a782c20e8fda66b" + }, + { + "assistant_service_id": 2883967682317701, + "ods_hash": "9def797dc289e17f5039f2d585bb394d", + "dwd_hash": "957f9a705b8eccce80a52c57af4fe884" + }, + { + "assistant_service_id": 2884112822701445, + "ods_hash": "a1a0b49f0ef316687460de0b4334742c", + "dwd_hash": "ea833b3b513415f97c7ca98d3de2a762" + }, + { + "assistant_service_id": 2884113768484357, + "ods_hash": "2704526d1f560e95279096d3d85b58b6", + "dwd_hash": "75cc09bd6782db5e0d2058366d985327" + }, + { + "assistant_service_id": 2884278030765445, + "ods_hash": "f7c94496409c43c2f5b9e508c12eccac", + "dwd_hash": "cd10b3103ad55ccb8469df38f34ab4fe" + }, + { + "assistant_service_id": 2884299272243205, + "ods_hash": "3ad9d0e8d07220b43595b2774c9cec05", + "dwd_hash": "e33acfecefd734b405c5893de801c0c2" + }, + { + "assistant_service_id": 2884369534961733, + "ods_hash": "dd0bf2b777a37712928b9e0701a31c25", + "dwd_hash": "73bf81ce305e2b1d9937f57cc952a7b9" + }, + { + "assistant_service_id": 2884406405122117, + "ods_hash": "6fdcb0bb6a237c2c1040bab7f2b82ffe", + "dwd_hash": "362edb6447740aee95d1314ae8013710" + }, + { + "assistant_service_id": 2884406405400645, + "ods_hash": "22e6fa5bd194d5cb2cbd692aa84b6b71", + "dwd_hash": "e9a8a52adc2da7a47422c57515920e49" + }, + { + "assistant_service_id": 2884406405662789, + "ods_hash": "d0f360c09d526301c7bd4193dafadc77", + "dwd_hash": "0946a10bec0b8097a172d8c93180f631" + }, + { + "assistant_service_id": 2884406405924933, + "ods_hash": "2e17e68e4ab082d11b6a61509b5c95bd", + "dwd_hash": "d91f464711999ee9a0b5729f75cfa867" + }, + { + "assistant_service_id": 2884406406187077, + "ods_hash": "3114efe09a86fe4a1f2f0a6b3a3c6375", + "dwd_hash": "95e6602ca0696eb84073c6cd4cc9b82a" + }, + { + "assistant_service_id": 2884406406449221, + "ods_hash": "e5113f5bde66585fd8c878c1fd292dc3", + "dwd_hash": "fcc1445a6f6dcfd2de343f6ce8f20838" + }, + { + "assistant_service_id": 2884456168458437, + "ods_hash": "e9f22640f66fdf298685dcaa79799504", + "dwd_hash": "5692e01622cc96cc98f114f3fa9de429" + }, + { + "assistant_service_id": 2884458957047813, + "ods_hash": "be957a1d756656caf62552ec764b5c8c", + "dwd_hash": "dac69c2c8e3248a3303392187f500bdc" + }, + { + "assistant_service_id": 2884477325625541, + "ods_hash": "93c4cfcf34c523a8fb8528c72cc06c2b", + "dwd_hash": "61bdde6bcdcbfce840b707cc51ec9cd4" + }, + { + "assistant_service_id": 2885318693456389, + "ods_hash": "4ecff5e77539115d8efe54ef9fff866c", + "dwd_hash": "03bcfbc2ceed85cabc12ba2753334e87" + }, + { + "assistant_service_id": 2885343969364357, + "ods_hash": "1c281c3b08d05de00a2e0d6335c61895", + "dwd_hash": "d752338048b27f6219cb9cc7d930ee3c" + }, + { + "assistant_service_id": 2885384116226437, + "ods_hash": "095ee4b561bd38d57c6e2c88e839d56c", + "dwd_hash": "8cf48092871cc5f87148d4a4dfd4fc60" + }, + { + "assistant_service_id": 2885409492076869, + "ods_hash": "1ab66eab0458896d70b7b55ba92d44a4", + "dwd_hash": "9d445572e168a5be2d8b60e2505477ee" + }, + { + "assistant_service_id": 2885409492388165, + "ods_hash": "ec1420acad43b65be7073c70e2e1fa78", + "dwd_hash": "6bec50742325277c19f5b7ed9568817e" + }, + { + "assistant_service_id": 2885409492732229, + "ods_hash": "576bd882a5da12c9630e655e40d61218", + "dwd_hash": "5cca314b15ddb7b4a11d5d4e9287eeaa" + }, + { + "assistant_service_id": 2885485592906117, + "ods_hash": "3dc3bc09b291bdacd37c3e260fd9f3c4", + "dwd_hash": "d8ee4d04cc5638de108dd0b6851cda60" + }, + { + "assistant_service_id": 2885491390826949, + "ods_hash": "3510b182200a58e9ac296c809a125809", + "dwd_hash": "563a02874c05472ca66f69bc9093efdf" + }, + { + "assistant_service_id": 2885515567352133, + "ods_hash": "9279f808835fab81649df54c097eef81", + "dwd_hash": "4089a7ab4d4512393a090739f777f30f" + }, + { + "assistant_service_id": 2885677653199365, + "ods_hash": "42d3ba27daa505f7eb899cab83b1604a", + "dwd_hash": "5c776d41f3bbf8bd0c79b6064a11968f" + }, + { + "assistant_service_id": 2885710579550533, + "ods_hash": "8e84155306056401d09e9625aaa5a7a3", + "dwd_hash": "9f3fe106520d68d4b179c4f2572e608b" + }, + { + "assistant_service_id": 2885719805823365, + "ods_hash": "50c018838b728b7fb4bb68adc30db739", + "dwd_hash": "4d7d537a6aef797cc01059a7ed98128a" + }, + { + "assistant_service_id": 2885740978555397, + "ods_hash": "751b1d5025244e01c34e450969cca5b6", + "dwd_hash": "2b74156f7b2f9f8f839a80b2df3db9c4" + }, + { + "assistant_service_id": 2885754168068485, + "ods_hash": "d422a9d2ba5d7f4732629ef4e11b1f76", + "dwd_hash": "e272fafccf5bbee367d16f808a5b49c9" + }, + { + "assistant_service_id": 2885813118175557, + "ods_hash": "c47bc0b1879af2992c29095673549eb0", + "dwd_hash": "6fe62c32640f23950d224fa9406eb21f" + }, + { + "assistant_service_id": 2885814037268869, + "ods_hash": "16720386bb0f6b3cf6576e82fe082144", + "dwd_hash": "90f5b40153b0413aa9c122090bac95dd" + }, + { + "assistant_service_id": 2885816260626885, + "ods_hash": "49c9c38f925e132d6c1370f4dbd7679b", + "dwd_hash": "881527a4dc9a398027258a56f2706e6f" + }, + { + "assistant_service_id": 2885816260905413, + "ods_hash": "a5e28e565f615769e7c5833f1f371c6d", + "dwd_hash": "47e47f4d4de11c5dcfffd2c10d95a14d" + }, + { + "assistant_service_id": 2885816261151173, + "ods_hash": "e44105242583f3188e21c66aa524e37b", + "dwd_hash": "1a45cdd68ecdf29dd4e1c85b2021d063" + }, + { + "assistant_service_id": 2885816261462469, + "ods_hash": "ba2a1cfd2d7dd1973f2aa8fb388191d0", + "dwd_hash": "59959ab9a9f17c2e4347c2cdd63ab9df" + }, + { + "assistant_service_id": 2885824614811973, + "ods_hash": "e47fd1904bcb191a2049265e0450eec2", + "dwd_hash": "62236f1d2ede0c1a243e9fe50bcc3b05" + }, + { + "assistant_service_id": 2885877690354117, + "ods_hash": "ea66b348acdbf6a7873c381e27805a3c", + "dwd_hash": "c2daf181af40b00060de8797e5255b70" + }, + { + "assistant_service_id": 2885912249895237, + "ods_hash": "b3aebdd1746f46fab9cb078b1daef4c7", + "dwd_hash": "b76511cd4e0a1c496947b9bd251d92fb" + }, + { + "assistant_service_id": 2885912250173765, + "ods_hash": "7f0f7cf0488a0ad650bb9d548866018e", + "dwd_hash": "dd4921f18273c16e8da748a0b5b01258" + }, + { + "assistant_service_id": 2886025942993221, + "ods_hash": "713fa40a0ad7d9a89f146d13baca726e", + "dwd_hash": "3246f114e4405535e3ffa1d1d9da11fb" + }, + { + "assistant_service_id": 2886025943238981, + "ods_hash": "00973f7c346335ceba7a431125e60da0", + "dwd_hash": "5a66c1b894541dbcde94df3630226368" + }, + { + "assistant_service_id": 2886705296197957, + "ods_hash": "72a29b3cae317ebc24e585371e601565", + "dwd_hash": "82a84fc0e4412647d0ef2d52c710ec5e" + }, + { + "assistant_service_id": 2886719222434181, + "ods_hash": "4dd9b10254ae61ceaaedf03a51b597a5", + "dwd_hash": "72abe14789e064a5f75ca17b7d1cab92" + }, + { + "assistant_service_id": 2886745517099461, + "ods_hash": "2f59d2ebeb0efc4c2a3eba7294a7dc9b", + "dwd_hash": "e4b8e5e208ebef936a8a1937a680e34e" + }, + { + "assistant_service_id": 2886750568909317, + "ods_hash": "50c0c1cc93859b249804ea9be8720c46", + "dwd_hash": "f43e1c678f235e89bf68ef08a5a1dfc0" + }, + { + "assistant_service_id": 2886759545883077, + "ods_hash": "dbf0689b42e53ff64ac3e86ed2981ea1", + "dwd_hash": "19cdac68312eb5e6bda2d3ebecfb4efd" + }, + { + "assistant_service_id": 2886771933120965, + "ods_hash": "985d2fef3e65dc77b498fcc50d0ba1b7", + "dwd_hash": "0048eb0f717f3e56fc62e9490fc6155e" + }, + { + "assistant_service_id": 2886802749753733, + "ods_hash": "ce4146ce2540cf52651984f57b3c725b", + "dwd_hash": "e5fe7f811abbecccf4e8b00e2bf42b44" + }, + { + "assistant_service_id": 2886808312629638, + "ods_hash": "a7098d179ec948f6a47e1ead258db0fc", + "dwd_hash": "0f6ecafaa4ec5ade570f237e3640a04f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1173, + "ods": 1173, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 75824.0, + "ods_sum": 75824.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 73843.08, + "ods_sum": 73843.08, + "diff": 0.0 + } + ], + "mismatch": 1173, + "mismatch_samples": [ + { + "redemption_id": 2884187077463557, + "ods_hash": "3e1bed1092b0cb335de0b75cf4d85df7", + "dwd_hash": "2889adc9d8ac616e1bb93036d54aa3e2" + }, + { + "redemption_id": 2884187077463558, + "ods_hash": "cfd4f371f30e5ed4d9162d57cc62937c", + "dwd_hash": "055c36051db534306ef6dd87b1f5c7e6" + }, + { + "redemption_id": 2884197688184133, + "ods_hash": "7289132d5b2f3f2ccb3f9568c2202134", + "dwd_hash": "dfccbfd2535719d835b0083f6e761867" + }, + { + "redemption_id": 2884199480626693, + "ods_hash": "10eb4413143e1543acc2ff16651053db", + "dwd_hash": "48529e6c0e3bf45f1b0721e84d8471f0" + }, + { + "redemption_id": 2884199480626694, + "ods_hash": "d86183f41461d869fd0f24b76e9f58cb", + "dwd_hash": "ebbe5f20b9e85696f2246636a6d9c4d5" + }, + { + "redemption_id": 2884199528713605, + "ods_hash": "85aa3a8569043a7f304368a4cdc364a6", + "dwd_hash": "7144e6a043ea1b5639ef4abd860c7360" + }, + { + "redemption_id": 2884199528713606, + "ods_hash": "69e69f71fb8725534400cbc1500fe91e", + "dwd_hash": "2d1be72bb18e14ce3e887e5ae584371d" + }, + { + "redemption_id": 2884206911737349, + "ods_hash": "9c9ee2e4a7557ea37be84dd25ecf1fa0", + "dwd_hash": "00fb97e19145fbc0bf36c331afc93ba7" + }, + { + "redemption_id": 2884206979714373, + "ods_hash": "f447fcc11d9e145a363cd0e91a3097e9", + "dwd_hash": "c117d03137fcba3272b790edc2843c26" + }, + { + "redemption_id": 2884206979714374, + "ods_hash": "7cbf36eaa32a379fa21b320ca3455e12", + "dwd_hash": "e230bee69657749fa271cee368a1e28c" + }, + { + "redemption_id": 2884206979714375, + "ods_hash": "d83fc83763e4f76ef171c5353ab4be11", + "dwd_hash": "5f78496d4951c7e7db3571fb2651ff11" + }, + { + "redemption_id": 2884219169476037, + "ods_hash": "8a87c802515387e7f340d4d17e0fb8d8", + "dwd_hash": "a1637cb3e0b6552552f4c918d858d802" + }, + { + "redemption_id": 2884226570210629, + "ods_hash": "7f47199b79598e43d15232a3b537494c", + "dwd_hash": "a0046d712d9ae8ea416c2f434528f7a5" + }, + { + "redemption_id": 2884229270359429, + "ods_hash": "3c07f5abd6eb42457a23967c648ba8f2", + "dwd_hash": "b218394a04a614b3323888f7258ed3d8" + }, + { + "redemption_id": 2884243554782533, + "ods_hash": "3c088aad90e7b25935fbd17bc5ee22de", + "dwd_hash": "c89cc7617480ce127dc0a46dc3f06519" + }, + { + "redemption_id": 2884243554782534, + "ods_hash": "759a5c15349c77f4875a5e53b00d9b39", + "dwd_hash": "d0e30595236d674777d8b5f1364bd9ad" + }, + { + "redemption_id": 2884243669667269, + "ods_hash": "d4cd9d66ce83ff8716d5a8939ffae1be", + "dwd_hash": "fe1572933daed729b8ebe7f67dd40b14" + }, + { + "redemption_id": 2884243721457093, + "ods_hash": "3e9fc2f68d6c78ccfcb80527c7c104d8", + "dwd_hash": "fe11662bca761a77d402888ae1f7325b" + }, + { + "redemption_id": 2884244935642565, + "ods_hash": "e419eb488da16896d221bc5ac2c6b27a", + "dwd_hash": "afb669358853c11e55d0edf8496ddf6c" + }, + { + "redemption_id": 2884271139130821, + "ods_hash": "76184410769d4d60431e646e19482526", + "dwd_hash": "768fb783968fbaa0439d8286f7d30b79" + }, + { + "redemption_id": 2884274545741189, + "ods_hash": "4ba510b155ece1b13cb1f2d5012c645d", + "dwd_hash": "5ae98e3493c33c7d45924a2510e17d78" + }, + { + "redemption_id": 2884276476825093, + "ods_hash": "1b627c39ade9e4d5451c663828db3632", + "dwd_hash": "7976fbe4d4738a8cd4851a37a6c07818" + }, + { + "redemption_id": 2884276476825094, + "ods_hash": "7581ac13b0a3c1b0d46616ff679e9bfc", + "dwd_hash": "787007c3a0b3b4bd63cc1f641dc2a886" + }, + { + "redemption_id": 2884278031224197, + "ods_hash": "69ceb04db6a88c1f8a25075e6373467d", + "dwd_hash": "8ba8e95087c4de34445e9aa0983eadde" + }, + { + "redemption_id": 2884278031224198, + "ods_hash": "ad05799a043202854b8b58ec1c7e5be0", + "dwd_hash": "2ba4aaeb1a0cbf697ed9bf174eb2a028" + }, + { + "redemption_id": 2884281068227973, + "ods_hash": "ea7fd2868b68fc0f224691d4bb88aeaa", + "dwd_hash": "2ee01d55d1c9a773cc2c863ac531ebe9" + }, + { + "redemption_id": 2884281068227974, + "ods_hash": "7905c17f3929e05079f4500df66ae44f", + "dwd_hash": "da31db7c27dfbd00ec5755eb837aa9ea" + }, + { + "redemption_id": 2884285560737157, + "ods_hash": "63e9c3a2b1dc14c6c8e17bbe847b1bda", + "dwd_hash": "5b49e4a1aacc19b9583acb23695853df" + }, + { + "redemption_id": 2884300411160581, + "ods_hash": "d5695a511f7fc83ea2b3aec899f26248", + "dwd_hash": "3cb0de8777a0e4ceb08ee36de72158ef" + }, + { + "redemption_id": 2884300411160582, + "ods_hash": "95fd282345eaa20002f180a7b0d34dad", + "dwd_hash": "3827904e6cf9e8eef1f1f55cfe01a633" + }, + { + "redemption_id": 2884300456626181, + "ods_hash": "c8113b498a6a629ac2586840fc626a57", + "dwd_hash": "bb9cd36d4936670d6f4a6609a1b9e0b4" + }, + { + "redemption_id": 2884300456626182, + "ods_hash": "d8a98b6211e829f183ed09a17d6cdb4e", + "dwd_hash": "1551aa1bf77d451e6c5651b1d907e603" + }, + { + "redemption_id": 2884307504695365, + "ods_hash": "880baadfa285cc5a9fe2958438d26c2b", + "dwd_hash": "b6c140a50fee34adaf4d48d805d9f128" + }, + { + "redemption_id": 2884312289970181, + "ods_hash": "e98e06e7fc5b9c4c5f2ebad8c5fb9d7e", + "dwd_hash": "817e442d40a5bf04f84341f444e72e9c" + }, + { + "redemption_id": 2884319992858629, + "ods_hash": "61f6eda96fa8d0ac4520d6f2ff848858", + "dwd_hash": "450f09af1e00ecb1b2626ae8821cd328" + }, + { + "redemption_id": 2884329765292101, + "ods_hash": "904016c52157f3ede87306c9fa949d46", + "dwd_hash": "51dfa0dae3651b361eb4bd20cff8e8e5" + }, + { + "redemption_id": 2884337465018501, + "ods_hash": "6772e5c2adcf9bffa6441d87c25b8242", + "dwd_hash": "3fca2ce68b7e1387ac9bc39032026fad" + }, + { + "redemption_id": 2884342737963077, + "ods_hash": "bacb9655a2653fd1c55ec602cae459d6", + "dwd_hash": "0e624e60a76d5024e12ee5526389bf17" + }, + { + "redemption_id": 2884342737963078, + "ods_hash": "712e3870fc728d18f7fab4887aa13c02", + "dwd_hash": "d300461eaa4ff13cfc59f5678f1ee6e0" + }, + { + "redemption_id": 2884346452838533, + "ods_hash": "e94ab9b0e02590b972b85db1338652a2", + "dwd_hash": "f46056e8f299e64295ebeaf975d593d0" + }, + { + "redemption_id": 2884363463739525, + "ods_hash": "13ca1d333e4d5864b8b4d825ce203f4d", + "dwd_hash": "2ef9b845c5d7185297ff15c7513d3f4d" + }, + { + "redemption_id": 2884363463739526, + "ods_hash": "965cccd9cdd14eafe49ae0639837fcdb", + "dwd_hash": "0500a19944023ce525cc259689926ea6" + }, + { + "redemption_id": 2884363463739527, + "ods_hash": "a42abdb2b264d4463823470fa3ebd9a4", + "dwd_hash": "d327b5aae78d2fbe6a86c04c40162421" + }, + { + "redemption_id": 2884369535420485, + "ods_hash": "3725eb7d66cab70f3264ce3f0bf8886b", + "dwd_hash": "011dc2118d470f6de034d04bc2a04545" + }, + { + "redemption_id": 2884369535420486, + "ods_hash": "d3568fdb8955c9234865b4d26d3dc9d0", + "dwd_hash": "89ab2766a94cbab8026842d8ee854a4f" + }, + { + "redemption_id": 2884402340333765, + "ods_hash": "4117f35046f4f3ec6932259e1f0bf593", + "dwd_hash": "28afb3201f6747f201a718e68b679101" + }, + { + "redemption_id": 2884406816966725, + "ods_hash": "8dcbbf39fb06dba80e9aced892700677", + "dwd_hash": "bc29184ea724a7b2c9086cfeed6b1e08" + }, + { + "redemption_id": 2884406816966726, + "ods_hash": "7d93bb475c6c3b6acc0252eba4fd603f", + "dwd_hash": "db3612d425ad6311af853606b5def220" + }, + { + "redemption_id": 2884431381989381, + "ods_hash": "482f766bab7567b34a042f74840069a2", + "dwd_hash": "fa50bc31dcd41d7947740c507d27b14e" + }, + { + "redemption_id": 2884431381989382, + "ods_hash": "9e5b21fff6c23745d6b6ccacf13c4678", + "dwd_hash": "b92e31a7de1225e6290875bba6d94cdc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2849, + "ods": 2849, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 184722.0, + "ods_sum": 184722.0, + "diff": 0.0 + } + ], + "mismatch": 2849, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2858900465764101, + "ods_hash": "d555647afea36b1045bc43b3ccc7d6f7", + "dwd_hash": "2d758521312690898acce8bdfd25d170" + }, + { + "platform_coupon_redemption_id": 2858902528526085, + "ods_hash": "d8ace7028679afbe461f0973f26fe57c", + "dwd_hash": "64b0368be845eab6fbc57643fce33374" + }, + { + "platform_coupon_redemption_id": 2858905827919557, + "ods_hash": "bf8e469b41ca3f40043e214df01aeea6", + "dwd_hash": "a87d128a0794b2cd9c2c5b1a82a9c534" + }, + { + "platform_coupon_redemption_id": 2859637215972485, + "ods_hash": "4f32056c11e10fbcbd72a0663c55c0a7", + "dwd_hash": "40db5725164b8f81cb5aad9737f61eaf" + }, + { + "platform_coupon_redemption_id": 2859655212764293, + "ods_hash": "735efffa0ff2fd1bdd7fd725393db6e9", + "dwd_hash": "e7fb277498dee35d7523315612342ab3" + }, + { + "platform_coupon_redemption_id": 2859688383368325, + "ods_hash": "184203ec8995c558a8027f879b9139d3", + "dwd_hash": "f85e5feaf45c6ad06252ef1197c3b1c3" + }, + { + "platform_coupon_redemption_id": 2859741772532933, + "ods_hash": "8a796e30769df7ad1e9968e6bff7da04", + "dwd_hash": "fddc65abfb0a151f9339322c42e219e3" + }, + { + "platform_coupon_redemption_id": 2859741894511813, + "ods_hash": "f03c962a56e7ac2af3abb46c2a053ddb", + "dwd_hash": "98151bd5840e7b53e413b1ff4658eecc" + }, + { + "platform_coupon_redemption_id": 2859771195280453, + "ods_hash": "ab7417ab9e058402d961012bba7f1cbb", + "dwd_hash": "09d3f39fd51730130d87fee7c485021e" + }, + { + "platform_coupon_redemption_id": 2859778292075653, + "ods_hash": "4c681f914d10da481a18c0275db1d068", + "dwd_hash": "2eff2af48e5c5e5fc36aa0ddea2ce1a7" + }, + { + "platform_coupon_redemption_id": 2859807207804421, + "ods_hash": "8a095d41183919964ab7d27cbd12ef34", + "dwd_hash": "cceb4e6c14629cd8b38111c09dcd1518" + }, + { + "platform_coupon_redemption_id": 2859807207804422, + "ods_hash": "e692877ace6c3f8ec2a94258e003baf0", + "dwd_hash": "d42e275d306448c6c1275fe4488d2200" + }, + { + "platform_coupon_redemption_id": 2859811957050437, + "ods_hash": "d74013e55a936ebabbf64719fd4bad7c", + "dwd_hash": "cb4941bbea5198477d5d6d9ba718d0af" + }, + { + "platform_coupon_redemption_id": 2859842889370821, + "ods_hash": "434deb48c705ee2f2559de0e15bd1c9e", + "dwd_hash": "464494f5421bde6666651db2fb01c0cd" + }, + { + "platform_coupon_redemption_id": 2859850500115525, + "ods_hash": "a22473680ff5f5e8f8180135d9eede64", + "dwd_hash": "50361ee1335dff3226b9469a25fad668" + }, + { + "platform_coupon_redemption_id": 2859853566774341, + "ods_hash": "14d1dcc581f41d8621699254662f4d4b", + "dwd_hash": "29b6f300ef63640ed78674b52b214689" + }, + { + "platform_coupon_redemption_id": 2859855025409541, + "ods_hash": "fbfb1b8f3627e182b61359b6547cc467", + "dwd_hash": "01fee07409afbfda1c7777ecae5efee3" + }, + { + "platform_coupon_redemption_id": 2859861867760837, + "ods_hash": "a14f860bd15257bb9aa7399531279bee", + "dwd_hash": "711fd50819c612eb13d8c01599179f3d" + }, + { + "platform_coupon_redemption_id": 2859879443746309, + "ods_hash": "034a57fc03970e95edf48e63dc62bcbe", + "dwd_hash": "94ad6a9a23b2275dffdddce0f1c475a4" + }, + { + "platform_coupon_redemption_id": 2859898180799685, + "ods_hash": "a6c5e23132b504656aa2301d463f19ba", + "dwd_hash": "4f0a46dbafe5a6772f05aae2274bd2fd" + }, + { + "platform_coupon_redemption_id": 2859920996765189, + "ods_hash": "c5935d7b396ab312f4bffc6703b32cb7", + "dwd_hash": "ff6216230529882b0da5a370a3a8078c" + }, + { + "platform_coupon_redemption_id": 2859922909432901, + "ods_hash": "4dc19a0ea7c41978b63b4fdb99537ee4", + "dwd_hash": "b5b8ce8814d6a62b1531df8a2ee685c2" + }, + { + "platform_coupon_redemption_id": 2859946841754757, + "ods_hash": "d6bde963982c9b9010768576c29ab37c", + "dwd_hash": "c9396b60aeb789f551495fc3ba30dea3" + }, + { + "platform_coupon_redemption_id": 2859959157771333, + "ods_hash": "14452109227517616e49aeb334de619d", + "dwd_hash": "558e0ab9c372e589a5557c1a0ba91ddd" + }, + { + "platform_coupon_redemption_id": 2859964348763333, + "ods_hash": "c19024172f8816cd32b2515e15d6fa16", + "dwd_hash": "139c9dd3066f49b23b77aa1c8d3b9a1c" + }, + { + "platform_coupon_redemption_id": 2859978577710149, + "ods_hash": "1a697cde03c97a8645a111b866f5f2a8", + "dwd_hash": "69f334db9e2f60d469f998752ae43873" + }, + { + "platform_coupon_redemption_id": 2859981422775365, + "ods_hash": "4a9f3ee5b60ed38305159279ee7a24b5", + "dwd_hash": "45e242ff6e1a23ed5e896207878355f0" + }, + { + "platform_coupon_redemption_id": 2859989505625285, + "ods_hash": "f09877961b68117702d6383e48956b27", + "dwd_hash": "4ea5c5e90ffec70b5f9766ec148fc3b3" + }, + { + "platform_coupon_redemption_id": 2859999214816389, + "ods_hash": "9b5476bea591a00ac0444f474f1018e2", + "dwd_hash": "ca043ffcc6fa47cfc786356594e9d552" + }, + { + "platform_coupon_redemption_id": 2860002674592965, + "ods_hash": "4731c915f4ccd5b08b3500e9341f51b0", + "dwd_hash": "d8cf49c5b4f423a05dd0cb0aea650ce4" + }, + { + "platform_coupon_redemption_id": 2860014098402373, + "ods_hash": "192ab9bd1e390a9e3d9b20817bc5367b", + "dwd_hash": "e959479a2d64cc71cf68aab8c7709f41" + }, + { + "platform_coupon_redemption_id": 2860014268681349, + "ods_hash": "7fdf46fa401690b2da85c5a692f84fe6", + "dwd_hash": "e2d11054e5de96d5e624cead751a5caa" + }, + { + "platform_coupon_redemption_id": 2860018764319941, + "ods_hash": "c2501354329cee675f5455a2d94fded6", + "dwd_hash": "c7875e9bce6460ee6b0c398b9cda89a6" + }, + { + "platform_coupon_redemption_id": 2860024155819141, + "ods_hash": "aa8079ce3300aeac185edb2d2c1e99a8", + "dwd_hash": "46f592e265005a476441886fe9a2aeda" + }, + { + "platform_coupon_redemption_id": 2860029915352197, + "ods_hash": "2c7db6cea4dba60190f3715a64355912", + "dwd_hash": "1970245ebb1c5f2c1e5688f83b689866" + }, + { + "platform_coupon_redemption_id": 2860042074574021, + "ods_hash": "2864d4087d74073726c00b87f58e0cab", + "dwd_hash": "466799966511952b387fbd770738fdb4" + }, + { + "platform_coupon_redemption_id": 2860058566053061, + "ods_hash": "4eebac273dc9ec57b9812990bf36e6e3", + "dwd_hash": "45ea7927dea6eeac77bbfc16bb7e64f5" + }, + { + "platform_coupon_redemption_id": 2860058705628677, + "ods_hash": "c6b8ccf03331ed6ef8597d9174e0c2b4", + "dwd_hash": "07899e3cf3bf59de51ad577a3a6d808e" + }, + { + "platform_coupon_redemption_id": 2860060060929157, + "ods_hash": "8b4925546789553df80f9977aa16c7be", + "dwd_hash": "8c133122aa8d18378b3c6cea74c0cb06" + }, + { + "platform_coupon_redemption_id": 2860065915669637, + "ods_hash": "1857f033be553f05b09fe508bcb4cfa9", + "dwd_hash": "2bd7b0c300f84121c0c1529e30247b2b" + }, + { + "platform_coupon_redemption_id": 2860071105891397, + "ods_hash": "d0d2e7a4b508af5dd7a09de517afe966", + "dwd_hash": "e7346a284e6c1e45b6176aa8a18b5e53" + }, + { + "platform_coupon_redemption_id": 2860076217486405, + "ods_hash": "e35bc228c7e3f510779be6fad292f9ea", + "dwd_hash": "9694ccbc45b92db21a68eff90bebf088" + }, + { + "platform_coupon_redemption_id": 2860080730885317, + "ods_hash": "017e2f1df29fffc2f3fe13254724b753", + "dwd_hash": "0286c0e1856de4230f89e9290bc47b67" + }, + { + "platform_coupon_redemption_id": 2860083772001797, + "ods_hash": "e4752b06d19a0577ad3ae046977089fd", + "dwd_hash": "c3e6d01a6103bf791598d984c446f995" + }, + { + "platform_coupon_redemption_id": 2860105864302085, + "ods_hash": "31ea606c2b3901317f291ca97da40951", + "dwd_hash": "1331bc5d89e64b0abe096d757a153d56" + }, + { + "platform_coupon_redemption_id": 2860106446048389, + "ods_hash": "be76a73a2658631eecbdbdd77b2ba3ef", + "dwd_hash": "8519c81bed346e8d58ad4c373e62ee8e" + }, + { + "platform_coupon_redemption_id": 2860108627217605, + "ods_hash": "81cc07ace8897f6c1f9dc39df46c6eb3", + "dwd_hash": "2c85c073e1a12234a1792a9b2784488b" + }, + { + "platform_coupon_redemption_id": 2860108627217606, + "ods_hash": "9f5add8b31a19413605013cd0f178578", + "dwd_hash": "522ff74c628291719d27e3f74995cef9" + }, + { + "platform_coupon_redemption_id": 2860108627217607, + "ods_hash": "476a0484f8479af9699a532cd4e4ec38", + "dwd_hash": "a8202a4cb5db90da17f2123308c68515" + }, + { + "platform_coupon_redemption_id": 2860109314755781, + "ods_hash": "6c66f77074b0dbe56e98aa8428200803", + "dwd_hash": "0c691f172c57701b8b4836babd23a8c4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 1544, + "ods": 1544, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 108880.0, + "ods_sum": 108880.0, + "diff": 0.0 + } + ], + "mismatch": 1544, + "mismatch_samples": [ + { + "payment_id": 2883719454805061, + "ods_hash": "db29d711a8f52a74b74d3a46fd52fdb7", + "dwd_hash": "bd5089bff6ef546cb5dedf636dab6f63" + }, + { + "payment_id": 2883738005671045, + "ods_hash": "d359776dcf5d7f4a816e8fb8877ec639", + "dwd_hash": "26c43e37075c17147aea9dcba250399a" + }, + { + "payment_id": 2883783935298693, + "ods_hash": "1de35716b5924a913781698a90a487b9", + "dwd_hash": "339c63bf54669a6b8352b90b291ddb6e" + }, + { + "payment_id": 2883842831355013, + "ods_hash": "7d1414973661db64a77f626664f03f16", + "dwd_hash": "8770a499dc0be9ee7bb7f0ac0a60e8a7" + }, + { + "payment_id": 2883856962980997, + "ods_hash": "88829b0d95694a241e3896191465f83f", + "dwd_hash": "a0906b99049194eaf90a10b3779fe9b2" + }, + { + "payment_id": 2883857216539653, + "ods_hash": "ee24d77354fa25876f3c47f4f3d897d1", + "dwd_hash": "758c531ecf8c03fa3067d8f65f268244" + }, + { + "payment_id": 2883913637645765, + "ods_hash": "0425cac0f5e536e25591a0fa9e74d88c", + "dwd_hash": "600ff4af30ceb4f25dad06c1a595a64b" + }, + { + "payment_id": 2883924155026757, + "ods_hash": "6282f091cb30ecd1d7ab5858961f8bdc", + "dwd_hash": "2a8c550a1cd4373a2094efa0516403b4" + }, + { + "payment_id": 2883925550419461, + "ods_hash": "a347176d0ad310f8ce659d9cec4d309a", + "dwd_hash": "78c0a8cbb58a84afa3e29d180fe188ae" + }, + { + "payment_id": 2883936113675653, + "ods_hash": "ff8cfc391b6f9ce7550f40b325f39fcb", + "dwd_hash": "5fdd664a2a6901aeff73093353e2b43a" + }, + { + "payment_id": 2883952989851077, + "ods_hash": "3b36506c0cf4121112db4ed958341502", + "dwd_hash": "f06f68cbecd14149873952dfbea6e487" + }, + { + "payment_id": 2883967678762373, + "ods_hash": "2e1abd7f2b4b88fb966622e8eb26e507", + "dwd_hash": "4ddbc2f570ee07dc3c125274e76f58a6" + }, + { + "payment_id": 2883972311879173, + "ods_hash": "a43553ffbf2f8eb27c082c8fef2b8cae", + "dwd_hash": "dfc8c4c9ff84faed0703b2e9d69d20fd" + }, + { + "payment_id": 2883995917241797, + "ods_hash": "162fcb9526578314738d939aaecb9c7b", + "dwd_hash": "7189485c7a5e5a444abe0a0b571c88b0" + }, + { + "payment_id": 2884028544519621, + "ods_hash": "a36fc70e9086d90db1d7f8e1184937ef", + "dwd_hash": "69a3be0ff298c07f49f70dccc26be2df" + }, + { + "payment_id": 2884035525496197, + "ods_hash": "2422c67fcd46e1ae3c508b2e161dbd6f", + "dwd_hash": "3572341b4659d068cec4ecb3cfa2052c" + }, + { + "payment_id": 2884038340742469, + "ods_hash": "b8e81a15ee4050a1221c5eb1bd32ac23", + "dwd_hash": "3b29b4b8c93af5f8258c3cdfa7c34409" + }, + { + "payment_id": 2884039649119685, + "ods_hash": "1a030c9108af7ee2c049c3ddeaede361", + "dwd_hash": "a06547f1dcf620afbd257f40a9c72e31" + }, + { + "payment_id": 2884073988427077, + "ods_hash": "6d9d4e073db89185ad6aa0bad0c00026", + "dwd_hash": "986cfe082f8d1fc2e6d52988ae9818f8" + }, + { + "payment_id": 2884075077127621, + "ods_hash": "15570acc7df32f8e9478c2caa457fd03", + "dwd_hash": "70531878fcabb9fa43c77aa4e22798ab" + }, + { + "payment_id": 2884078408879557, + "ods_hash": "f98f93992faf261d0ae79b6a537c645c", + "dwd_hash": "b0fcac30acd8a208dd3a1d46b6f1d5ce" + }, + { + "payment_id": 2884084159712645, + "ods_hash": "02ca22b3779fda6c56e17330dc34287a", + "dwd_hash": "c2866394126041ea0c631b9d5590dbe5" + }, + { + "payment_id": 2884084803308997, + "ods_hash": "bbe3302e3bb95eda51d00325e4afb310", + "dwd_hash": "4129397feb281c75ad675a5b7961849d" + }, + { + "payment_id": 2884098829208901, + "ods_hash": "c375e399e2680b407cdac4b0600df1e0", + "dwd_hash": "7dc32dd8e84fcc2a5ede4802d7627e39" + }, + { + "payment_id": 2884102521851269, + "ods_hash": "29c5ed749b8c8d1d7a137603df39a3e1", + "dwd_hash": "9976e6c99b169a2ee830be83177be3e6" + }, + { + "payment_id": 2884102886477125, + "ods_hash": "5767a133de8f2b33956bc331b58ffc53", + "dwd_hash": "a374b2ca40b6bb72fe69e7dee7f54602" + }, + { + "payment_id": 2884112819178885, + "ods_hash": "709f76d3291eb749f0075c61594e88c9", + "dwd_hash": "5b015a813c32a1d33decee333cb61426" + }, + { + "payment_id": 2884113765338629, + "ods_hash": "826426c17e9abf441469069380d92872", + "dwd_hash": "56d544d7ce03738d063ac7a63d2eae59" + }, + { + "payment_id": 2884133672586565, + "ods_hash": "6c5e7164a4b75ad1ee6435d9dcf8705f", + "dwd_hash": "7d9e3a8cb2bcb49df18615eab572d69a" + }, + { + "payment_id": 2884134137826629, + "ods_hash": "9fac04f5a4dafe20f1cd40702abf4858", + "dwd_hash": "905d5b3e8bad8571a50efa6377e862ad" + }, + { + "payment_id": 2884144795454853, + "ods_hash": "81668fb7f0ab54c123c52337f36ac4d9", + "dwd_hash": "68ec003b76a0f3517689886902fe21e4" + }, + { + "payment_id": 2884146731175429, + "ods_hash": "aba6964ceef015c01153e5722ed917d9", + "dwd_hash": "646501374ae915b90ca0e0b5de6bd53f" + }, + { + "payment_id": 2884146915184069, + "ods_hash": "e80384fb6c10bb14f3980cf1846c9b7b", + "dwd_hash": "3cec4b56f5e91d5d7cbf9ca569ebd36f" + }, + { + "payment_id": 2884155505954245, + "ods_hash": "07709b5877a814f2f1aba2e10077a685", + "dwd_hash": "e6bdd9726e08455a53f7584b5e106504" + }, + { + "payment_id": 2884159165369733, + "ods_hash": "34b1b7af2a6dd4e96452719c25acbb67", + "dwd_hash": "eee3740851cd35d497e9ebf3019512f1" + }, + { + "payment_id": 2884166277008773, + "ods_hash": "0aec5901c1f895220105ab5ea8467205", + "dwd_hash": "478994c4c3e5db4adffc5b2cc6c659af" + }, + { + "payment_id": 2884167220923717, + "ods_hash": "2a5a6d2afdc6ab21fb5d3da852df3102", + "dwd_hash": "ee69ec3e778275b053cd26fdf7b70e9e" + }, + { + "payment_id": 2884169187347973, + "ods_hash": "656caadf404f38959f30d1febf4809bb", + "dwd_hash": "4e91e051ed961d61e88a1945b50e08c9" + }, + { + "payment_id": 2884176829632005, + "ods_hash": "b9c71bab2a4c5c809efdd44d8fcad056", + "dwd_hash": "b7ace515731e2dd1a8ebcc9eb31fa043" + }, + { + "payment_id": 2884182420262278, + "ods_hash": "3a8cd03afae7435ab318dbbd8ac114ae", + "dwd_hash": "e35a56cd4d14548c20cb15be6ef78f10" + }, + { + "payment_id": 2884183891086661, + "ods_hash": "879972fdef940d60bc5e0f3370fde784", + "dwd_hash": "4fb2e2ea5bfbd084e57e1004ec4d3a78" + }, + { + "payment_id": 2884187074792965, + "ods_hash": "65310fbe3009e55d22f228198bae4026", + "dwd_hash": "839e76b29d15b7ac2fdb6dd67376048c" + }, + { + "payment_id": 2884188922285573, + "ods_hash": "c3520766e8cfe513156c0603160c6e97", + "dwd_hash": "4330b71d9ff375184cb4a28e4e21d181" + }, + { + "payment_id": 2884192648351237, + "ods_hash": "68020e75de25ee8db54efbb2b3e17c14", + "dwd_hash": "7cc82b1d30fb241215dd1f9e0d7324ac" + }, + { + "payment_id": 2884197685284165, + "ods_hash": "ff0e8405f850d6e6249c60e5285bc1b4", + "dwd_hash": "5dba2135c1b27c545547c2b7ee92ffcd" + }, + { + "payment_id": 2884199477906949, + "ods_hash": "0bfbba25d94537c8f2fd9527b1b32136", + "dwd_hash": "7006c06ebe5017cfd9555cc720c64e15" + }, + { + "payment_id": 2884199525830021, + "ods_hash": "f32fff56832782d63960e6a3824dc53b", + "dwd_hash": "89e44ef5850f547114c9dd81b8dfedad" + }, + { + "payment_id": 2884203093233029, + "ods_hash": "5dc3f47209626bfcdc82a497e45696c9", + "dwd_hash": "2ca54fc1186b7c1fd1bb6b354ec1c262" + }, + { + "payment_id": 2884206904872453, + "ods_hash": "d91e2d99f008dd4ad5d11c7ec01d136c", + "dwd_hash": "88e4b1e3cc2bebfa293df4179332a37d" + }, + { + "payment_id": 2884206976929093, + "ods_hash": "fa8a962ce21f666d0ebd0cff9cccf7e6", + "dwd_hash": "e53bca2bbb5f732fffdde576feacb1ed" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -1011.0, + "ods_sum": -1011.0, + "diff": 0.0 + } + ], + "mismatch": 3, + "mismatch_samples": [ + { + "refund_id": 2888536816749061, + "ods_hash": "42bf1b2cfa887a2a3127972f5239bcd9", + "dwd_hash": "0c91f6a3bae79a3b0d918597656ba9e8" + }, + { + "refund_id": 2899369734589381, + "ods_hash": "20ce8d2b0dbf784e6d2aafbc214e13a7", + "dwd_hash": "7236d2105c6dabb6e56e65529e8834fc" + }, + { + "refund_id": 2899644006468997, + "ods_hash": "5156e649547c0ae59cd1086b43e0b4fd", + "dwd_hash": "33e330550ad04f069a282c8eb3dee6a5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -21547, + "total_mismatch": 45218 + }, + "generated_at": "2026-01-31T23:43:10.154740+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "label": "segment_5", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-10-01T00:00:00+08:00", + "end": "2025-11-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 203, + "records_with_pk": 203, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10206, + "records_with_pk": 10206, + "missing": 10, + "missing_samples": [ + { + "id": 3075420149368197 + }, + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 41, + "records_with_pk": 41, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12033, + "records_with_pk": 12033, + "missing": 11, + "missing_samples": [ + { + "id": 3075420146779525 + }, + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17373, + "records_with_pk": 17373, + "missing": 3, + "missing_samples": [ + { + "id": 3075423568774789 + }, + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 5, + "records_with_pk": 5, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8322, + "records_with_pk": 8322, + "missing": 6, + "missing_samples": [ + { + "id": 3075420149908869 + }, + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "60e84962f5d8a7e93f55af03269c61bd2317146977b1701b1a04aa3008fa24aa" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "ac1ce737fb9fff85a07a38bc1c246afb417bea26315968fb609d041f52dedf75" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "ca5dfc011c68c0d4f3151c9e032bfbba0a86bf63f816438dcd053658f8a48cef" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 332, + "records_with_pk": 332, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "f092dbbfb3ed41a453adfa95b0a12eb7e3f63aa951fcc5e842298ce91f1580d7" + }, + { + "id": 2793001695301765, + "content_hash": "039bd517ab858d9c60edcf816d13729290159a5c8aceda884fa7f44fccf283f0" + }, + { + "id": 2793002509209733, + "content_hash": "f7731ae70c2594663305a4bbe70fea0a93193446d1584fb2d0d8dfe04fa16415" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 14, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "15f075c3f81939020b0a8125a246c42d3f353a9f96166debd5d8ee1d5b9e597e" + }, + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180501573, + "content_hash": "286c53279f8817c1250d0b0d83bc6031f925cc5ba398fe15f40c71ad794ff27a" + }, + { + "id": 2793026180993093, + "content_hash": "249436a8e061f9c8b1a9fd071a815693fb5e440517b8bd83876d7ed3020dc546" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 208, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 208, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 31, + "total_mismatch": 43, + "total_errors": 0, + "generated_at": "2026-01-31T23:46:22.273057+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2824, + "diff": -2824 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2907961535433285, + "ods_hash": "6ea9f574114ba2a645cd932eee0a1e26", + "dwd_hash": "91df1f439160252061d45f926e586cc4" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1f18878e80cd304fbc130cd61d8446d0", + "dwd_hash": "060f90abb9bdd7433660333b82a40b00" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "e5e15050ade8138c71b21ea8909e48a3", + "dwd_hash": "da44155aad53981ba9d1ce0c5356462b" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "03a3e92171cc394e6c11f423dc7fcf36", + "dwd_hash": "e09057418aff62ceb89f43c7f4987ff6" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "fd54c885ecac8a12633342a6888472bc", + "dwd_hash": "be1dbfa23fd4dcc648e6d226b45d5890" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 2901526704180613, + "ods_hash": "aca5a9e67beb1017f97adfe6f73be1ad", + "dwd_hash": "041dbfe0fa2d29d37a7b751fff0a5046" + }, + { + "member_id": 2919518015802181, + "ods_hash": "44c68cbb7007c99a597cf49e70271721", + "dwd_hash": "b6a052437c60029e0b289614b598bc2d" + }, + { + "member_id": 2924186553484869, + "ods_hash": "1e846e736d8d0f8665c2e8b701bc9261", + "dwd_hash": "1c54307e62ff44ed6efb4a3435543228" + }, + { + "member_id": 2929237914683013, + "ods_hash": "2599895d90466e12516eccda0a2d9250", + "dwd_hash": "bedd7f571988568a23605da7ebca5540" + }, + { + "member_id": 2929254989743493, + "ods_hash": "acdf38cf5c017f14fb07562b4cda760f", + "dwd_hash": "c6d3bafe4ebb05976976bd027eda5218" + }, + { + "member_id": 2933647801731013, + "ods_hash": "8400169709f39e03d95311c5abab652b", + "dwd_hash": "ee81f6402de8aa7c9dd836821fdad525" + }, + { + "member_id": 2935271033079557, + "ods_hash": "5fc1b355aababc83c31ed123d94f70c5", + "dwd_hash": "a9b1582473d510e716c0a63db37115e3" + }, + { + "member_id": 2938228399917253, + "ods_hash": "99a46f4e7ba9f5bfe3ab88a0040e9e29", + "dwd_hash": "8ead3b3f9a6402ef9838ab268605a02b" + }, + { + "member_id": 2938229628340421, + "ods_hash": "ea2e215a39521ce8ea0b4bb3fb048bac", + "dwd_hash": "e17db344660168f187e1f52e7efcc746" + }, + { + "member_id": 2939339802315269, + "ods_hash": "564d3f1e999fe4939a414ff7fe07ef71", + "dwd_hash": "ab1b39885fadbd0fb3bfa61eabbd1d4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 21, + "ods": 21, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 21, + "mismatch_samples": [ + { + "member_card_id": 2901526704655749, + "ods_hash": "6e13e5e44bf4f76796e7bf54137a783d", + "dwd_hash": "75ebeb0e553dfa2b5c778086db77d679" + }, + { + "member_card_id": 2911305241249157, + "ods_hash": "40837a84eba1e9366f960f4769d28f48", + "dwd_hash": "2b9be7cd27f0ac9959f684727c7f419f" + }, + { + "member_card_id": 2913393474192965, + "ods_hash": "caa950d833c9b7dafc7f57b828cde836", + "dwd_hash": "8ca788765d427e2e5448e12285c39166" + }, + { + "member_card_id": 2915510109228037, + "ods_hash": "66b63bdcc2d270771eeb1ce4efddedfc", + "dwd_hash": "0cc6e2026f86ffe818307f16ab17c268" + }, + { + "member_card_id": 2919518016211781, + "ods_hash": "4339cef63e8877e507e3a7caa2d81463", + "dwd_hash": "6813ab54cfc2000a8e6ed5eca591a096" + }, + { + "member_card_id": 2919519875682053, + "ods_hash": "94a07b5b402dbe32a7c6a4beb5199a90", + "dwd_hash": "d6758dd91322bdd286037f85ba61ad61" + }, + { + "member_card_id": 2922551501882949, + "ods_hash": "dd082469db1e2e5f849dc4948ac9f6b3", + "dwd_hash": "8c188a31d76a686dec76ed68bd8b3916" + }, + { + "member_card_id": 2924186554041925, + "ods_hash": "8155303f91a9c5c6f88e50c4e3cc3848", + "dwd_hash": "727487784a5e5f19a5881f6032f2b4b4" + }, + { + "member_card_id": 2929237915010693, + "ods_hash": "ad1250205648854d9e478952aef9767a", + "dwd_hash": "9d90c4a852196da6c9448ef36761d49d" + }, + { + "member_card_id": 2929239052289797, + "ods_hash": "a8db59fa094c6fc51c37c1d1b218dd78", + "dwd_hash": "3d35a14429fd052738fe09af3a266e8d" + }, + { + "member_card_id": 2929239275980421, + "ods_hash": "6d30967821fdc18dbd1211ae0fb58816", + "dwd_hash": "4f8f87db60d98fad827633674b5c5343" + }, + { + "member_card_id": 2929254990054789, + "ods_hash": "31334a374b571b8683ff91e68abef016", + "dwd_hash": "d83be957e098a228be59432137330f78" + }, + { + "member_card_id": 2929255974028997, + "ods_hash": "d07d11162eba5ca468faa17d86de78f2", + "dwd_hash": "c5729a20b12388daed1bda05a54542d2" + }, + { + "member_card_id": 2933647802009541, + "ods_hash": "f4ca8a4af73f8d5c2266b1097805c128", + "dwd_hash": "a670cc8a442005026a2641af3809d352" + }, + { + "member_card_id": 2935271033390853, + "ods_hash": "4652c80ffc4c3975796219889e7d1161", + "dwd_hash": "ef200b08ec0df31021ff4801b4fb4bbb" + }, + { + "member_card_id": 2935271252707077, + "ods_hash": "5b254655d7dd4fb5e503c1f2a707f4d2", + "dwd_hash": "872ef459eca10507aa08469aace0d160" + }, + { + "member_card_id": 2936491814488453, + "ods_hash": "07d571f682e7c0b53b3e855154e862a4", + "dwd_hash": "f752775a45a2af5c647461ffcc35060c" + }, + { + "member_card_id": 2938228400277701, + "ods_hash": "35d24bb8a540ad7e753750fd55ba37e7", + "dwd_hash": "f4c58572b950cd2e16bc2b7f6ffecd58" + }, + { + "member_card_id": 2938229629700293, + "ods_hash": "2219ee13d7d8cb322097b48dc8af903e", + "dwd_hash": "87826a895180e3af5f49c554c6b807ae" + }, + { + "member_card_id": 2939339802626565, + "ods_hash": "f17d89ad33f04f3a1a0c790c40dbdb89", + "dwd_hash": "c9643925b00384806f53139321a174ac" + }, + { + "member_card_id": 2939340099193989, + "ods_hash": "ae5ab419342c1759f3ee164f7c99ef02", + "dwd_hash": "0337bb3e51f363ab5602e033c6b5c8ad" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "tenant_goods_id": 2906982633310085, + "ods_hash": "425bf96a2b4d4797f0751e712cb48304", + "dwd_hash": "083f84f2d028cccb9e3e4135f1e867c7" + }, + { + "tenant_goods_id": 2915207513196869, + "ods_hash": "497700730975e280e85e63811b75c774", + "dwd_hash": "f3a662d65b095901ffaf76864b382095" + }, + { + "tenant_goods_id": 2919621323754309, + "ods_hash": "f4248bdf2754227b77e657d300704192", + "dwd_hash": "ed0ba64e5d96cdd5b5252f24a4780fe7" + }, + { + "tenant_goods_id": 2920522145123141, + "ods_hash": "1173332f58bdd2102160f8bd0d8a6376", + "dwd_hash": "d7281161800917e06a09ed3f259c1fe9" + }, + { + "tenant_goods_id": 2940641058311237, + "ods_hash": "dd738933f19f3a95da79fc6d7b12ad66", + "dwd_hash": "dc898f579d9a8f923ddf821603e6d50a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 1, + "ods": 1, + "diff": 0 + }, + "amounts": [], + "mismatch": 1, + "mismatch_samples": [ + { + "groupbuy_package_id": 2939215004469573, + "ods_hash": "b4ad6341c78925fd5343b7e3e9c8ec6a", + "dwd_hash": "c9c402c5a89b38a03fa77f8864059b4a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2824, + "ods": 2824, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 40394.85, + "ods_sum": 40394.85, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 310789.49, + "ods_sum": 310789.49, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33315.15, + "ods_sum": 33315.15, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 116393.37, + "ods_sum": 114826.12, + "diff": 1567.25 + } + ], + "mismatch": 2824, + "mismatch_samples": [ + { + "table_fee_log_id": 2901329636068741, + "ods_hash": "24653d9a5caed209228fb291d55f3ab7", + "dwd_hash": "bfc8a4e160f3a99b3fd97bb2d932bb38" + }, + { + "table_fee_log_id": 2901330304994501, + "ods_hash": "b64fc739c121a07e2366052bb00337e3", + "dwd_hash": "0b2b755d9866065e496d1be1ffc6b8ae" + }, + { + "table_fee_log_id": 2901333642955717, + "ods_hash": "9070add4b1698845e3112d8c27cc0f85", + "dwd_hash": "0bef163529fd7cf2b6d6770afec2b385" + }, + { + "table_fee_log_id": 2901341571255301, + "ods_hash": "5fda69a2cfa454c81c113768e7b89f9b", + "dwd_hash": "ad7cd6ed9ba4258165edd9077209d59f" + }, + { + "table_fee_log_id": 2901348568435909, + "ods_hash": "8eac5231d66df54ef252cbdc1c728e27", + "dwd_hash": "f9740389d7bb9e02da87be18fc0889cf" + }, + { + "table_fee_log_id": 2901348568452293, + "ods_hash": "6b141d148599bf3277302c18773e95c7", + "dwd_hash": "dde30b3ee6e83f6f9651fb83edf21a8b" + }, + { + "table_fee_log_id": 2901348568468677, + "ods_hash": "2a19370ff5a52400e26091fca63b9c2e", + "dwd_hash": "3a6240979eaff7844ad805d9ff5c6121" + }, + { + "table_fee_log_id": 2901349057154245, + "ods_hash": "2d506008683ae74f08caa87e363b4acc", + "dwd_hash": "6c2ddf5b76991a186473a6bc308e8bf0" + }, + { + "table_fee_log_id": 2901349057170629, + "ods_hash": "7a98356278e36e696b1c0e1af79a7605", + "dwd_hash": "594dfd25542b78db349d0b988cbb2538" + }, + { + "table_fee_log_id": 2901349432953797, + "ods_hash": "4cd032731db8aa0302eeae681350c86c", + "dwd_hash": "91721b5afa030e1b880e36d93a4cb11a" + }, + { + "table_fee_log_id": 2901349811358725, + "ods_hash": "b9c2bb84dec142bb3b532e5bd56f6c44", + "dwd_hash": "315ee6854a542ea614eac83702b36e32" + }, + { + "table_fee_log_id": 2901350930369925, + "ods_hash": "e8b9eca56934b02939f5d7f909b1ffde", + "dwd_hash": "9ae4a5384c6b1a8f067600f457bf71f5" + }, + { + "table_fee_log_id": 2901350930386309, + "ods_hash": "b0b496302ca39246bcab961646267773", + "dwd_hash": "d0803fe50ff42f50947c821342410c0b" + }, + { + "table_fee_log_id": 2901350930402693, + "ods_hash": "9720ec9add0576fc4f399a46e1b46953", + "dwd_hash": "2198f726a3907588edfcde0ebc06d78a" + }, + { + "table_fee_log_id": 2901351261457349, + "ods_hash": "b17c67bde4a692fb7fe85480aff6bfac", + "dwd_hash": "375c243d97f21d3145f046f729a1fcff" + }, + { + "table_fee_log_id": 2901351578340549, + "ods_hash": "193a3664869705b3fdac288288ff6f4b", + "dwd_hash": "29b58690cb938bb0aa88e4991a9f7a3c" + }, + { + "table_fee_log_id": 2901352975944645, + "ods_hash": "955440ddf4b50db850e751835b5b5ab7", + "dwd_hash": "c2e93e7a2c8d8bc68a93e450048823ae" + }, + { + "table_fee_log_id": 2901354532801477, + "ods_hash": "da284ef0baedecac8c14d232100856df", + "dwd_hash": "2943610a6cefa5719b73b388b898fc2b" + }, + { + "table_fee_log_id": 2901358843087813, + "ods_hash": "e3b1e224b3ee8663e4421d320c7c8cf1", + "dwd_hash": "d1dbf77fd5d2805572002030901dca92" + }, + { + "table_fee_log_id": 2901364622691269, + "ods_hash": "9c32d00f35ac1b7e53ec4559d752a162", + "dwd_hash": "3b49ed8fd230bf47e5d2f9fad64c4aa2" + }, + { + "table_fee_log_id": 2901367869672453, + "ods_hash": "90859b9f0e9f188516acd106f6921c52", + "dwd_hash": "6aa88c324aeed1b23abb64b61b258c42" + }, + { + "table_fee_log_id": 2901368987651077, + "ods_hash": "32ba5eef7d37e42f09b6e5e4cec83c94", + "dwd_hash": "8b585a446fb9b33b540babd17857d953" + }, + { + "table_fee_log_id": 2901376493538693, + "ods_hash": "d5b34dcff3764f494a6f46bafdcf9a3d", + "dwd_hash": "82ee1cd8d197105bac30f38142a211c0" + }, + { + "table_fee_log_id": 2901385079393477, + "ods_hash": "e34e452aca8a21b6d953a78d5a5855dc", + "dwd_hash": "1175fd5df885e76af7788e23f9e3c676" + }, + { + "table_fee_log_id": 2901395066031109, + "ods_hash": "63345efabefc312a6940a4227c024ed5", + "dwd_hash": "5ca588040fdd4e592885a48e811cd875" + }, + { + "table_fee_log_id": 2901423311916037, + "ods_hash": "bd92b9bb4814b2500d7ee4188fd19143", + "dwd_hash": "0b77023a4ba0419404e7aeab39087e75" + }, + { + "table_fee_log_id": 2901423311932421, + "ods_hash": "a0d33159b10f3c518bfc367d5284cb8c", + "dwd_hash": "90685a2d8f3cebbac7c50d7897898c28" + }, + { + "table_fee_log_id": 2901427659050373, + "ods_hash": "1a93d4e3fcfbcd00bf10f3058c7d78b5", + "dwd_hash": "306676ae22c903f3932c8b80742890bf" + }, + { + "table_fee_log_id": 2901440631753669, + "ods_hash": "25c74521f521b129453db50693c5f170", + "dwd_hash": "14bdad86164784f24bcc38f1c3a08204" + }, + { + "table_fee_log_id": 2901471274601413, + "ods_hash": "25d04d40028ba3efa56f9cb932c04c44", + "dwd_hash": "be512b42b83b14ec4aebce2576ad8046" + }, + { + "table_fee_log_id": 2901509433068933, + "ods_hash": "06e05e3c24472a9485e3a8b5d7e30b91", + "dwd_hash": "a151c0a37229fff5977b88c2809e67c1" + }, + { + "table_fee_log_id": 2901592644783301, + "ods_hash": "82bdf8a23ebf31a5d45347d8f5f8d9b5", + "dwd_hash": "bf02a70c0a9462ab7e0a6fb717724cfe" + }, + { + "table_fee_log_id": 2901680241315013, + "ods_hash": "144bd1311f2aeb1cb62ad6086f153964", + "dwd_hash": "a44e956e23eb9df0ec8357acaafe39bb" + }, + { + "table_fee_log_id": 2902138924682437, + "ods_hash": "d8ab5e0de98e96025bf2a51fa1ad2a35", + "dwd_hash": "31d381bc27a4fd67c8ac493751ea4cb0" + }, + { + "table_fee_log_id": 2902155496803269, + "ods_hash": "1e2321f1770daeaad0afec4b8d5fa931", + "dwd_hash": "7e65dac1837057e82b304f7da9b2c3d9" + }, + { + "table_fee_log_id": 2902214881807301, + "ods_hash": "34884300c2ba8867c8603ad672f481c0", + "dwd_hash": "68499db227795a3f754afbab010b1ffa" + }, + { + "table_fee_log_id": 2902215452560773, + "ods_hash": "3ecc8c623b01142f6d9e7655b20a6848", + "dwd_hash": "bbf8fb01c128f7a8d3ead9bfeb55495f" + }, + { + "table_fee_log_id": 2902216724007877, + "ods_hash": "87abb58b2ed2ea9b65fcf000a4fdd19b", + "dwd_hash": "84845ce035bd7d82b0b2b29288ad77e4" + }, + { + "table_fee_log_id": 2902251205512133, + "ods_hash": "4591ad3fee547044c1c869a406f08bae", + "dwd_hash": "21458d5ea08fdf9694e860976c2a5561" + }, + { + "table_fee_log_id": 2902263457451205, + "ods_hash": "e72df00b9c3eb677cc7bb08da005c892", + "dwd_hash": "00a21de9e2ee3f0d852132d32a744ff2" + }, + { + "table_fee_log_id": 2902274872757637, + "ods_hash": "35cdc77c33de9fb1c5ec8705b38f09dc", + "dwd_hash": "9a238200896fdb47af3d2b90316aa8c2" + }, + { + "table_fee_log_id": 2902278578670533, + "ods_hash": "4f6edfbf9bd7343dca8fb85879feb2b1", + "dwd_hash": "161d2df7cfde980291688f49afe82c29" + }, + { + "table_fee_log_id": 2902280718110085, + "ods_hash": "cdb7f61a22bb0069c766354ef2f0702a", + "dwd_hash": "7fce706b8dfb08d51ae27b02433acfd3" + }, + { + "table_fee_log_id": 2902280786873285, + "ods_hash": "e0f44f6adea8bb2714b940d8734d52a9", + "dwd_hash": "8a3ab8302736c4844b26674c8931508e" + }, + { + "table_fee_log_id": 2902280856702149, + "ods_hash": "77266121377a7b29d4618fa18669e3cb", + "dwd_hash": "76adcbd2c38feb5bf83f940d8bfeca07" + }, + { + "table_fee_log_id": 2902285699665285, + "ods_hash": "15bd1281c3c3adcd928936cf2ea42565", + "dwd_hash": "1ac0875f3585df6f4b7bd94272b5e80f" + }, + { + "table_fee_log_id": 2902298297027525, + "ods_hash": "f1a6a35c8164b15a98386cb1371155e9", + "dwd_hash": "3e8d0a214d54f1d2f0278f85d11a1e55" + }, + { + "table_fee_log_id": 2902301531655365, + "ods_hash": "a39d36a189c2c38a8ea1d7c35e9bb01b", + "dwd_hash": "05c9cd25ee53796e8aa6ee21991932c3" + }, + { + "table_fee_log_id": 2902306129120645, + "ods_hash": "0ad2977ab2c771b70c8de4fcbf09dbaa", + "dwd_hash": "c07e6202c5f1532b0a73368cd26df7b6" + }, + { + "table_fee_log_id": 2902315882384581, + "ods_hash": "5dfcefe1cf5d4d4aa6484d8f7d761a63", + "dwd_hash": "afd24877b5bbeb93595250244a8c875f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3475, + "ods": 3475, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1319.49, + "ods_sum": 1319.49, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 66216.8, + "ods_sum": 66216.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 64234.0, + "ods_sum": 64234.0, + "diff": 0.0 + } + ], + "mismatch": 3475, + "mismatch_samples": [ + { + "store_goods_sale_id": 2901329637117317, + "ods_hash": "dadcc183f14e4a03587b8758d8c4f81d", + "dwd_hash": "3a9d42510b39273d867b3391028c3a17" + }, + { + "store_goods_sale_id": 2901329637133701, + "ods_hash": "fc349beb21008caf7766d582b675e9e1", + "dwd_hash": "442d28a2a1c405dcee913a87fb889090" + }, + { + "store_goods_sale_id": 2901329637133702, + "ods_hash": "d168b3d4a618363fc249a0d0f9990086", + "dwd_hash": "becaa131e4f72e374f815d7cb5c33d81" + }, + { + "store_goods_sale_id": 2901330305371333, + "ods_hash": "dd935e5cb8bb22fcd64ef5cca63ccdc7", + "dwd_hash": "14f0ecace53138c84dc89fbad6051fc4" + }, + { + "store_goods_sale_id": 2901330305371334, + "ods_hash": "b6379cbe5723d9fb805813ab7225412f", + "dwd_hash": "b46efb4aadd2f9c30d1b9163e98bab91" + }, + { + "store_goods_sale_id": 2901330305387717, + "ods_hash": "3a22df1d804db1ca134513fe57b9b1de", + "dwd_hash": "cd8475589625c24f44a7549d5d2a3a00" + }, + { + "store_goods_sale_id": 2901330305387718, + "ods_hash": "b723eac7dbffbdfbdc00c7de15e2efe9", + "dwd_hash": "bceb0d825ba0289203f3b919f22ef93b" + }, + { + "store_goods_sale_id": 2901333643365317, + "ods_hash": "18bc0e22defdc64ab530c4b1cdf76f7c", + "dwd_hash": "ea14526a25169c7de90776b26aa5fca3" + }, + { + "store_goods_sale_id": 2901341571730437, + "ods_hash": "ccc9104cc24782430e80f093dd3bc2d4", + "dwd_hash": "44ea8e12fc819c7cdeabcc9a94baaf78" + }, + { + "store_goods_sale_id": 2901350931484037, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931500421, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931500422, + "ods_hash": "97201488b5b027c0e7475ff043afd827", + "dwd_hash": "12499fb2b6e2c9fb1b8d91da33e59433" + }, + { + "store_goods_sale_id": 2901350931516805, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931533189, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931533190, + "ods_hash": "672f772a342293773bd2b351b9acf10a", + "dwd_hash": "dbfcbb2e8bdec6e189e1f75bacfbf824" + }, + { + "store_goods_sale_id": 2901350931549573, + "ods_hash": "0a7e7e1ecf1b7aa006a1b9a5c9bdcf80", + "dwd_hash": "482fc1d4bef4fd0b94f95d0a0cbeeeb5" + }, + { + "store_goods_sale_id": 2901350931549574, + "ods_hash": "daaa9fa7b94fedeae571aaf54c3549bd", + "dwd_hash": "6acec5ed023be1b523d281c2636228a8" + }, + { + "store_goods_sale_id": 2901350931565957, + "ods_hash": "0025646e169f5c52e2506d651e0fc8b0", + "dwd_hash": "0cd60c93f6843f7fc46253b2875a7c3d" + }, + { + "store_goods_sale_id": 2901350931565958, + "ods_hash": "87f88ddedea664407e764c8b42b6a9be", + "dwd_hash": "6305a14cf5f888276e4bcb357b53d75a" + }, + { + "store_goods_sale_id": 2901350931582341, + "ods_hash": "cff15a35f6730671c25b6107e590149e", + "dwd_hash": "bf9c90294759e9a4e65258b0241dcbd8" + }, + { + "store_goods_sale_id": 2901350931582342, + "ods_hash": "2020a69877d6ec6ecb25261fa4ecab35", + "dwd_hash": "76de1d889ea882aebcaef69e480a86d7" + }, + { + "store_goods_sale_id": 2901350931598725, + "ods_hash": "098656a191a408d2b740389b2cc3fcb0", + "dwd_hash": "5125023943b8f688ca9480019f70516c" + }, + { + "store_goods_sale_id": 2901350931598726, + "ods_hash": "d8146cb5ac5b41626c7e89b11054dded", + "dwd_hash": "610363f67218029dfc7d16616d839f21" + }, + { + "store_goods_sale_id": 2901350931615109, + "ods_hash": "5549dfb968b584f93c2aff42961d502c", + "dwd_hash": "5f70975058d4ece661e7a6f26c3a5b90" + }, + { + "store_goods_sale_id": 2901350931631493, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931631494, + "ods_hash": "8c8c7ed76e68f2469e581e322f2ae3a8", + "dwd_hash": "bb10f3ec3e8b9eb126e406af17cb0bc5" + }, + { + "store_goods_sale_id": 2901350931647877, + "ods_hash": "45a8868360fbc41e191f0204073cb85c", + "dwd_hash": "3d35b0667de97acadc37285c6c64c636" + }, + { + "store_goods_sale_id": 2901350931647878, + "ods_hash": "fdfe9966e645a9364b69f6a5f32abc6e", + "dwd_hash": "cb4dd417ee11f04a04c24c92fc86f118" + }, + { + "store_goods_sale_id": 2901350931664261, + "ods_hash": "c4a4d26f46af2c68878d559e4f865115", + "dwd_hash": "5de51c5ffe91a233fe03c7cd56ada049" + }, + { + "store_goods_sale_id": 2901350931664262, + "ods_hash": "fc7e626e8787f1f2bbb7936cf96af6e7", + "dwd_hash": "4fcf2ef4f5744ccebf17958a1aae0dde" + }, + { + "store_goods_sale_id": 2901350931680645, + "ods_hash": "2c3a8ef739419f3cd4722e6b679299b5", + "dwd_hash": "900a846ecef7744a0b75d8e0cc74e901" + }, + { + "store_goods_sale_id": 2901350931680646, + "ods_hash": "52c4da565da21df9af9438a1ca6bfd89", + "dwd_hash": "60db96bed0cb73400d8a3c330c508bd8" + }, + { + "store_goods_sale_id": 2901350931697029, + "ods_hash": "52b262a5a00ae302b48c61474590a765", + "dwd_hash": "95100136165402ea419d3228d50e4dcd" + }, + { + "store_goods_sale_id": 2901350931697030, + "ods_hash": "a101679723f28ee11f9ce75008cd6cd5", + "dwd_hash": "5de8752efb0234052684abf3a5078943" + }, + { + "store_goods_sale_id": 2901350931713413, + "ods_hash": "1b7ddd6b4299dc441a485cf5e812c16e", + "dwd_hash": "54d3df242c79bd98d02b821af08f88a5" + }, + { + "store_goods_sale_id": 2901350931713414, + "ods_hash": "5a49b3441aa9bd71333c2f4531afcd59", + "dwd_hash": "48826061dda031f40ba131e18ec8ffc8" + }, + { + "store_goods_sale_id": 2901350931729797, + "ods_hash": "875e3f8537a47009b2673da40fac8600", + "dwd_hash": "693f8289d9affb7fcf910bd58ef1ce3f" + }, + { + "store_goods_sale_id": 2901350931729798, + "ods_hash": "c95e59bdf4cf690b27cf5e2ad1a5eac5", + "dwd_hash": "817fdcec3fd572602e820223b931b905" + }, + { + "store_goods_sale_id": 2901350931746181, + "ods_hash": "bd9b100ab620aafdd0c64026b76e6e6c", + "dwd_hash": "dec28b24b539191e9e578df8318d536f" + }, + { + "store_goods_sale_id": 2901351579569349, + "ods_hash": "2a8fb9ac54be4f3413f54e2277fe534f", + "dwd_hash": "c6fe620589469cfdae2f35e3f7a5788c" + }, + { + "store_goods_sale_id": 2901351579569350, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579585733, + "ods_hash": "8c9d17115d4a690f86adcd0db77823f3", + "dwd_hash": "bb18d302fc730b97a2976299a09bd1f3" + }, + { + "store_goods_sale_id": 2901351579585734, + "ods_hash": "a0a093fe0a8d7dd79985eb0b737adcca", + "dwd_hash": "78b051e428a6ac90d188d8e605b738ea" + }, + { + "store_goods_sale_id": 2901351579602117, + "ods_hash": "2fb85fde9f7fb8ea939aedfafab9ddb5", + "dwd_hash": "12c1dd0e1abee301aece3ff2d72f29e3" + }, + { + "store_goods_sale_id": 2901351579602118, + "ods_hash": "605d2b229cbf06dc7b8d480509061046", + "dwd_hash": "98553b9751de5ffbafac780d9e7ba796" + }, + { + "store_goods_sale_id": 2901351579618501, + "ods_hash": "13266c269eec2c3cb1810318ee35812d", + "dwd_hash": "a4745ab4b55e1b672adccd885fda9bb1" + }, + { + "store_goods_sale_id": 2901351579634885, + "ods_hash": "ef905b0a5036c5160c2ab510fcfa0479", + "dwd_hash": "2c67edbf77a26698f2d7c3933b69d003" + }, + { + "store_goods_sale_id": 2901351579634886, + "ods_hash": "e8011443016fdf8a52b448b4ce978772", + "dwd_hash": "c779e0d6ed7dce9301d68160af2ade5c" + }, + { + "store_goods_sale_id": 2901351579634887, + "ods_hash": "db433b4f70ce1f6f4571d80ef4e0995b", + "dwd_hash": "2535a9ff28a439e4024e858f4cd1fd26" + }, + { + "store_goods_sale_id": 2901351579651269, + "ods_hash": "0ecf3c79f92c976d769725ad0814e08e", + "dwd_hash": "d085acb3f3e648006bc6a3d6d7251b18" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 573, + "ods": 573, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 2143.56, + "ods_sum": 2143.56, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 172536.78, + "ods_sum": 172536.78, + "diff": 0.0 + } + ], + "mismatch": 573, + "mismatch_samples": [ + { + "assistant_service_id": 2901329636363653, + "ods_hash": "3a76612f38d720adfc067fdeacb20747", + "dwd_hash": "1ea4886f32d53860a0aa029f53498e2f" + }, + { + "assistant_service_id": 2901329636674949, + "ods_hash": "52ae46cd58b8f74300451900f9ad7a43", + "dwd_hash": "7fdd43db264ad50edeab4a86766e87c4" + }, + { + "assistant_service_id": 2901348568796357, + "ods_hash": "ce745258d3cd14b5336c384298677441", + "dwd_hash": "23fe621a5c688482c5efca3dbc941697" + }, + { + "assistant_service_id": 2901348569091269, + "ods_hash": "93e1e729b788dfe20f173071726fa5eb", + "dwd_hash": "f9df81e6c194aef8c8a5096e33d83ae7" + }, + { + "assistant_service_id": 2901349057465541, + "ods_hash": "30ed3bb8e0de8a6e78400f204ba86988", + "dwd_hash": "c6ecf62d9e3af988da167c2548d22ce0" + }, + { + "assistant_service_id": 2901349433248709, + "ods_hash": "494d34d64e12bbfe2295273fdec15884", + "dwd_hash": "69f68f5225b9c46b1ac8c7fe0bce9d66" + }, + { + "assistant_service_id": 2901349811719173, + "ods_hash": "f8e6c43d56cabf6cc03e7dd82d17debe", + "dwd_hash": "b1389441c3539be7ce7fa4a2ad2d1bec" + }, + { + "assistant_service_id": 2901350930713989, + "ods_hash": "8f0beaf77b30ba65586a5c4a89e999d5", + "dwd_hash": "ce82753e60462549c85f9926d439b9d6" + }, + { + "assistant_service_id": 2901350931008901, + "ods_hash": "d086eede481a39042408b8ec7edfd00e", + "dwd_hash": "3c3e2f824d9c7d3d24426fc12cd3fc6c" + }, + { + "assistant_service_id": 2901351261768645, + "ods_hash": "16624f768093c4d90150ef0b062efb65", + "dwd_hash": "22ab2043624f9c53850bcd89a29d7faa" + }, + { + "assistant_service_id": 2901352976272325, + "ods_hash": "e20a902adb8d293129969a1c0947e91a", + "dwd_hash": "c4205f5da84adabaab307c4d9d4a2018" + }, + { + "assistant_service_id": 2901423312276485, + "ods_hash": "676da8a281b14c4ef4a5bfae475505bd", + "dwd_hash": "2f16d891e4bb6a771379a51c11e9375f" + }, + { + "assistant_service_id": 2901423312587781, + "ods_hash": "37fefaca070537ff6b72405c2f058db8", + "dwd_hash": "29d1dc8130bdf657bc873114c18f66c1" + }, + { + "assistant_service_id": 2901471275027397, + "ods_hash": "27f28c0334a115ea4f226e2331f3c366", + "dwd_hash": "35f63ed5d99292f290e11c010312ceb1" + }, + { + "assistant_service_id": 2902624284445893, + "ods_hash": "8e7c047fa05f13298f8bfccd7e304265", + "dwd_hash": "4552fe793bcf81b441527d55466e9435" + }, + { + "assistant_service_id": 2902713764203909, + "ods_hash": "8f54b5b50c2c3b0423971e335635bd85", + "dwd_hash": "0b5c76fa12008d23711e858f8f84b6e4" + }, + { + "assistant_service_id": 2902715522616517, + "ods_hash": "215ee92ee24c8d054a68dbbba11a56e3", + "dwd_hash": "691140add0767cb751d3a14eaa0c7110" + }, + { + "assistant_service_id": 2902715522927813, + "ods_hash": "e2bf687f2a59836c3a0362a2d4c1b9b9", + "dwd_hash": "a4f2ab18c89439e61bcdec616678094a" + }, + { + "assistant_service_id": 2902744042458053, + "ods_hash": "97501baed1ed0f78e2d83c1f073e8975", + "dwd_hash": "4399ea42e4bccf3e1827a6b3271d780d" + }, + { + "assistant_service_id": 2902750865149125, + "ods_hash": "c4cb6cbf2a47a119dd02d294c9ebd32f", + "dwd_hash": "3eff3059157c6fdb5dd6b68144506ca9" + }, + { + "assistant_service_id": 2902782670130373, + "ods_hash": "005be52c7b2f1e8283b29d4dfe4b35c7", + "dwd_hash": "998b0af30e22994b4b8d40af7f091718" + }, + { + "assistant_service_id": 2902804684213189, + "ods_hash": "5abfebdac734b1c04c12c78b911b2054", + "dwd_hash": "0c7ead1f5c017e2c7ab4e6b7879f3dd4" + }, + { + "assistant_service_id": 2902804684508101, + "ods_hash": "9950e52ed6e706ecc8b5d4b20bbeb02b", + "dwd_hash": "bbe56bba5815c2f854d7b135d47d8eaa" + }, + { + "assistant_service_id": 2902848282840453, + "ods_hash": "f3e2be4c212ebb0cb0dd2aa4ed5f29fd", + "dwd_hash": "cb1bdc199c7df31eddb0a47196a32f64" + }, + { + "assistant_service_id": 2902848283102597, + "ods_hash": "31c541a256e2c9fb00c39f78ae1dbdab", + "dwd_hash": "5da716d6318949b6a502c40be4f84202" + }, + { + "assistant_service_id": 2902848283381125, + "ods_hash": "b96278026e99745f5acc8dd5580676d6", + "dwd_hash": "0e0d2c372805c5ca8eea9577357a81ef" + }, + { + "assistant_service_id": 2902848283643269, + "ods_hash": "761e97fd555ea400fff71a922cea988e", + "dwd_hash": "72ae117a806323dbe82fcc583c60053f" + }, + { + "assistant_service_id": 2902886167645381, + "ods_hash": "69863e01e5d1bb81249205a4649bfe93", + "dwd_hash": "c7bb76765ec12bd5c46d97e1bd334e0f" + }, + { + "assistant_service_id": 2902956589452229, + "ods_hash": "7549c50e510290bde013baf843c820f8", + "dwd_hash": "eeb6500c533f9c7c8de996dfa1eca1dc" + }, + { + "assistant_service_id": 2903002831424709, + "ods_hash": "accf5f05a9530aff574a361bb70390d5", + "dwd_hash": "5e3f894660ffc9029df7b2a7901a49ba" + }, + { + "assistant_service_id": 2903002831703237, + "ods_hash": "a62cf201d8f5b37206442c4c5a5e4e0a", + "dwd_hash": "dee24c4f51927ce59ff9e84a931737dd" + }, + { + "assistant_service_id": 2903002831981765, + "ods_hash": "ce7cced27db0cc6fc79ae9d14c016371", + "dwd_hash": "60b79bad7de23dacd7bfd1dcd3cb0b49" + }, + { + "assistant_service_id": 2903002832260293, + "ods_hash": "b3a47665e11ce32ba9819615f6eb756f", + "dwd_hash": "ade2812624bc13875b0be975dd9ae163" + }, + { + "assistant_service_id": 2903677044182213, + "ods_hash": "c831622d03073af5be50186dcb8ee13e", + "dwd_hash": "0496967269c13a827ab11a0477811fe2" + }, + { + "assistant_service_id": 2903677044509893, + "ods_hash": "da804dd35252b540a8e20b01c17c4997", + "dwd_hash": "8231f616abbafca65897c2a7deeec8db" + }, + { + "assistant_service_id": 2903677044870341, + "ods_hash": "62e4af4bb0ecb8717a445e94d1139991", + "dwd_hash": "873ded60fb93fefaa5011117caa5a9bf" + }, + { + "assistant_service_id": 2903740383038469, + "ods_hash": "8588373539537ccf49691b50b19cbebd", + "dwd_hash": "e933e99e70591a1ad96e81f2906af207" + }, + { + "assistant_service_id": 2903740478279045, + "ods_hash": "ee81f00364ef9fe0a51ba3a431872451", + "dwd_hash": "24d6ba5863118498095a803f200d6f6e" + }, + { + "assistant_service_id": 2904045994593669, + "ods_hash": "ec8fe156a31af519ba1d6bf504ab6a2c", + "dwd_hash": "1d20fa499384935b9d7cb0393622237e" + }, + { + "assistant_service_id": 2904045994970501, + "ods_hash": "649956f53fca878e0717ea1ac4569b3e", + "dwd_hash": "65898b221b5a637c8086b1e6881f4ad7" + }, + { + "assistant_service_id": 2904049053339013, + "ods_hash": "de286f19e8eaeafcc54e79f6c5faad72", + "dwd_hash": "e455e81199f93ab776e1eb8ef95ea324" + }, + { + "assistant_service_id": 2904116728990917, + "ods_hash": "b393a76882e6c4c743f0c3838fb9782c", + "dwd_hash": "72de3caab1326d0b8d45a3cdb8ed90bb" + }, + { + "assistant_service_id": 2904205160041413, + "ods_hash": "3a0e8b776516a0166b6c6546a23c734f", + "dwd_hash": "f9ce1064376a5b0fac474012501a01df" + }, + { + "assistant_service_id": 2904236312677317, + "ods_hash": "c7fa2195f039c9eb11d21173049c1b11", + "dwd_hash": "9c42971a40bcc246897218fd32d29191" + }, + { + "assistant_service_id": 2904236312955845, + "ods_hash": "839949eb16b850848398d33c8383037f", + "dwd_hash": "5501f72d4c34a3e6102200fd29fc7e73" + }, + { + "assistant_service_id": 2904236313512901, + "ods_hash": "dcd61dcf9f0f6e1bec348fbcf4b74c99", + "dwd_hash": "8fa85210481b965aeb4df4537f072ff7" + }, + { + "assistant_service_id": 2904285454240773, + "ods_hash": "224bb6808f320bb715e5c692560e3b92", + "dwd_hash": "eff5c0b818c805b7b2e2877da5b4c102" + }, + { + "assistant_service_id": 2904285454519301, + "ods_hash": "85a29574ca4bfe44537488f1e6ce244f", + "dwd_hash": "3160deabcbcc8a3a65c9d074f752cb45" + }, + { + "assistant_service_id": 2905207501260421, + "ods_hash": "4adcc4d1baa25b4ba9ecb687c3dc8109", + "dwd_hash": "dcf09bda755f9ae897cf19f76bf97525" + }, + { + "assistant_service_id": 2905216769426821, + "ods_hash": "ebce395e2cf5567b306e759f6e0578dd", + "dwd_hash": "6af1c3e7062708f2a07557b374aa3b1c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2490, + "ods": 2490, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160988.0, + "ods_sum": 160988.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 154001.27, + "ods_sum": 154001.27, + "diff": 0.0 + } + ], + "mismatch": 2490, + "mismatch_samples": [ + { + "redemption_id": 2901341571795973, + "ods_hash": "2e5107d3fc4c3ccb9a1511f9204c30fd", + "dwd_hash": "ee862366fbdd40a96aa8b91896243aed" + }, + { + "redemption_id": 2901352976747461, + "ods_hash": "b42bb657275b1102da91b879d5493f7b", + "dwd_hash": "2fdb2ae2b6f0ef472b1d61246eb15fc5" + }, + { + "redemption_id": 2901354533161925, + "ods_hash": "82f9d4e19161955bb49ae093f45a6269", + "dwd_hash": "0e30da4f668dba55dd8bb7178733fca9" + }, + { + "redemption_id": 2901358843481029, + "ods_hash": "e270ca28a74f01747b95c51fdfed6da9", + "dwd_hash": "a4e50aba086374c884b0027bacbb81e2" + }, + { + "redemption_id": 2901358843481030, + "ods_hash": "ddb72fb5f3ae80c94e5fd8e542ac4f00", + "dwd_hash": "858f9b63478fef25fde7c13d761ecd6a" + }, + { + "redemption_id": 2901364625198021, + "ods_hash": "59c4ba11565a4ead6a98d61d450c8711", + "dwd_hash": "1c24ec75ad5fa74f68ba084c1bf20696" + }, + { + "redemption_id": 2901367870131205, + "ods_hash": "18874d164ed1aeb39b8dfb7b59045114", + "dwd_hash": "b638b62b19633385aad2971de0f3f3e9" + }, + { + "redemption_id": 2901368988306437, + "ods_hash": "c0a77579b58454beb8da3b8e0a93157b", + "dwd_hash": "9564fd9f187bffe545c7c131b54f18c7" + }, + { + "redemption_id": 2901376493931909, + "ods_hash": "6ccffc5a155749e90f33c7a49082d02f", + "dwd_hash": "d712c20b807101fd5e12a7ca5238bd1d" + }, + { + "redemption_id": 2901376493931910, + "ods_hash": "45499809c4f9e387c1776222ff0c70b8", + "dwd_hash": "38dba49b701373f23c0bc950dca7e96f" + }, + { + "redemption_id": 2901385079753925, + "ods_hash": "8eec1431fd17d4760251d4c347a7ee3c", + "dwd_hash": "ea66fffbe42c7d53f69f864fc32a53ff" + }, + { + "redemption_id": 2901385079753926, + "ods_hash": "d1a845ebf5afb63edecdc6aedaa27ebd", + "dwd_hash": "f64f8e3a54f14b16e308004c83f9ee5d" + }, + { + "redemption_id": 2901395066424325, + "ods_hash": "6c230d7e6d1883aa305ee79f870535d4", + "dwd_hash": "cabc6c7a6a92cde6d508fd259760484a" + }, + { + "redemption_id": 2901423313177605, + "ods_hash": "6a9ffdd83df41a470d6b2fa494f48c85", + "dwd_hash": "8e531f44d49e5c42d0cc8fd4c012fc31" + }, + { + "redemption_id": 2901423313177606, + "ods_hash": "c4b82f5dd3ebf365ead94a7fc05e5617", + "dwd_hash": "e89d3a253b97399cb94a26459658762d" + }, + { + "redemption_id": 2901427659410821, + "ods_hash": "5810f71243bd1493ab2a156f6f21f2c0", + "dwd_hash": "b2653899425437457af2a0c144968457" + }, + { + "redemption_id": 2901427659410822, + "ods_hash": "6cb8bd61cf5f40af84d9d77f97752999", + "dwd_hash": "cc1e4e6842a0acdf7c5da2334d99d67f" + }, + { + "redemption_id": 2901440632982469, + "ods_hash": "0677a628a1d3008b426c7861411c4d70", + "dwd_hash": "239e25b298031f162bce2d66cfd28994" + }, + { + "redemption_id": 2902138925026501, + "ods_hash": "aab96b14e3464121b551457b3f3ef2a1", + "dwd_hash": "203a8ef757a52d5c4e6763b524d4d8d9" + }, + { + "redemption_id": 2902155497130949, + "ods_hash": "151eee6d22747cba6b63f1ce610dd503", + "dwd_hash": "698433cba33ad1d3e16977b0ba979f8d" + }, + { + "redemption_id": 2902214882200517, + "ods_hash": "17b867727cbf93d555ecc54b4970e8b2", + "dwd_hash": "68cb8b0e868f01e5f9b994344cf5268b" + }, + { + "redemption_id": 2902215452953989, + "ods_hash": "ad5ed4cf9725b2b97f4c8d68784989a5", + "dwd_hash": "5ad9317677a9c29d37739e74f82017f3" + }, + { + "redemption_id": 2902216724401093, + "ods_hash": "6f8e509f765cf770ec434e45f27aaf39", + "dwd_hash": "68058edee86f3f192e7702e119761701" + }, + { + "redemption_id": 2902263457828037, + "ods_hash": "385b98bb095a994afbac0566b979c984", + "dwd_hash": "06d1237b213abe04dacdebf6dae1b6c2" + }, + { + "redemption_id": 2902274873134469, + "ods_hash": "7205c58c052ce921b3da6f98e866d260", + "dwd_hash": "09c0644689dc4051eca79b8c6ba7a8c7" + }, + { + "redemption_id": 2902278579129285, + "ods_hash": "5a79771693eeb652b55a24d6f65a61c2", + "dwd_hash": "6b0d8b11b4f9b550036dc4ff5a671e94" + }, + { + "redemption_id": 2902280718503301, + "ods_hash": "e145b3e47f14ddacb0785653cbde0b55", + "dwd_hash": "dc93733863884ee79452d8eb66d5e837" + }, + { + "redemption_id": 2902280718503302, + "ods_hash": "ffee25f6bbb8807002e519b8644e866b", + "dwd_hash": "fe59b86ca8e8ec54cd520ada4779b60e" + }, + { + "redemption_id": 2902280787282886, + "ods_hash": "9e5d8730f883cdb41070867ab30e924e", + "dwd_hash": "8401f4919e4317f6e7a87693649aca1b" + }, + { + "redemption_id": 2902280857046213, + "ods_hash": "fe4c7a8bef643234018007815bb5db0f", + "dwd_hash": "e5495b3859c74f55d109cb6fbb8a36b5" + }, + { + "redemption_id": 2902298297404357, + "ods_hash": "694f771ad6977bea59368c0c917b7170", + "dwd_hash": "4a20a286e6e0cb89f9f5a3258c1c1fc9" + }, + { + "redemption_id": 2902301532048581, + "ods_hash": "a6948697a6e068f09920cc199f792070", + "dwd_hash": "cbd919ee0bf81cf3566b4811ca5f6dca" + }, + { + "redemption_id": 2902301532048582, + "ods_hash": "3866fc81f0c91e7595b1f42025b9715c", + "dwd_hash": "a904ca34c89147587365f0aa4fa44e79" + }, + { + "redemption_id": 2902306129563013, + "ods_hash": "02d79bdaec015ea1e21f95142f2a8e58", + "dwd_hash": "fb1b31011f2d8d4618d37b83705a9051" + }, + { + "redemption_id": 2902306129563014, + "ods_hash": "9ebe1441b947b97aa00ec0fac9b4c148", + "dwd_hash": "e0d0aba2f7a79e2ab98c80029a5425ae" + }, + { + "redemption_id": 2902315882761413, + "ods_hash": "c683a80896a146330eed78bbcb995899", + "dwd_hash": "d4303e9f56585da8878bb510e88a8717" + }, + { + "redemption_id": 2902323382045701, + "ods_hash": "7372871447fe93ea0ed12cedd53d28c7", + "dwd_hash": "0d2d6642f3eb809fbd4a51990ac19590" + }, + { + "redemption_id": 2902325857521029, + "ods_hash": "d1015265bd002a646670d65805f48ec2", + "dwd_hash": "8c891e8fd1f9acee0b271bb029b1cfb1" + }, + { + "redemption_id": 2902332836547525, + "ods_hash": "1fb0fc094d97f7cdce70ebed15e49d94", + "dwd_hash": "b507fce8dce9c33e139239c9db207d96" + }, + { + "redemption_id": 2902343277972869, + "ods_hash": "3cd9dc7d5940967d64f187929ee97fec", + "dwd_hash": "fbea010ce9db7d839475405cfe036975" + }, + { + "redemption_id": 2902343330778117, + "ods_hash": "d627feaf2238b8f7ef540b8e6f25163b", + "dwd_hash": "7d32b123577dfd4e1e13ca0619754400" + }, + { + "redemption_id": 2902356349554053, + "ods_hash": "64d0bf47ad98cf4393f744a432493cbd", + "dwd_hash": "ec1a0c469e2f0d42c0339255108d6075" + }, + { + "redemption_id": 2902356349554054, + "ods_hash": "3f574bbef83f8365e9e3806f5b525837", + "dwd_hash": "6b2c0ffb5d7c673ffe96e9dd96cc496c" + }, + { + "redemption_id": 2902357537459397, + "ods_hash": "23694cd7a92cbaa7b66f5187bd983667", + "dwd_hash": "829f62f9542ca6b3494222d24506c35b" + }, + { + "redemption_id": 2902357537459398, + "ods_hash": "20d08bde0822e4c1646fc574525a2b94", + "dwd_hash": "9f9f4d2c7ba895942cedc4328ae48047" + }, + { + "redemption_id": 2902358470282245, + "ods_hash": "6cf336e0436b2374cb856378dd2a4d4a", + "dwd_hash": "870137571cfd70fbccb8d5d086f16cd4" + }, + { + "redemption_id": 2902358470282246, + "ods_hash": "6833147ce540e590c3d47321b64c5f45", + "dwd_hash": "38e276dd4932aea99103d8eb99008f24" + }, + { + "redemption_id": 2902375367904261, + "ods_hash": "264bb4479593cc754416180e1ab35d59", + "dwd_hash": "990dd0af32329ccfb469aad8dc95360b" + }, + { + "redemption_id": 2902384447540165, + "ods_hash": "fa23525c975350c368f35774ebd48704", + "dwd_hash": "020d030eb2bd68cea8c0fd0f0f74b105" + }, + { + "redemption_id": 2902384447540166, + "ods_hash": "d7519ef77ad0f288eb300e53d3508903", + "dwd_hash": "f86e440be45bc6d4cd824032097f6c5e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2489, + "ods": 2489, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 160076.0, + "ods_sum": 160076.0, + "diff": 0.0 + } + ], + "mismatch": 2489, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2901367628860805, + "ods_hash": "f1c06655146f3b02219166be9be1ebd1", + "dwd_hash": "81bbb2be6f62c18f407fd545732fa152" + }, + { + "platform_coupon_redemption_id": 2902088137772037, + "ods_hash": "af0eda0aa077e1a419b065c8f1419185", + "dwd_hash": "c2012ccd9a7f49bf5e75623d87fcac58" + }, + { + "platform_coupon_redemption_id": 2902113205193733, + "ods_hash": "1b8c33998cd2d28dc5fecf954514a89c", + "dwd_hash": "3c79f32bc7cdbff65d94137b8d2f3716" + }, + { + "platform_coupon_redemption_id": 2902128667512197, + "ods_hash": "2359d424f227bfa93912a38c74c1bc96", + "dwd_hash": "996b182390c3c30edcae886654d3fece" + }, + { + "platform_coupon_redemption_id": 2902148701817797, + "ods_hash": "26c2f157681b6cd6403fa3e3ed4697da", + "dwd_hash": "51b8ba13a8f4cd6dfb76de469074827b" + }, + { + "platform_coupon_redemption_id": 2902155668999109, + "ods_hash": "2c1d8984fd23e98ea9e45323b5e75d60", + "dwd_hash": "4d9a9cb2a2561342b4dd7f2ee449d2e9" + }, + { + "platform_coupon_redemption_id": 2902156307909573, + "ods_hash": "6731d318c0dc6b7ea354e413d4fd3d78", + "dwd_hash": "02529e59c46da1be8f878237736f25e9" + }, + { + "platform_coupon_redemption_id": 2902157707152581, + "ods_hash": "c390db75714143e8faf4599cf2cde122", + "dwd_hash": "09f7a6305d7bfa5e4be423b772822e5f" + }, + { + "platform_coupon_redemption_id": 2902161494904005, + "ods_hash": "2920322e66dd181a2ca6a3f424254b9a", + "dwd_hash": "082be41dd3467b5f6d309d2e7de2f04a" + }, + { + "platform_coupon_redemption_id": 2902176789580997, + "ods_hash": "145dac0022c3f2eba6dd20271ad018ce", + "dwd_hash": "2520e0e59acd8efc8d5b3295bf148d25" + }, + { + "platform_coupon_redemption_id": 2902189166562501, + "ods_hash": "7fa855b9114e267f68533c39114d9d22", + "dwd_hash": "255d5c8f71476402804902d2604fbafa" + }, + { + "platform_coupon_redemption_id": 2902196975553733, + "ods_hash": "a6b45772ac37c4d7697f0f8b92ff74cb", + "dwd_hash": "a04c72d920531af347e4813ec630f125" + }, + { + "platform_coupon_redemption_id": 2902204132920517, + "ods_hash": "41871dd9b8fd3b6312f1e567d5b41e6c", + "dwd_hash": "822abdc97ce77265b4413d502a9a3440" + }, + { + "platform_coupon_redemption_id": 2902214514183557, + "ods_hash": "fd9b827ce83f719f2a599d1072985e4e", + "dwd_hash": "13199b8504854dbdd1f59dcf969675fc" + }, + { + "platform_coupon_redemption_id": 2902215716867269, + "ods_hash": "7055622bb91fc75aa86840ffac713488", + "dwd_hash": "82976e78aa88a4363ca04b3a21ea9dbb" + }, + { + "platform_coupon_redemption_id": 2902217978416069, + "ods_hash": "adafc1da595ddc52fa6cf310f6bc442a", + "dwd_hash": "3e6a01f8aeb85a5aa6e922392c4a6e92" + }, + { + "platform_coupon_redemption_id": 2902221416532933, + "ods_hash": "283645d6f173b2b89a3655c8b97e4f59", + "dwd_hash": "b8541fccf259f79dd9c22efcf66838e9" + }, + { + "platform_coupon_redemption_id": 2902221638651077, + "ods_hash": "1e560d1f843cc83dace2d5d374f3a7d2", + "dwd_hash": "dd400a820c8e1eefc3b90479b1c0287a" + }, + { + "platform_coupon_redemption_id": 2902226555997381, + "ods_hash": "ac0d845d635c1e163751ca4812ce1ad9", + "dwd_hash": "d5f30a8e7a7a03d1dc084b1f48cc0976" + }, + { + "platform_coupon_redemption_id": 2902237571337221, + "ods_hash": "4e686e6aebcc912d02fb7843db95c76b", + "dwd_hash": "20f4d8aa3c5aafbfb0e70376cf98561a" + }, + { + "platform_coupon_redemption_id": 2902238584622021, + "ods_hash": "706e1dca0e49478e6aebf4369468d836", + "dwd_hash": "a101780af2cf9f61ffe8b2f123ff1a12" + }, + { + "platform_coupon_redemption_id": 2902240655379845, + "ods_hash": "865f63fb8b79dfca70ceb5baea24fce6", + "dwd_hash": "572a4b871ed79ced43bc9c8571b8db44" + }, + { + "platform_coupon_redemption_id": 2902241126714757, + "ods_hash": "0a03ee7e93abe16ce300d5a051776147", + "dwd_hash": "e2f0c5bf2396108a45de3d87ec29027a" + }, + { + "platform_coupon_redemption_id": 2902243482963333, + "ods_hash": "13e8169cac55984a7d1ec5b8dca330cd", + "dwd_hash": "c05217d24bcc780a282ca534e97a4ad3" + }, + { + "platform_coupon_redemption_id": 2902246805474501, + "ods_hash": "aaebe1bc84cf564b1cb04178d824ca83", + "dwd_hash": "23e6f488fdbf37ade31aeac07a057222" + }, + { + "platform_coupon_redemption_id": 2902249617280197, + "ods_hash": "19939d7ad57192615fea95932656aff1", + "dwd_hash": "4ed785f37ed7e50292bd393fa96f61f6" + }, + { + "platform_coupon_redemption_id": 2902252697652229, + "ods_hash": "160628ece8fae6158f8f41f160fd803a", + "dwd_hash": "7eb7393c3640c35be8fbe7d87cbe80d7" + }, + { + "platform_coupon_redemption_id": 2902253075631493, + "ods_hash": "e24a145f8fb512bce5f44fff34a91ed5", + "dwd_hash": "26156ed47d6dc801e12a777fd81a71f1" + }, + { + "platform_coupon_redemption_id": 2902256480128197, + "ods_hash": "f330b7740cf8354e5377f85622cca27b", + "dwd_hash": "e564aa810a4fdf2288fd05c6df85e8c0" + }, + { + "platform_coupon_redemption_id": 2902262676524229, + "ods_hash": "571028025b21039174fd19d2c7e95f6b", + "dwd_hash": "f90f1ac1d12bd279b6a5f46f5b588552" + }, + { + "platform_coupon_redemption_id": 2902265221811589, + "ods_hash": "cb0961e516e3d5619181d7b8102c0d50", + "dwd_hash": "0947c89b3f05234394bd2709fbee5766" + }, + { + "platform_coupon_redemption_id": 2902270535535621, + "ods_hash": "35bc51ce1e6deb67bbc9a818c9f169c1", + "dwd_hash": "9559f933160c9125cb639e732a853436" + }, + { + "platform_coupon_redemption_id": 2902273000492421, + "ods_hash": "c27a475e7fee5e05d40cac4d547f269b", + "dwd_hash": "1951b3fcf5be5dddb0ecf4cb2401ddef" + }, + { + "platform_coupon_redemption_id": 2902273258998789, + "ods_hash": "ed9557c9f26c855eee763620956333c0", + "dwd_hash": "84228639ccdadd8a996748e8ceeae3b2" + }, + { + "platform_coupon_redemption_id": 2902278702042309, + "ods_hash": "bd39f28a2b7faf3afaf6c8213c1b698d", + "dwd_hash": "194c012f3225e4ae414884d21d1a6979" + }, + { + "platform_coupon_redemption_id": 2902281462353285, + "ods_hash": "1968fb597f753f6745060af438b82187", + "dwd_hash": "b35cedc607bce12c090be170b35e9c0e" + }, + { + "platform_coupon_redemption_id": 2902284193483973, + "ods_hash": "803e7a6804ce9c37751435eb820c4f40", + "dwd_hash": "f350a4959af7d9368aa5a8fa9010c53a" + }, + { + "platform_coupon_redemption_id": 2902286766951621, + "ods_hash": "8301c5747b0894179ae91f7ab442a9f6", + "dwd_hash": "511d2eaa58209e4729d21321ffcf8934" + }, + { + "platform_coupon_redemption_id": 2902299175259525, + "ods_hash": "076030d20936947d02963d69cdd53f04", + "dwd_hash": "23de7c04364c56544ee709ad14fba888" + }, + { + "platform_coupon_redemption_id": 2902303531387909, + "ods_hash": "b8462a60d7d5664b7474d1572839a1ed", + "dwd_hash": "e4010412768300bc5380e8cd8f305339" + }, + { + "platform_coupon_redemption_id": 2902306926546117, + "ods_hash": "9c879f8dfcd58ed378108abb61831dfc", + "dwd_hash": "545b571fcdc6955be6e07159ed7ad6a7" + }, + { + "platform_coupon_redemption_id": 2902310724701381, + "ods_hash": "a7b0d0474372268e49689b76872e333b", + "dwd_hash": "3d2918792aed27c7638f31713d11827a" + }, + { + "platform_coupon_redemption_id": 2902314367339909, + "ods_hash": "3cdd19760844a270633a897b401e61ba", + "dwd_hash": "bcab3712490f965e9916f88031d81801" + }, + { + "platform_coupon_redemption_id": 2902325542423749, + "ods_hash": "4fe09ba3944baae6c753de839940ef8f", + "dwd_hash": "8c10508799bc8795dc7576365c932ee9" + }, + { + "platform_coupon_redemption_id": 2902325747699077, + "ods_hash": "729beace889c969336c6d1b66f25c3a0", + "dwd_hash": "8f165b33af02f8149cbd3ad636565b30" + }, + { + "platform_coupon_redemption_id": 2902335580376005, + "ods_hash": "70b78d93f25311a6999de4797b8f3f48", + "dwd_hash": "ab460d72ded5ab1080df88b58a4ecb61" + }, + { + "platform_coupon_redemption_id": 2902352671542277, + "ods_hash": "9a90ac2713b543b4ceb893cdbed254a7", + "dwd_hash": "377a5bda53cf6211b030b9fe7a8893d7" + }, + { + "platform_coupon_redemption_id": 2902363868777669, + "ods_hash": "79161b8f6d76edb71822968862f2b7e6", + "dwd_hash": "0e4b7f694d803ada2dafab30a4851cc3" + }, + { + "platform_coupon_redemption_id": 2902392764976325, + "ods_hash": "0f7ebcb2fbff3f1667a58346b449b80f", + "dwd_hash": "d109f3fe596240fc7a720ab19c844a9f" + }, + { + "platform_coupon_redemption_id": 2902401247677445, + "ods_hash": "b03b4018abd42f20c5370401721f0ef7", + "dwd_hash": "b17f9fe486c19ba956c4ef26d43d3af5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3616, + "ods": 3616, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 286088.0, + "ods_sum": 286088.0, + "diff": 0.0 + } + ], + "mismatch": 3616, + "mismatch_samples": [ + { + "payment_id": 2901329633332613, + "ods_hash": "a17b541a1bf24c373109c9191e1cd74b", + "dwd_hash": "042293e2f0a2bd1d9aa6c7f675981668" + }, + { + "payment_id": 2901330301783237, + "ods_hash": "8da7463f462d765c1a5b5efdd67d229b", + "dwd_hash": "fb8e61db1aa96ccb0361a86201cfd7c1" + }, + { + "payment_id": 2901333640383429, + "ods_hash": "220dc6b4ca853aedeac6db07c4eb252e", + "dwd_hash": "efca71ec5a4660b5c23f98bd0bcd53b0" + }, + { + "payment_id": 2901341568650245, + "ods_hash": "4ad31937f9004a8e70a7627c95850afa", + "dwd_hash": "b6ae7559f7dcf7e903b172d2713555a1" + }, + { + "payment_id": 2901346036419781, + "ods_hash": "0c317b2acbafc03b8261cedd8113e2e5", + "dwd_hash": "1d79f890ddfac44c5b2b35d8aabf28ef" + }, + { + "payment_id": 2901348563930309, + "ods_hash": "8051ffcc096ca9331906c59b0012b07f", + "dwd_hash": "35326c9e59e21542a09ae73b0f203f09" + }, + { + "payment_id": 2901349053779141, + "ods_hash": "7165faadfc1411bc16e70473916a0fad", + "dwd_hash": "0012b440777d1ec47b8da97cfacbc81f" + }, + { + "payment_id": 2901349430414277, + "ods_hash": "e3c487b0652e42b528e0769c024381cd", + "dwd_hash": "481d7db3edcef1babe4a6c710c8416dd" + }, + { + "payment_id": 2901349808704517, + "ods_hash": "6fb1e2386d7690ef155acc4047e93f80", + "dwd_hash": "f1ad376cbb3d1591cc2642dc26a5c30c" + }, + { + "payment_id": 2901350925766021, + "ods_hash": "521a9c7eb218331a0e38507ba21db4e0", + "dwd_hash": "a052054ecad365ac91ebf9151b14b46e" + }, + { + "payment_id": 2901351258606533, + "ods_hash": "6ee9bbaf198a4cdbb36c3580390c0b0c", + "dwd_hash": "88ae7e806754cc200a3688da3579a60f" + }, + { + "payment_id": 2901351575882949, + "ods_hash": "0ba80c72ff417d1e5ffacdc630fe02bf", + "dwd_hash": "c61dd852b4cb09c9c736378957fba43e" + }, + { + "payment_id": 2901352973208517, + "ods_hash": "6469de441d9627b6ed98e846adef67e3", + "dwd_hash": "b93606f0048dc13a84880d11de33aee8" + }, + { + "payment_id": 2901353633533125, + "ods_hash": "26bf9f88df4efbf060e871321806bbcc", + "dwd_hash": "0000142e9cf31279eb3d9fdd7edcd23c" + }, + { + "payment_id": 2901354530589637, + "ods_hash": "4b172a2dcacf4dbc64c6d2a6be1402b9", + "dwd_hash": "f5a4d818ce7e7f891e4f4b77853e1b22" + }, + { + "payment_id": 2901357005196293, + "ods_hash": "a4700931ee5c6e108f49b119977b6056", + "dwd_hash": "a166f4c19e7f1227c10034dd58fff618" + }, + { + "payment_id": 2901358840712133, + "ods_hash": "a00460e5b13d8b6a337b687bcb84e0a9", + "dwd_hash": "ddc94830d07e22a746aa49cb4b232821" + }, + { + "payment_id": 2901362041473989, + "ods_hash": "14c05f2fd8f556f51d6d7dfcf492065b", + "dwd_hash": "7d6b2b022ee45aab4d2e6471831c7fe6" + }, + { + "payment_id": 2901364620659653, + "ods_hash": "1da2d9f291c8a47874cf77f5e2b656a9", + "dwd_hash": "d71e80af7e9875200adc9150a5dfe0fd" + }, + { + "payment_id": 2901367867280389, + "ods_hash": "a1e11bcb74d7fd16e36ada8033d02011", + "dwd_hash": "1351f782baaa8d9770d900b9f7850bff" + }, + { + "payment_id": 2901368984980485, + "ods_hash": "6be0343a4e44d757e106752bce53a309", + "dwd_hash": "bcd7f17d493c817289b4ef7d7cd600ee" + }, + { + "payment_id": 2901374239755653, + "ods_hash": "1f1a376e50aedd383532e96e2e52726b", + "dwd_hash": "720b34cddcdf96c396121b658d15eea9" + }, + { + "payment_id": 2901376491163013, + "ods_hash": "d2f31184e79773f3520c998cd7614717", + "dwd_hash": "6b437743b00a6ac74386d976a5dcd313" + }, + { + "payment_id": 2901377168264133, + "ods_hash": "0f5e8c6ed0089085d0ed21f4ddf35ccc", + "dwd_hash": "bc656b14f7b6e43c6f6196016a9870a2" + }, + { + "payment_id": 2901385077017797, + "ods_hash": "4b7401c2897634f0d872fdc5d3bad243", + "dwd_hash": "79a86cbe14b7ee1fa7d0bd030b626179" + }, + { + "payment_id": 2901395063671813, + "ods_hash": "537ec8448ea455628d9c1cbfd853cc6a", + "dwd_hash": "f8df7b3e33958fe8ed5e2ade4ca45151" + }, + { + "payment_id": 2901396410961093, + "ods_hash": "d213feb8936d3f6a0f6bd2d01ced6216", + "dwd_hash": "dc45d2bb6ad0bd432e4e18ac10a725ee" + }, + { + "payment_id": 2901406233447429, + "ods_hash": "2964dbdc2a9e1c0da383559b9e0eb29a", + "dwd_hash": "d1ee0fd4f4d2f6f5e31403e0f0120d27" + }, + { + "payment_id": 2901414643305477, + "ods_hash": "3b9b5d734f3f6acaf6926486baaec79e", + "dwd_hash": "3491f3c98a659c55f9b417256a290939" + }, + { + "payment_id": 2901419209477317, + "ods_hash": "d9c12f7868f10c3a26bd57a47da0b0d9", + "dwd_hash": "d127cb2c03d4b8a0cfb476875cb8f7e3" + }, + { + "payment_id": 2901423307967493, + "ods_hash": "f4abd15d1d832fe798be75870cf48f37", + "dwd_hash": "0ef9dd994f842de8dbc5cb4aeca5faf8" + }, + { + "payment_id": 2901427656805765, + "ods_hash": "1e9d4f33bfc96aadbfcd4bcf53fb84e0", + "dwd_hash": "68c049d7ef3209e865f8f5ab0e90b06d" + }, + { + "payment_id": 2901433679514821, + "ods_hash": "4b80121771d13238f8c6a98a7588261c", + "dwd_hash": "12f8bab6e4bf6d8c6dd1c3dba346ed72" + }, + { + "payment_id": 2901438573956101, + "ods_hash": "37b74917eeb20ec20d3619af99ebbfda", + "dwd_hash": "66b76ebbfa20ebb6390645a2ee732746" + }, + { + "payment_id": 2901440629345221, + "ods_hash": "2b51f7f88c9846b209756c87e7a199df", + "dwd_hash": "39aa0ab3a6dd218537133ae56a95052f" + }, + { + "payment_id": 2901452813487301, + "ods_hash": "c2e271c24597739fabaec1c82f085e5d", + "dwd_hash": "3455fc793116ec27f23f7c7a9e869d96" + }, + { + "payment_id": 2901463567436741, + "ods_hash": "a7ce0c729de0733c40db038ff8b04843", + "dwd_hash": "eede6a5d2ed33f5214ac2229380c4e31" + }, + { + "payment_id": 2901469448358853, + "ods_hash": "09d2b1bb30b554b35e16c993ca25d836", + "dwd_hash": "b52e4a4fcbcb57c6a1eb3030db8c2e8e" + }, + { + "payment_id": 2901471271865285, + "ods_hash": "79fd7c8e45e5eabddbcff63062f91505", + "dwd_hash": "2d23928c62878558b705688f0eb16236" + }, + { + "payment_id": 2901475700133061, + "ods_hash": "fcb5d09c5ef8ce79fe9a052794fc0360", + "dwd_hash": "d633cc2a9afaef8030fb86304a79bd2b" + }, + { + "payment_id": 2901509430791557, + "ods_hash": "2b58383ae2dd5c041c0c60663f3906b9", + "dwd_hash": "e32172925a5a63cb4778283fbbbb2f1d" + }, + { + "payment_id": 2901510516870341, + "ods_hash": "5fee8d604d267ad3ce2f7aeee9ca848a", + "dwd_hash": "c2f107e0ebccf2ededcffc1508f37afd" + }, + { + "payment_id": 2901523906268165, + "ods_hash": "e3a3e772412ab50423255bd3e253401c", + "dwd_hash": "df76333fe3ad506df6e2d15ea458e470" + }, + { + "payment_id": 2901535958945157, + "ods_hash": "32aef665b683c0fd0e212f2dc82654b4", + "dwd_hash": "cf39184ecac7c86c4a5ef9538aa4bcfc" + }, + { + "payment_id": 2901592642587845, + "ods_hash": "48e58f8cf4d74d75b10ad014e6a9b929", + "dwd_hash": "2de107c0581530a7c69f13de9f0a736f" + }, + { + "payment_id": 2901680239348933, + "ods_hash": "971a0c4494f3b1da49400f28398df9ba", + "dwd_hash": "dd3bfccc8091a571d97069023d46b741" + }, + { + "payment_id": 2902079562812613, + "ods_hash": "1146e8032439b0e68b441b634fd55d3f", + "dwd_hash": "8a6a091764f603dd593245d4b1fba26f" + }, + { + "payment_id": 2902088275250181, + "ods_hash": "114db5dc689ab41dabee8f23d2f065da", + "dwd_hash": "66ab2989639ea160e527f43efc5fe48c" + }, + { + "payment_id": 2902118401379717, + "ods_hash": "bf38fa4e9fd73b1aeb877bff45f45b17", + "dwd_hash": "54fec9c8b429d00282584992e6ed86b6" + }, + { + "payment_id": 2902128928755077, + "ods_hash": "d9ea8705db9f035dc2b384df615b6e70", + "dwd_hash": "33baa2de6cbe80a234fa26c165549b42" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -47020.0, + "ods_sum": -47020.0, + "diff": 0.0 + } + ], + "mismatch": 5, + "mismatch_samples": [ + { + "refund_id": 2914039374956165, + "ods_hash": "44428571fa76b1f35a505b17d7229cc7", + "dwd_hash": "1f03dd2a2988a3893a5fcf13b26589ad" + }, + { + "refund_id": 2919690732146181, + "ods_hash": "1f891757db8be9b4aab5391a90719eac", + "dwd_hash": "564ac88137dc75343cd9d79cfff46242" + }, + { + "refund_id": 2921195994465669, + "ods_hash": "3bf6576c5cfe976575d4b4ca93e551de", + "dwd_hash": "ac52a15239217cee44e44cae2f880533" + }, + { + "refund_id": 2931109065131653, + "ods_hash": "0bd706be96efe034c9353bb14a883b41", + "dwd_hash": "9b20c6fd5f62c988c40accbf77a13fd0" + }, + { + "refund_id": 2944743812581445, + "ods_hash": "885593ec9bbfa896eb96c6ad8a2f648a", + "dwd_hash": "5139e5bb73c0a6bd8ab48abca7423ccb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23107, + "total_mismatch": 51766 + }, + "generated_at": "2026-01-31T23:46:40.297510+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "label": "segment_6", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-11-01T00:00:00+08:00", + "end": "2025-12-01T00:00:00+08:00", + "cutoff": null, + "window_days": 30, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3874, + "records_with_pk": 3874, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10206, + "records_with_pk": 10206, + "missing": 10, + "missing_samples": [ + { + "id": 3075420149368197 + }, + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 884, + "records_with_pk": 884, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 12, + "records_with_pk": 12, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12034, + "records_with_pk": 12034, + "missing": 12, + "missing_samples": [ + { + "id": 3075426305131973 + }, + { + "id": 3075420146779525 + }, + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17373, + "records_with_pk": 17373, + "missing": 3, + "missing_samples": [ + { + "id": 3075423568774789 + }, + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 80, + "records_with_pk": 80, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8322, + "records_with_pk": 8322, + "missing": 6, + "missing_samples": [ + { + "id": 3075420149908869 + }, + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "e718fc90693c14b34dc4a812808d54519cc6385e6112ea605a9027cdd00a7f9b" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "ac1ce737fb9fff85a07a38bc1c246afb417bea26315968fb609d041f52dedf75" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "ca5dfc011c68c0d4f3151c9e032bfbba0a86bf63f816438dcd053658f8a48cef" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5516, + "records_with_pk": 5516, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "344c1d548000ce2e94bd9a024d6134b05cb23409a014ec74a1f64049700ab1c2" + }, + { + "id": 2793001695301765, + "content_hash": "039bd517ab858d9c60edcf816d13729290159a5c8aceda884fa7f44fccf283f0" + }, + { + "id": 2793002509209733, + "content_hash": "f7731ae70c2594663305a4bbe70fea0a93193446d1584fb2d0d8dfe04fa16415" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 14, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "15f075c3f81939020b0a8125a246c42d3f353a9f96166debd5d8ee1d5b9e597e" + }, + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180501573, + "content_hash": "286c53279f8817c1250d0b0d83bc6031f925cc5ba398fe15f40c71ad794ff27a" + }, + { + "id": 2793026180993093, + "content_hash": "e8d266d76241c61b3c281c37a8a6ca3a7b3a7f3b6737d0f167e770763e57bf86" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3999, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 20, + "skipped_missing_pk": 3999, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 32, + "total_mismatch": 43, + "total_errors": 0, + "generated_at": "2026-01-31T23:50:35.212653+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3336, + "diff": -3336 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [], + "mismatch": 12, + "mismatch_samples": [ + { + "assistant_id": 2946261384596293, + "ods_hash": "b4ecbb1ae3954d3412ea15e31b557272", + "dwd_hash": "111f3e18cfde8d3ec7290a4ae7ef23dd" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "817e0c59906b0acbbd8a55e7c3a44c56", + "dwd_hash": "452544e213e73c708af8b1fb9eb6f022" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e361376337f3fda732fc3ff3db9306c5", + "dwd_hash": "110bd8ceb8f15139e779a474eef7a599" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "cfb80e62b41439b7eece455754351ba4", + "dwd_hash": "ad4bc91ba9f37559b5318e89c692089e" + }, + { + "assistant_id": 2964640248745157, + "ods_hash": "32b25f8128d54a365bf9a7443585bd3f", + "dwd_hash": "3ed9dbe2ef6f89e1b7b916cd70e1f707" + }, + { + "assistant_id": 2964641017858885, + "ods_hash": "367d26706274a18293225f2165772376", + "dwd_hash": "8ffbae3f69f7293c1265771dee1f5578" + }, + { + "assistant_id": 2964673443302213, + "ods_hash": "d9f0774973a53c49d886a4a06970f097", + "dwd_hash": "167f8d1b84cfdd0f15464b2b9d1e7baf" + }, + { + "assistant_id": 2967523548220229, + "ods_hash": "7c6ba3b49a5d7e89ff6127e37158514f", + "dwd_hash": "19cf5d73ec1147573bd80431bcd14a3a" + }, + { + "assistant_id": 2968948701235781, + "ods_hash": "401914b7ff428454e6d6086aadde187b", + "dwd_hash": "45bb8364fa401ca029078b0725cba674" + }, + { + "assistant_id": 2968952636082757, + "ods_hash": "b1acccb7c4d775ef38b50c7fc968913d", + "dwd_hash": "d25e3f51e821f827942ab6b1316f62be" + }, + { + "assistant_id": 2974409288616069, + "ods_hash": "83f58323ffa23b6024c03a9f148b87a1", + "dwd_hash": "db17601f34dba735067a519cef540c45" + }, + { + "assistant_id": 2981625091950725, + "ods_hash": "02dfb2106e300d3bb46715c9f0061d44", + "dwd_hash": "2c71250b8efca7c5784d6404106bebe8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 40, + "ods": 40, + "diff": 0 + }, + "amounts": [], + "mismatch": 40, + "mismatch_samples": [ + { + "member_id": 2945299652708293, + "ods_hash": "5d339bcdfda1de93de685c4ab2b48521", + "dwd_hash": "a05240cf83d58433fa9992d181ccf965" + }, + { + "member_id": 2946070922169029, + "ods_hash": "a0099f49f90cb4cfd27654772a929e06", + "dwd_hash": "323e87145a641593f0a5ec1cf68d4951" + }, + { + "member_id": 2955204541320325, + "ods_hash": "6ecb13e3a312f193084f1acd3dc9339d", + "dwd_hash": "b869da0ec823a9ef208a7f77216639a2" + }, + { + "member_id": 2963080729267653, + "ods_hash": "265ee165d1e321a8c8f951737768ab27", + "dwd_hash": "961cc4dc0167aa5f9e22efa260dcdc40" + }, + { + "member_id": 2963282691968453, + "ods_hash": "571fb1b8056d912514040debb17c1d59", + "dwd_hash": "f2812bef6dc8ffbcbbbbbf90a40b61d3" + }, + { + "member_id": 2963357031615941, + "ods_hash": "884e953b20b213c104edd985bcaf18e6", + "dwd_hash": "09aa98ca520aeb19d6361f75e8b40e8f" + }, + { + "member_id": 2964541607316933, + "ods_hash": "a1f861fba2322f0d07f9cd14af5c4d54", + "dwd_hash": "20c5df8d15b7701e641a114482a793e8" + }, + { + "member_id": 2966172496072133, + "ods_hash": "6c25897ce0bfeb821f00435a88b70292", + "dwd_hash": "bab16ca1da1ac85a8dd00365c4aadb41" + }, + { + "member_id": 2966362986335685, + "ods_hash": "e1e185e418e06e867686728f6adb5a31", + "dwd_hash": "25ccb873e111981bf88b5e09fa8b8d38" + }, + { + "member_id": 2966381620874693, + "ods_hash": "6732bf2a1d6e7d5055ac8be913707191", + "dwd_hash": "8f4189a499a5afd6ec0fa622cf63b7d6" + }, + { + "member_id": 2966453465337285, + "ods_hash": "53009c7ff8b53f02e1bdf6b3efc00744", + "dwd_hash": "b679ed61cf81d517ca869e6fab807614" + }, + { + "member_id": 2967557411589573, + "ods_hash": "70f5beb78ac31562495526fdf8f0dfa2", + "dwd_hash": "d2699dd8d68491d87ad6b17dd33024f8" + }, + { + "member_id": 2968940593907141, + "ods_hash": "9cfb989fdd8ed4cd8ed247918360cb8b", + "dwd_hash": "04b02645011415357d2a78cd16ce7d79" + }, + { + "member_id": 2969257129938053, + "ods_hash": "9b09e4e99122baf0e972946148a75540", + "dwd_hash": "ebfca9fe392c73d875d3ce5b53473cae" + }, + { + "member_id": 2970386005050949, + "ods_hash": "74b153726b3ca4ff32a98eb881ce8d79", + "dwd_hash": "802c2f75533c8a8264bbfa318469a50f" + }, + { + "member_id": 2970668087594181, + "ods_hash": "64ebfa279a3a6c7c186c1dab8a89da70", + "dwd_hash": "7353e342bcee1253fddcc466aaeb8363" + }, + { + "member_id": 2971830157477573, + "ods_hash": "a843a70d0119f6fb47188774fdf99cdf", + "dwd_hash": "7f89c12bee5376aa63d408e35a2361cc" + }, + { + "member_id": 2972037072081541, + "ods_hash": "4f251b686e4e6d93f032c2168c19a60a", + "dwd_hash": "2798eb075386d05eed1b0e1ad9bfd0a2" + }, + { + "member_id": 2973199975761797, + "ods_hash": "dcb162fa1d822e1aef786ac883b3451c", + "dwd_hash": "51644fe4c3dfc4077d73e1281e15ae6f" + }, + { + "member_id": 2973479575832453, + "ods_hash": "2206da5bea756856ce6dc757a215ed41", + "dwd_hash": "9f97548e9ef67c79d3bae78d0eb9af70" + }, + { + "member_id": 2974754075445125, + "ods_hash": "ed89175a8a7df1754876d921f48cd026", + "dwd_hash": "678c2a629f3516d9b52a0b48bfb3379f" + }, + { + "member_id": 2974754559625093, + "ods_hash": "c4f3452d8fc5483df61f80bfe3751d42", + "dwd_hash": "f86eb85dc13b4004c3960224ef0de685" + }, + { + "member_id": 2974755670493061, + "ods_hash": "62c467588d4b6aa699a2af9d61ac84bb", + "dwd_hash": "5b6c8440b4f1305f1a35794f5c78cab0" + }, + { + "member_id": 2974756216031109, + "ods_hash": "c89d20cc504cbcff58a0cb8e2d76561c", + "dwd_hash": "04f0a9623e8e07be3a9c4a19664d092e" + }, + { + "member_id": 2974770547348357, + "ods_hash": "06e8cd860cb7e794fa9fe1e6d0d3b31e", + "dwd_hash": "4aea3580f0ae3a783d19b955ea79c11c" + }, + { + "member_id": 2974785493485445, + "ods_hash": "c6d80b53faf97fdfe7464e6e1f2e7a4c", + "dwd_hash": "57a1956bcb5a1a7c6add1e4936487d39" + }, + { + "member_id": 2975065345119045, + "ods_hash": "c17842c48eca4fd505d486a47d5665d4", + "dwd_hash": "c11ffce37aa91fbba55694e50c9e724a" + }, + { + "member_id": 2976354546927493, + "ods_hash": "f788e4fb22a3b4fd85e692c8e4ba294d", + "dwd_hash": "8cc49daa63775691fe8a4091bdf9bf43" + }, + { + "member_id": 2976361970370373, + "ods_hash": "b765a0904eca25e8ed6c9281639693a8", + "dwd_hash": "940ae43732d14aedb9655df001e50d09" + }, + { + "member_id": 2976369237493637, + "ods_hash": "fba04b04f295b06526d18d39c5042620", + "dwd_hash": "364ab7c0eca3416800369117a3713cf7" + }, + { + "member_id": 2976372411533189, + "ods_hash": "441fe5cb67a750ae43255b44dbdd00a8", + "dwd_hash": "a0e47ffb00d86d62d8541ca045b72e57" + }, + { + "member_id": 2976376546117574, + "ods_hash": "be4c7a4e9d27bec95627d801d0eb5fa0", + "dwd_hash": "68e42c7a0b7505ac7d56131a4430f7d5" + }, + { + "member_id": 2976465665476741, + "ods_hash": "8afe78e5b8d911b42ffd7d27aee1bcba", + "dwd_hash": "59a541b5f9a4f4859e652d6e14829be2" + }, + { + "member_id": 2977807259142021, + "ods_hash": "314bbacc1bd511ae19bb1616fc04a76a", + "dwd_hash": "95804f3d296a307419c007b4454d1c1f" + }, + { + "member_id": 2980065690831173, + "ods_hash": "82a8bc980962305612d497d8c9f9a5ae", + "dwd_hash": "484d8d32241350d1a08f5a1e964dfac1" + }, + { + "member_id": 2980518051006341, + "ods_hash": "61abb184836f02f222b5c5628492507b", + "dwd_hash": "f9e9e983aca720cd98f7a48c63517681" + }, + { + "member_id": 2983452013021509, + "ods_hash": "840b2a3b2d2e52daf5e2ee6d4e97b0df", + "dwd_hash": "1e22089e341fb1639740bf253a0d96a8" + }, + { + "member_id": 2984700277263365, + "ods_hash": "fac30312bd7dcb191309d40782452a0d", + "dwd_hash": "71945bfb20f0e2d27ffac68820033511" + }, + { + "member_id": 2984798972709509, + "ods_hash": "fcf1150d033f67a3ffa8bfc6a0a7ddb6", + "dwd_hash": "08759e96b2b52aed70e4503529238df8" + }, + { + "member_id": 2985941423934469, + "ods_hash": "a554c3f6602741653c08825b3d4bcd15", + "dwd_hash": "1a3c47fb659bc9a946046a18b6fc6b62" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 80, + "ods": 80, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 80, + "mismatch_samples": [ + { + "member_card_id": 2945299653003205, + "ods_hash": "7631218d028b598c551816af8e901e32", + "dwd_hash": "e200cedfd6eea217a1fc2ff64b95ba3c" + }, + { + "member_card_id": 2945300519405509, + "ods_hash": "13aacc8fe9199473d5578646a0d8d53b", + "dwd_hash": "02b2a3b52562b68a2c7c1b30600f02ea" + }, + { + "member_card_id": 2945598955374725, + "ods_hash": "6c116d572b0a9c80e71ee9f901327787", + "dwd_hash": "42460a959b85a4eb97d6dcc47a6b7991" + }, + { + "member_card_id": 2946070922889925, + "ods_hash": "6634c10f88798f9048765adefe6fdfc8", + "dwd_hash": "6458966fbd7104b8d11e61034a8fa587" + }, + { + "member_card_id": 2946071339616325, + "ods_hash": "f2a07df3b1100540ea42a083e793ce4f", + "dwd_hash": "7aa0d7c6b2b7bb904723c5ea469958e7" + }, + { + "member_card_id": 2946072298784837, + "ods_hash": "41940fc0474ef7cac586217542d138cd", + "dwd_hash": "b413a30b9344cd2bcbacf02d9bdeca57" + }, + { + "member_card_id": 2955204541615237, + "ods_hash": "9b497343d8b5abaad4e829fb68d783d7", + "dwd_hash": "2f99333e6cb85dfdc92ca5595d1160da" + }, + { + "member_card_id": 2955206162843781, + "ods_hash": "a81ade9c8d4505c107804c1b74b95935", + "dwd_hash": "12baaacf9124cac5cffe9bd9a8f5fb23" + }, + { + "member_card_id": 2963080729562565, + "ods_hash": "f69fa8c859d82cfa0ef1806c1a05f5a1", + "dwd_hash": "8386450a8dbabe0b3ca16686473c7b87" + }, + { + "member_card_id": 2963081046953669, + "ods_hash": "01f5c43905131e87f13a4f7fb092d03b", + "dwd_hash": "710c6f39936ab0e75bb60010d6d8558e" + }, + { + "member_card_id": 2963282692246981, + "ods_hash": "c965f86ccb99f740dbb59afc2728eee2", + "dwd_hash": "53f62330c4521c3bf1bd01062be13c53" + }, + { + "member_card_id": 2963357031960005, + "ods_hash": "8523fc181867b6f054456fa9fe609bc0", + "dwd_hash": "c48a272fe77c8d7640e47f035c40cefa" + }, + { + "member_card_id": 2964541607611845, + "ods_hash": "2fa66cc2fc01a6b0e278c57cba334a05", + "dwd_hash": "4745366732c0f46b415104931d15a6e2" + }, + { + "member_card_id": 2965088556746437, + "ods_hash": "c489bdd69526a24170b058e667664c12", + "dwd_hash": "efee02bdf5d0ce24984e8188d74f1afe" + }, + { + "member_card_id": 2966172496350661, + "ods_hash": "a35be8d41035b65682b96d4bb511419b", + "dwd_hash": "7c2a14ab5ca67b3e37613db14e33cfc5" + }, + { + "member_card_id": 2966362986630597, + "ods_hash": "8400bc015aa0f7380f4b93ac47b8371f", + "dwd_hash": "b6141d8a976181c721314b19f5874543" + }, + { + "member_card_id": 2966381621185989, + "ods_hash": "0f91e870edddfb65ada44543c6de586b", + "dwd_hash": "b18818a06250fcb59c834bb4391d1fa5" + }, + { + "member_card_id": 2966453465615813, + "ods_hash": "d8f5dfe73b92a3e987beecde0d14d4b6", + "dwd_hash": "ecc2338793619eb02e69a386a34e7f49" + }, + { + "member_card_id": 2967557411868101, + "ods_hash": "d2b41d4e1de45c06c716313d1793e9bb", + "dwd_hash": "e837e5f21cc68cbca41512e25d316b07" + }, + { + "member_card_id": 2968940594202053, + "ods_hash": "9bfd1439d04fd2fce98b4fe3de7065e9", + "dwd_hash": "88713c7e2d8750ffa898582241de0365" + }, + { + "member_card_id": 2969257130232965, + "ods_hash": "35ac52e17a7e88a83914225362545af4", + "dwd_hash": "a06f51b1b2f51c9ecdb6e375050d9568" + }, + { + "member_card_id": 2969257428700293, + "ods_hash": "b8b0bc10d2c0f8cc9b2430b286ebf92a", + "dwd_hash": "b8a523b68327f3c7f211b1c3da4e9398" + }, + { + "member_card_id": 2970386005919301, + "ods_hash": "6676cf311f4f7edb206c42ee2055ca74", + "dwd_hash": "f8a7b450f87ab18e4b26caf8b3a9d90a" + }, + { + "member_card_id": 2970668087872709, + "ods_hash": "034df29862643b3b798381b3a7056260", + "dwd_hash": "42f7c8da9dc74e2fc82b78470670c855" + }, + { + "member_card_id": 2970668479384453, + "ods_hash": "42b37dae4f8d35cf2a157be358df1bdf", + "dwd_hash": "d62c04c1f59198249a07632695a97920" + }, + { + "member_card_id": 2971830157772485, + "ods_hash": "2dff48cca83beb500908166d72cd4e0d", + "dwd_hash": "cabcee86fe52daa828a496b7026185d9" + }, + { + "member_card_id": 2972037072343685, + "ods_hash": "6df00a866cd373fa9f16c21c00b522d2", + "dwd_hash": "22703e1a679c5a4f5fcee0a8fc61f3c3" + }, + { + "member_card_id": 2972037629840517, + "ods_hash": "a1f3ee3e3215474a431aac434eac9c66", + "dwd_hash": "aaa7d5af26e44806f628867f1b6490e4" + }, + { + "member_card_id": 2973199976089477, + "ods_hash": "ee5b79bd07a0407c60f6d798b8a38c34", + "dwd_hash": "5a7b492c07be7de18368ff0c4fa086f5" + }, + { + "member_card_id": 2973479576110981, + "ods_hash": "7e4c075342d8b7d2fb471100badafe71", + "dwd_hash": "4c9931b5b54983c121dbaea04d06e2f6" + }, + { + "member_card_id": 2974754075723653, + "ods_hash": "32d6e908c8f8496718f724e44cb3134b", + "dwd_hash": "e3d117a8c884f02caa34353a23c7d9ba" + }, + { + "member_card_id": 2974754559903621, + "ods_hash": "2fb4a49ae34c8c8f1526089d6f805cd1", + "dwd_hash": "24d319bf0aaad07f673f09b5d3f3474f" + }, + { + "member_card_id": 2974755670771589, + "ods_hash": "2d70d618a7ec186a02fb9a41d6c62d0f", + "dwd_hash": "59fcbefa2d5a311ac82ab6d615fd7350" + }, + { + "member_card_id": 2974756216326021, + "ods_hash": "d2f3bcde09d45e1cf4ec4f7c80031f2b", + "dwd_hash": "a78ba7b4fd39edddebf171d4115e558e" + }, + { + "member_card_id": 2974770547643269, + "ods_hash": "afe4867e6b2e554412413cd49eb2fe7e", + "dwd_hash": "4e384910b42701e85a818126a14e98bb" + }, + { + "member_card_id": 2974770908697477, + "ods_hash": "e391d7485add865c0a0ac4b076487894", + "dwd_hash": "e555c9b2221109de7873890253bf5ab6" + }, + { + "member_card_id": 2974770958340933, + "ods_hash": "9a31d700d51d711d10945df0a496a927", + "dwd_hash": "cfea047e725993715c5e730c9787b3f0" + }, + { + "member_card_id": 2974785493747589, + "ods_hash": "82ab8773d7179c718367d763f2784cd7", + "dwd_hash": "a256821e96ead935dfa8ea170fdba26a" + }, + { + "member_card_id": 2975065345397573, + "ods_hash": "1ebe34bca2ce414c72c1e50b520f5566", + "dwd_hash": "582a061204b3b86f34cd2cb9ffe578bf" + }, + { + "member_card_id": 2975065876861893, + "ods_hash": "8e2995aa3fc5e0493aa32e3fbb997d1a", + "dwd_hash": "9e129a055a27e1d74c9a4dd277ee8318" + }, + { + "member_card_id": 2975065981473541, + "ods_hash": "d5bd25ea5572f3840d61a92aa532cde3", + "dwd_hash": "b51b3a49e1cc2cd4bf038f0b612bc887" + }, + { + "member_card_id": 2976060892301445, + "ods_hash": "be2e45655b37e598351058ded1125c47", + "dwd_hash": "f0b5d99c113a991c646f14e565acc829" + }, + { + "member_card_id": 2976268383766469, + "ods_hash": "2a4cec059ba9c405f6fba6a045401632", + "dwd_hash": "923e6d16a2fd22e0df846c4718dc2a3a" + }, + { + "member_card_id": 2976268659476293, + "ods_hash": "39e89e476beac6ab52c11207c933526a", + "dwd_hash": "c0241362a9d8d0133601b5c79764ba2d" + }, + { + "member_card_id": 2976354547206021, + "ods_hash": "860605059c5104922bf742d8a0c7117a", + "dwd_hash": "bcaf6b48c707ccd6dc69dad6c1b3e808" + }, + { + "member_card_id": 2976361972205381, + "ods_hash": "05f0bb323b831131f923cdc1c3db23b2", + "dwd_hash": "67ddb1216414fd4c4ac1d3a209e5b8d7" + }, + { + "member_card_id": 2976362493413509, + "ods_hash": "9bf881e7ce6d2da2637d04adb4069ebe", + "dwd_hash": "61d04e30122d94ccc8e0d1d1c81f6426" + }, + { + "member_card_id": 2976362549004101, + "ods_hash": "c3b55b3b89893e1abfa38ac49f6680d1", + "dwd_hash": "2acbc61fe9b3a5ae3b414aa0720f78b9" + }, + { + "member_card_id": 2976369237837701, + "ods_hash": "967e4f59079b4ffe6652558a16988225", + "dwd_hash": "0eeb330a7a9a487be422efe23a583495" + }, + { + "member_card_id": 2976372411828101, + "ods_hash": "0fe132a9416cc0ffef4bb514e13a7974", + "dwd_hash": "da95d490e7051535cac9c2b663700eaf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 2959250949670277, + "ods_hash": "f32731ce7782ca5abb7db085bcdd1376", + "dwd_hash": "ee0161489c89c7e76289b5b77f2cc897" + }, + { + "tenant_goods_id": 2964701792325061, + "ods_hash": "09ae6882e4666aa97226c2c0343bf8db", + "dwd_hash": "24d49843cd1dfbcae9dcadd6effa080d" + }, + { + "tenant_goods_id": 2966338744487365, + "ods_hash": "6181d8770a5e87d34ecc28795e23f764", + "dwd_hash": "a759e790d225ac274b10b55023bbaf17" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3336, + "ods": 3336, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71642.8, + "ods_sum": 71642.8, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 394705.62, + "ods_sum": 394705.62, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 33307.25, + "ods_sum": 33307.25, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 156623.79, + "ods_sum": 123316.54, + "diff": 33307.250000000015 + } + ], + "mismatch": 3336, + "mismatch_samples": [ + { + "table_fee_log_id": 2945209281415301, + "ods_hash": "13c452b3928f04f6ab2aa76ce84ca0ff", + "dwd_hash": "1c09ff0beb882aca4feac153e657d598" + }, + { + "table_fee_log_id": 2945219533375557, + "ods_hash": "ddcda4e79fcdd3aedf9cd5462b9cde8d", + "dwd_hash": "867e54955f7a70dfd79dbdaa1bfd5da0" + }, + { + "table_fee_log_id": 2945223817644101, + "ods_hash": "edbe362ab3d28b5813a940c26e415331", + "dwd_hash": "f28d295af48dc565dc1069a680f8681b" + }, + { + "table_fee_log_id": 2945238240675781, + "ods_hash": "5706b92cbb15648e4f8427272bd4fb98", + "dwd_hash": "4ca613dc9eaff5cd6dec0a76fce3b047" + }, + { + "table_fee_log_id": 2945244231747525, + "ods_hash": "8381168850c4bb59f672f757e1ae7f31", + "dwd_hash": "b53894549e410cb8a19bbfa7e4c58a42" + }, + { + "table_fee_log_id": 2945250914715589, + "ods_hash": "080c15f7b3f602e6b9097ae4d7fa6602", + "dwd_hash": "c42c3bffcada092e84db9d8849c88c34" + }, + { + "table_fee_log_id": 2945265999841349, + "ods_hash": "38f47f66d5803a5abd8a86adf55222a8", + "dwd_hash": "1a1a65c7d9a34d16db2b712b66883ed3" + }, + { + "table_fee_log_id": 2945282190657477, + "ods_hash": "be42f4ec700c10bdc89c82d3392b65b5", + "dwd_hash": "a039c2fe1e79167d8f6f80ffc2403d5f" + }, + { + "table_fee_log_id": 2945295730985093, + "ods_hash": "913e0d8f35e78470cbccd7efff384e9b", + "dwd_hash": "692328022cf8a2fcfd96656c9e99d3af" + }, + { + "table_fee_log_id": 2945296564308037, + "ods_hash": "275ea97826eb6c7e00b327289892d456", + "dwd_hash": "f447fbe6f7bcb061d5d14d3eefbc4fb2" + }, + { + "table_fee_log_id": 2945297080289285, + "ods_hash": "d1c7a58ae07c181dcb43c664e432e86e", + "dwd_hash": "97b773f00411239f6c57a2010c60e62f" + }, + { + "table_fee_log_id": 2945308564916293, + "ods_hash": "ff0832dab128b8b19af19089897705c7", + "dwd_hash": "680b948519554f6949c3357910bcbda0" + }, + { + "table_fee_log_id": 2945327284095109, + "ods_hash": "bb4bb948d07a6287b508723e19a7329b", + "dwd_hash": "bcdfd62b05833402faac3bb67067c7e9" + }, + { + "table_fee_log_id": 2945328508340293, + "ods_hash": "8a000ffa426f72814c7737b1ec502f3b", + "dwd_hash": "813745ab543327b98c8f74f0130ff1d9" + }, + { + "table_fee_log_id": 2945343828953093, + "ods_hash": "3c790b6bd75c4d0a68ed94706bf05a8c", + "dwd_hash": "f12fadce707e636f7ef6c8ec16d13224" + }, + { + "table_fee_log_id": 2945355734992965, + "ods_hash": "bb08a3957473fd7e3fa395885e13b32c", + "dwd_hash": "06479e897839b2380801347238e81eb5" + }, + { + "table_fee_log_id": 2945370019399813, + "ods_hash": "82c9dad70749428d56e7fd2bb7ec1dd7", + "dwd_hash": "318423c2e2ff6866d15e327c07fd9bd6" + }, + { + "table_fee_log_id": 2945379788327045, + "ods_hash": "8a01504593a4abba361859ec1328274b", + "dwd_hash": "d81bb240093e3bf418a066858856b967" + }, + { + "table_fee_log_id": 2945387231872965, + "ods_hash": "282748ab213dd803de9984741bd8d42a", + "dwd_hash": "cebc629837964f0cde1bde57895a5376" + }, + { + "table_fee_log_id": 2945412155639941, + "ods_hash": "68145cb7b67b785cc606767cd3166260", + "dwd_hash": "74488e67d6b5553477547f0301f567ca" + }, + { + "table_fee_log_id": 2945415969065093, + "ods_hash": "2e31880abca6cc816e64ab97a996ea9b", + "dwd_hash": "b994a5a666e9fca73849edfc43c03f1d" + }, + { + "table_fee_log_id": 2945462213248965, + "ods_hash": "f8dfbd8bc2e065e7c02bbc89f2a5a286", + "dwd_hash": "b8044911265f235e8865f2529a094481" + }, + { + "table_fee_log_id": 2945465518999557, + "ods_hash": "ba153704284f93c528154c51b3933a03", + "dwd_hash": "3a4c7d5e355e24cadee9a21db6dd1514" + }, + { + "table_fee_log_id": 2945530360367109, + "ods_hash": "e9ab9c006bd53eef83bf57289056eacb", + "dwd_hash": "1e4c428e8b9f43ab5279e39efea11796" + }, + { + "table_fee_log_id": 2945604898736133, + "ods_hash": "f4b4b94f59ef41eb146c4e9b33f27f2e", + "dwd_hash": "5fc216e1d7bc956fd69405c55df3d235" + }, + { + "table_fee_log_id": 2945871138064389, + "ods_hash": "f852cb8d6bf20ebb6b61bbb33a24f7de", + "dwd_hash": "60886435b072d73846f21c214b7f1ec7" + }, + { + "table_fee_log_id": 2945876560381893, + "ods_hash": "c31773f015b04e5334fc8c57567bc5ce", + "dwd_hash": "77f42fd5d6f4691c39c626c3d0659bb9" + }, + { + "table_fee_log_id": 2945876626344069, + "ods_hash": "cbb7298a4126bdc619648b795ee065f2", + "dwd_hash": "a970a70cb0f0dbaac36922805ae18d4a" + }, + { + "table_fee_log_id": 2945894625216517, + "ods_hash": "a5967a9d3ec2c6cc7d234d33ac84c7f5", + "dwd_hash": "5e594f665e0678d12bd1c2b12efe2ac3" + }, + { + "table_fee_log_id": 2946023884032005, + "ods_hash": "6a8f8984a30af0fb6366e0d879518a95", + "dwd_hash": "99e54bbf727a6983d63a2252eafc7a82" + }, + { + "table_fee_log_id": 2946052226074629, + "ods_hash": "17b1b3f094051d689b1b1c39fe022fad", + "dwd_hash": "45146bdb61896d89be252da3c83bfbf8" + }, + { + "table_fee_log_id": 2946055145506757, + "ods_hash": "4122d238851ffa1311122c7eaac1b323", + "dwd_hash": "3c25f27c02895afd200f431cd7cf1c0f" + }, + { + "table_fee_log_id": 2946062771193989, + "ods_hash": "cd223d4d2351d1b6a086c92dad84ac53", + "dwd_hash": "7bb4d1cb9d16ce50a822c1d88062503b" + }, + { + "table_fee_log_id": 2946081282951173, + "ods_hash": "762bf315bbfd0294af65b489e6ff39c5", + "dwd_hash": "f350c4608d6459365bc8493ea3d132ad" + }, + { + "table_fee_log_id": 2946086439618501, + "ods_hash": "5ce183bc78ede4732f598ab5214a0afd", + "dwd_hash": "5dda5deabe0975122fc9703bd57f6b66" + }, + { + "table_fee_log_id": 2946118185600965, + "ods_hash": "726646c97b41191db818c999db443d79", + "dwd_hash": "5bbdfd357e693436588e09895ffa3116" + }, + { + "table_fee_log_id": 2946131746015365, + "ods_hash": "9e5c227896acf79b38212ffecfd0caf3", + "dwd_hash": "f81ac3b875ce16ffab339a34fc44a932" + }, + { + "table_fee_log_id": 2946137103501253, + "ods_hash": "ff50761c2de1900eed16188db1f56b54", + "dwd_hash": "b6aa8193c694cd914d36d574f585ef6e" + }, + { + "table_fee_log_id": 2946138050365381, + "ods_hash": "0b1c43e6b141a5681f6f8d5d27eda9b6", + "dwd_hash": "5208f053796d84f587923e4124b3b42f" + }, + { + "table_fee_log_id": 2946138833127365, + "ods_hash": "c0f82c19f18c87a56cb3b35d6c09ea56", + "dwd_hash": "20d5a9bda1cf4319e8cf72d665c62352" + }, + { + "table_fee_log_id": 2946140342650949, + "ods_hash": "2c7d56ceb8094a1af3dd5aeba3d9ba6a", + "dwd_hash": "19c89b8b7d2281ef15da0a8681f10e64" + }, + { + "table_fee_log_id": 2946147440363461, + "ods_hash": "16ea977ad06cba07d41c73c058be0874", + "dwd_hash": "fd16e1f19154fdcc2951dfd49fbf63ef" + }, + { + "table_fee_log_id": 2946164124125253, + "ods_hash": "4335e3838c6c753393e490cfbb216f2a", + "dwd_hash": "d14fd1bc15188c64a8270be907a7f0ea" + }, + { + "table_fee_log_id": 2946173959735365, + "ods_hash": "5d5b8f2c8dc4e73bd1698e1961c0c720", + "dwd_hash": "006620bb83f003f81118c5bc10b8378f" + }, + { + "table_fee_log_id": 2946177074137093, + "ods_hash": "c2d55412d36ff60a5246de9729f213e1", + "dwd_hash": "af708da1e9bf34ff64354c899c41182c" + }, + { + "table_fee_log_id": 2946179149645893, + "ods_hash": "ffd563abf6c12052606d958ff97fd312", + "dwd_hash": "70fab3bdcbd3244929284f69af5aa4a2" + }, + { + "table_fee_log_id": 2946183647184837, + "ods_hash": "d09c0c82196b046e26d5b8915ca6b587", + "dwd_hash": "afb507f11f45fe2809b6e37d7d393e08" + }, + { + "table_fee_log_id": 2946192223848389, + "ods_hash": "44eec8cebefbfdc65d578204f546d9bb", + "dwd_hash": "895f9a9577616b725f7cd8364a313692" + }, + { + "table_fee_log_id": 2946192288499781, + "ods_hash": "e465412c04d247db9878fdf0a7cc6c18", + "dwd_hash": "3a2fc4f273e0fb3b211bf3c03ccc2782" + }, + { + "table_fee_log_id": 2946197297907845, + "ods_hash": "a9994ce1d4af53b8d9bb3994d6694cdf", + "dwd_hash": "643b06706be671cf112000153284ee16" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4134, + "ods": 4134, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 1544.05, + "ods_sum": 1544.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 98139.8, + "ods_sum": 98139.8, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 87610.8, + "ods_sum": 87610.8, + "diff": 0.0 + } + ], + "mismatch": 4134, + "mismatch_samples": [ + { + "store_goods_sale_id": 2945219534866501, + "ods_hash": "f1e67065c6f7711e0631932df0a179fb", + "dwd_hash": "3c8219ced35555f4a83e4d684a000759" + }, + { + "store_goods_sale_id": 2945219534866502, + "ods_hash": "e4e8944bc9c29ab83e12d861fcc80b29", + "dwd_hash": "eb10895558a492430c029f2033f34825" + }, + { + "store_goods_sale_id": 2945219534882885, + "ods_hash": "c383e88cc0911244ef937f5694bce10c", + "dwd_hash": "9d4a7b5741cb62e6483fb655b1776ef6" + }, + { + "store_goods_sale_id": 2945219534882886, + "ods_hash": "ef023beb8ac558da9b5bd62bfa4b96e9", + "dwd_hash": "bf65238a47b9a27bedc244b972e03c40" + }, + { + "store_goods_sale_id": 2945219534899269, + "ods_hash": "9388cf6a9503bce923b7dc95f6991360", + "dwd_hash": "ada1295ed48dc1176bb35fecb92f85d6" + }, + { + "store_goods_sale_id": 2945219534899270, + "ods_hash": "57e9afd2c7e63b40d04bbd4f6c8bd57f", + "dwd_hash": "a133ad4f07b91ffdd87e3a91f9f7ec0f" + }, + { + "store_goods_sale_id": 2945219534915653, + "ods_hash": "d1c12e54763758936873d35a8ffa80a0", + "dwd_hash": "dce4740fbe5651fbba1c34edb3ebe849" + }, + { + "store_goods_sale_id": 2945219534915654, + "ods_hash": "5e190e96c9f454f3b51cab14ae9d500a", + "dwd_hash": "093b52359ef2a75230b798d066a97c09" + }, + { + "store_goods_sale_id": 2945219534932037, + "ods_hash": "2910c13250a931a11c12bcbf83b9aa91", + "dwd_hash": "5fc6206aa2fe7e5a812299c9d67e2836" + }, + { + "store_goods_sale_id": 2945219534932038, + "ods_hash": "38b6314875ef051f10a4b5395e11ae30", + "dwd_hash": "c9dbe64959edce5fbaef3afa22acc715" + }, + { + "store_goods_sale_id": 2945223818086469, + "ods_hash": "f83c65155d29c8869ed11a21c8558f21", + "dwd_hash": "817f2d7f341e483f1822349a883ef514" + }, + { + "store_goods_sale_id": 2945223818102853, + "ods_hash": "aa99465f0e5c257321118459b5938901", + "dwd_hash": "83eb07cd20c86c396b9a798308d44236" + }, + { + "store_goods_sale_id": 2945224216397893, + "ods_hash": "2e496875ed2fa90827b57bcfda228c68", + "dwd_hash": "b4b440ad60eec97bf0a1e5a282130a5d" + }, + { + "store_goods_sale_id": 2945266000218181, + "ods_hash": "ff271ac6163703256829b32efa5e9a8c", + "dwd_hash": "55fab48e2b5eb312648bbc0e1c29c7af" + }, + { + "store_goods_sale_id": 2945266000234565, + "ods_hash": "6ba62ff9ad80cb81a1726387ff39f4e9", + "dwd_hash": "669b05bdf3ccef4f99fd8136e3fec553" + }, + { + "store_goods_sale_id": 2945282191984581, + "ods_hash": "c6d834ea0a8af93389f6108edd28ece7", + "dwd_hash": "8224616bfff86d9bd207e95c8b5ce036" + }, + { + "store_goods_sale_id": 2945295731411077, + "ods_hash": "fd3871fa8f5ae3235bcc7eaeca8ed0bd", + "dwd_hash": "5b6f01de0f8dd0e7a008fbd57719eec1" + }, + { + "store_goods_sale_id": 2945295731411078, + "ods_hash": "727bf78335e0df9cab664e99855fe757", + "dwd_hash": "3dd4e57d56799985b3a67202e7fe75df" + }, + { + "store_goods_sale_id": 2945295731427461, + "ods_hash": "2d1fbe6706c2a243d8fe1d9c93dcaba3", + "dwd_hash": "3e5a58ee575c5596b338c1b957b97ab9" + }, + { + "store_goods_sale_id": 2945297080682501, + "ods_hash": "4eec6d20cbe8c0485298f0b924bea38a", + "dwd_hash": "ed3ac9e3c526fe162df3b08fdcdfb230" + }, + { + "store_goods_sale_id": 2945297080698885, + "ods_hash": "d3ece252a5133a2a192cbe14f756bba0", + "dwd_hash": "26421a93ed721a4a0f748b59256d7578" + }, + { + "store_goods_sale_id": 2945308565293125, + "ods_hash": "fde49f42a175a9ea8762d572406b6525", + "dwd_hash": "93dee718b28d6a75985e996a077777fb" + }, + { + "store_goods_sale_id": 2945308565309509, + "ods_hash": "18549e79de342cac5d6a5d6699c6ab4e", + "dwd_hash": "d3e8e2699feb9cb07cee4771297fce58" + }, + { + "store_goods_sale_id": 2945370019776645, + "ods_hash": "ef18e6b629fbb5b6e86cd8886f400574", + "dwd_hash": "682e62c59b3b5078946798527a78764b" + }, + { + "store_goods_sale_id": 2945415970097285, + "ods_hash": "d2c782da065ab20f482db0e25ea8a1c1", + "dwd_hash": "cf9e384a29bfaefd2d8bf8546cbc90ec" + }, + { + "store_goods_sale_id": 2945415970113669, + "ods_hash": "808b7b810d3e3ddcd1538453dee543a7", + "dwd_hash": "8b53fbd736dc1050ec9f6072a85a0632" + }, + { + "store_goods_sale_id": 2945415970113670, + "ods_hash": "277f2ab9f00130837fb0e05a6478e8b6", + "dwd_hash": "fe6e9e6c520b0395abfa3cb6275020fe" + }, + { + "store_goods_sale_id": 2945415970130053, + "ods_hash": "17fd3eadd2e80fbf776e9288d4d6417d", + "dwd_hash": "e5707b39dded041b02238620cf00537c" + }, + { + "store_goods_sale_id": 2945415970146437, + "ods_hash": "1664397eaa5d074758dd78f3fb9422eb", + "dwd_hash": "64c67ecd7d6d52ef216636f5d0326195" + }, + { + "store_goods_sale_id": 2945415970146438, + "ods_hash": "3be6d6d70ed60c8ed3350679431dfde4", + "dwd_hash": "9e52436606bfe5bb6cc39adfb1d1ab1f" + }, + { + "store_goods_sale_id": 2945415970162821, + "ods_hash": "d488d38ae1849339c74373b1085faffd", + "dwd_hash": "081ac6074602b53707df3c28f6447372" + }, + { + "store_goods_sale_id": 2945415970162822, + "ods_hash": "ef82f853b16708ef10d6ffe5c5adf82d", + "dwd_hash": "fc19e465fe16065cb40e65ccbd95ed58" + }, + { + "store_goods_sale_id": 2945415970179205, + "ods_hash": "63f810f927c7da5ad67a9aa9264829c7", + "dwd_hash": "0507770aa44e9e0f9a4dbbb967ea52c4" + }, + { + "store_goods_sale_id": 2945415970195589, + "ods_hash": "43db153e25308718fbec18e90a4177d9", + "dwd_hash": "d31c217c7223722134a118573a034eb7" + }, + { + "store_goods_sale_id": 2945415970195590, + "ods_hash": "c29d9bf3b675cfd0951b6eed9670fb93", + "dwd_hash": "8e51b3ed05a23617c2d932272916e97c" + }, + { + "store_goods_sale_id": 2945415970211973, + "ods_hash": "bf0773e006df6c1b67865cbaa6a752e5", + "dwd_hash": "f8a0cdf52b78611eaa23960f3bad78c1" + }, + { + "store_goods_sale_id": 2945465519409157, + "ods_hash": "ad7b32b5ede80c19d755d23e1b13737f", + "dwd_hash": "262ee24c19e6db2944d4d2a4b6ffe073" + }, + { + "store_goods_sale_id": 2945530363185157, + "ods_hash": "eaf2f8ae4435d134eaa3d2c9f42331eb", + "dwd_hash": "79d1dbd8851939a51eef7a960b00e93d" + }, + { + "store_goods_sale_id": 2945530363185158, + "ods_hash": "2eccc4298f645e121e44ba11075fea1c", + "dwd_hash": "28d96c98e38bbd3e60c6343edd1000d5" + }, + { + "store_goods_sale_id": 2945530363201541, + "ods_hash": "521c6dc5e14c7570f579181d199b7b43", + "dwd_hash": "b2d839411e3789ff256fb76d5b801a83" + }, + { + "store_goods_sale_id": 2945530363217925, + "ods_hash": "91f99d792bb2079f6e340893cd2cdd56", + "dwd_hash": "2aad6fd1cb5882fe2422ebf02f9f7eca" + }, + { + "store_goods_sale_id": 2945530363217926, + "ods_hash": "578296527c5d28aadc194aaeff445b5f", + "dwd_hash": "9d2b1689cc3d86bd119b792c301be14a" + }, + { + "store_goods_sale_id": 2945530363234309, + "ods_hash": "aef392f0eaff234220f251d7becef084", + "dwd_hash": "2540a252e1af220d81d844c7a5d7775f" + }, + { + "store_goods_sale_id": 2945530363234310, + "ods_hash": "6b428fb7818723681d509b7e7829002a", + "dwd_hash": "f83c5c89b72d2bff68ce2ad4355e9c95" + }, + { + "store_goods_sale_id": 2945530363234311, + "ods_hash": "020ea40cc4ac81d3a340a9967463c1b6", + "dwd_hash": "61adabb1b54e58c5e758acdbc7b900fd" + }, + { + "store_goods_sale_id": 2945530363250693, + "ods_hash": "64116c5afd277ea30632e57003253892", + "dwd_hash": "c66d0bacac1085eb5f9688fa058fd80b" + }, + { + "store_goods_sale_id": 2945530363250694, + "ods_hash": "f51b9f929f71b009b23580e53834599e", + "dwd_hash": "b44f5e43b5c4e4ec47652d9ea387fb3b" + }, + { + "store_goods_sale_id": 2945530363267077, + "ods_hash": "193a41aca0271f4db7790800f3227855", + "dwd_hash": "1615f76ef76c678054290e3a15cebc9f" + }, + { + "store_goods_sale_id": 2945530363267078, + "ods_hash": "5d25eef8125e314d1441e3189bb9684e", + "dwd_hash": "6daa5873f6990fd52a185d000f6f7b76" + }, + { + "store_goods_sale_id": 2945530363283461, + "ods_hash": "7290b5bb1b0d368f736ebd1e3a246fbe", + "dwd_hash": "d36a2350189eaf35718018de8f19640c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 884, + "ods": 884, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 1437.75, + "ods_sum": 1437.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 281102.62, + "ods_sum": 281102.62, + "diff": 0.0 + } + ], + "mismatch": 884, + "mismatch_samples": [ + { + "assistant_service_id": 2945219533834309, + "ods_hash": "07925820f75b0a810943241624288d57", + "dwd_hash": "714303e7cc8fc19e5e7a0d571eeb8e2f" + }, + { + "assistant_service_id": 2945219534129221, + "ods_hash": "4b97a700ab983a532e633ebc403a95bd", + "dwd_hash": "4b795b322e1a62443e97d643deed808c" + }, + { + "assistant_service_id": 2945238241101765, + "ods_hash": "be2968f6b6597b82b7d8e884a00e2453", + "dwd_hash": "8690e441c2787cf6bb72a196c9a8c1f2" + }, + { + "assistant_service_id": 2945303654697029, + "ods_hash": "f28a48d485812310c64dd3e1c567a872", + "dwd_hash": "32d4e0826b294437413bcc28269aaeee" + }, + { + "assistant_service_id": 2945303655008325, + "ods_hash": "b60273d30b9919f4612663dc6fa4a429", + "dwd_hash": "2e67f30551c07c471099ce21b6249f3c" + }, + { + "assistant_service_id": 2945303655303237, + "ods_hash": "55895dbf0cae0000f9a92be2912e37b3", + "dwd_hash": "dfe52967354bed2ed5e972d0056cde53" + }, + { + "assistant_service_id": 2945303655680069, + "ods_hash": "eec91207be62f23a71df01a95857c728", + "dwd_hash": "6bfd47b8348671e394e116885ecf8dd3" + }, + { + "assistant_service_id": 2945355735320645, + "ods_hash": "6aae2a4571474979ebf7772479593159", + "dwd_hash": "899a53f17f0334677c9e03e91f8c6e44" + }, + { + "assistant_service_id": 2945412155934853, + "ods_hash": "101a69964bda9b6e87ddd644597929e8", + "dwd_hash": "b580d4bf05753f62b55a2787d3cd62b7" + }, + { + "assistant_service_id": 2945415969343621, + "ods_hash": "d763088de5b6195955c6d8aa37979a0e", + "dwd_hash": "560399497858d8ca2c416959d6c0ff33" + }, + { + "assistant_service_id": 2945415969654917, + "ods_hash": "b57744531619ba1e2bf9c2fe1fe6a3f8", + "dwd_hash": "9103ddd1f08fd9b69e147da75f5c8d10" + }, + { + "assistant_service_id": 2945530360645637, + "ods_hash": "168a5466f3d9ab9c3e400bf5f020091b", + "dwd_hash": "8262fd019f07c4bbd220907e73d0da16" + }, + { + "assistant_service_id": 2945530360940549, + "ods_hash": "0ff4428be5956bfe36b6bcfa16cde38c", + "dwd_hash": "880b5aa85f8860812ab2a2e988c1ec4e" + }, + { + "assistant_service_id": 2945530361235461, + "ods_hash": "5a6fce5c0ea2df5ac1eb8107552f8d27", + "dwd_hash": "3417c11ae1694409319c9e90f30a950a" + }, + { + "assistant_service_id": 2945530361530373, + "ods_hash": "d056944fa840ecfa2182442a622b3fb4", + "dwd_hash": "1aae19cd5ff0b1ab20d4179c8e14f310" + }, + { + "assistant_service_id": 2945530361825285, + "ods_hash": "3a0fad7a48d1f96fb98152d337c50549", + "dwd_hash": "83c60118be29029a374245721cd22aab" + }, + { + "assistant_service_id": 2945530362120197, + "ods_hash": "3efe4fff3bd0cd3c1273c4d8f1521962", + "dwd_hash": "5ba93ff437dba36f9e6a76c308fd9f5d" + }, + { + "assistant_service_id": 2945530362415109, + "ods_hash": "2771107cbaac2d0a5972fe799005ab7d", + "dwd_hash": "455e972e0b8e0e1a5d62ae5c4dad82c9" + }, + { + "assistant_service_id": 2945530362710021, + "ods_hash": "a226464ef81c7e53621fa5ab08719b99", + "dwd_hash": "a76065534bab8a0bb846cda1c042aded" + }, + { + "assistant_service_id": 2945604899047429, + "ods_hash": "faf1ca8b78121a2998b5774ee6194c85", + "dwd_hash": "45ee4551175df1927e25aa5c8b10d0af" + }, + { + "assistant_service_id": 2946222559741957, + "ods_hash": "5d8513bae618ba444bbba6151157b5a2", + "dwd_hash": "748099531c390386a9e040d73439badf" + }, + { + "assistant_service_id": 2946349092423685, + "ods_hash": "f389e178135b7cf717bdb26631e2a551", + "dwd_hash": "e354c8a46db4f0a2f01ab7eb583ebed3" + }, + { + "assistant_service_id": 2946467797501893, + "ods_hash": "ddc0572b7849c118d2f59c4bc47077a1", + "dwd_hash": "0486eb4c7b1d5fb4655713369c47a1b5" + }, + { + "assistant_service_id": 2946467797829573, + "ods_hash": "609751db77110e08cf0856eea743f7a6", + "dwd_hash": "247789373a8150a7b70862257262d4b5" + }, + { + "assistant_service_id": 2946543960328261, + "ods_hash": "37687f43d4e80238ed9e17e4fb640019", + "dwd_hash": "f9a3f5a982baa6fe63e5dac77ae57d47" + }, + { + "assistant_service_id": 2946589255075845, + "ods_hash": "00e2102af2a3bce8cfaf54c6698c0963", + "dwd_hash": "8344041cf6732040a1d5ae65da0bb883" + }, + { + "assistant_service_id": 2946589255387141, + "ods_hash": "49455b89a81a0f87ed618d39f9876c77", + "dwd_hash": "5acf9d0b8f4be94184d5622911bf3a0a" + }, + { + "assistant_service_id": 2946626668759109, + "ods_hash": "a2a3f189df2da41b423f8d4e33e8533f", + "dwd_hash": "0f41a70f92a6f929cf78e1cc61f56296" + }, + { + "assistant_service_id": 2946627706013637, + "ods_hash": "10782852aba4de382ccdea9e5e76332f", + "dwd_hash": "5141f75d57997a47b3e1873e525e7cf2" + }, + { + "assistant_service_id": 2946627706341317, + "ods_hash": "12569687187b86afd680a2815119b693", + "dwd_hash": "0a0e203f810f5d95a2f01cceb4ac0fe6" + }, + { + "assistant_service_id": 2946627706652613, + "ods_hash": "c65096851f3bc50de58796e8173ef720", + "dwd_hash": "16f189ad92949f5297ee17b2de5819fd" + }, + { + "assistant_service_id": 2946627706963909, + "ods_hash": "38cf9d3467428fabff1b3be40a96fcc5", + "dwd_hash": "5058e11ba4bacfdd32f916e3531e04d6" + }, + { + "assistant_service_id": 2946647859169221, + "ods_hash": "68e45e6298b3c464357a7b0c7816303b", + "dwd_hash": "88e0cc88da1aeeef89189466b6db2552" + }, + { + "assistant_service_id": 2946647859627973, + "ods_hash": "b2236ecbed5627ed58b24c3c40a1e1c1", + "dwd_hash": "fe2be825299bc6ab8d65bbf72573086c" + }, + { + "assistant_service_id": 2946660130637957, + "ods_hash": "b68ab33c4364055808e918f9f1264d1d", + "dwd_hash": "95f0382f04be8ad93aaba2692ad575cb" + }, + { + "assistant_service_id": 2946710503245829, + "ods_hash": "9d88acccd4c0ea861f92ef7b19a91265", + "dwd_hash": "eb1a2130387c52bc3e2f9805d0bab492" + }, + { + "assistant_service_id": 2946711000565701, + "ods_hash": "fa1eec91f06a95247a98c82ac37eb2ef", + "dwd_hash": "a8841d931662061615ef0863ba54dfac" + }, + { + "assistant_service_id": 2946711833348165, + "ods_hash": "8fa6d9705430615132e0cc1fdb2b6d32", + "dwd_hash": "ddf8713a66f96560defe8018b7ca1f51" + }, + { + "assistant_service_id": 2947191166011333, + "ods_hash": "7c81d43eb7cde1fe908d08e3199110ab", + "dwd_hash": "ee0e6a02d4e5b6d3821c7de5fb582ec3" + }, + { + "assistant_service_id": 2947191166322629, + "ods_hash": "217caeed2e562d1d2523a2289eb84c97", + "dwd_hash": "4c8b0940cf321b714c483747b29b6292" + }, + { + "assistant_service_id": 2947191166650309, + "ods_hash": "cce8a379937cb1c12e9059d4374e6bd9", + "dwd_hash": "7f9e73151ebc62ddb854440678d7b8d4" + }, + { + "assistant_service_id": 2947284155811973, + "ods_hash": "ad7ebdb6090899a5c075c8ff70ac9edf", + "dwd_hash": "3103d6c13342e7f420478c15a3e5a81d" + }, + { + "assistant_service_id": 2947284156139653, + "ods_hash": "3bd167f4cd1e79feb6a6613006c50b07", + "dwd_hash": "c13a943040b208fa41e4819f4cd8d5d8" + }, + { + "assistant_service_id": 2947284156450949, + "ods_hash": "29d0fd38d551fc27546bcc5d4f3322c8", + "dwd_hash": "45245e6650518aee3860712c1db03ad8" + }, + { + "assistant_service_id": 2947284156762245, + "ods_hash": "177dbf2351903fa80c2357d9f763bb88", + "dwd_hash": "d60a5f2973ddfb5442ff0ae520b8cb82" + }, + { + "assistant_service_id": 2947686255562501, + "ods_hash": "60229de3864e1e681d37686c725b31f5", + "dwd_hash": "c06a62c823963d76586b903b7ee2e576" + }, + { + "assistant_service_id": 2947731000036933, + "ods_hash": "43f1e4ccbdf306b60a70bb5ec9bc8003", + "dwd_hash": "4f595aed5b9c6a8d1608d74047e678ca" + }, + { + "assistant_service_id": 2947806110797509, + "ods_hash": "70c71c139de9291659b5303ae1e9a818", + "dwd_hash": "f5831b2c53d17dbc736de424fe594de1" + }, + { + "assistant_service_id": 2947852922539653, + "ods_hash": "d21b703da2e69f35c53a95d106670750", + "dwd_hash": "754af9238e9a2dba758e700dfc26ec5e" + }, + { + "assistant_service_id": 2947853797494533, + "ods_hash": "acc32be4f2fc64e02ea8c59f7587e1d0", + "dwd_hash": "5149f1dadd2a0467c1320f0514ea1119" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2838, + "ods": 2838, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 172860.0, + "ods_sum": 172860.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 166439.03, + "ods_sum": 166439.03, + "diff": 0.0 + } + ], + "mismatch": 2838, + "mismatch_samples": [ + { + "redemption_id": 2945209281808517, + "ods_hash": "a0a17d1d42a4dfd97e0b1db83397042e", + "dwd_hash": "20aca3e1ed406f4c62d8880c7b897240" + }, + { + "redemption_id": 2945223818168389, + "ods_hash": "8064cc6b325142f7da0bb70b983324ae", + "dwd_hash": "c8ca36903e2e3e248008ef86b759e984" + }, + { + "redemption_id": 2945244232206277, + "ods_hash": "3ac03bc028669033f7a71fe88aa3d516", + "dwd_hash": "5e14b7ca4504f1de8817fe05d6af45ec" + }, + { + "redemption_id": 2945250915108805, + "ods_hash": "26fd935c2b1fd4658b25170fccff55d6", + "dwd_hash": "37c0f2a7a1f8592c034299777b4139c7" + }, + { + "redemption_id": 2945266000300101, + "ods_hash": "9e4d9554d3e9d1af6c87c8a5435d1f63", + "dwd_hash": "e52d211bc01fa260f85fb96a4465d058" + }, + { + "redemption_id": 2945296564750405, + "ods_hash": "db7e43304d6334c2c43b9e5d15924dc4", + "dwd_hash": "e1afe4916fedda219ff4794667e3c2ee" + }, + { + "redemption_id": 2945296564750406, + "ods_hash": "197496f2e36d472f778323421b08e1f0", + "dwd_hash": "aa97446609c01d2efb35726e3bd8c6f9" + }, + { + "redemption_id": 2945296564750407, + "ods_hash": "24944a7f1689ca96f1f0bcd50404ca2c", + "dwd_hash": "b8b92fe204a906b779565aabc840eaa3" + }, + { + "redemption_id": 2945297080764421, + "ods_hash": "a67a9867e4515debf63a6169d94310cf", + "dwd_hash": "3e5eda2035aa7a2b63e22e257a34493d" + }, + { + "redemption_id": 2945297080764422, + "ods_hash": "585e84eeba78bdca01115de2821b2f3a", + "dwd_hash": "38277058bdc5fa3abed013f911900446" + }, + { + "redemption_id": 2945297080764423, + "ods_hash": "4f29bb25ac86f24712b81b4ccc97b772", + "dwd_hash": "6a744e004b755106902adde4344cb562" + }, + { + "redemption_id": 2945297080764424, + "ods_hash": "577eb319687eb3d6bb806376ec6a9ddf", + "dwd_hash": "02a8de8373746dd27974355c53d55473" + }, + { + "redemption_id": 2945327284488325, + "ods_hash": "75d61950f15a20c0cd4bb1251bdd5065", + "dwd_hash": "16d40415c645de948fb313a4e4ce5880" + }, + { + "redemption_id": 2945328508700741, + "ods_hash": "46c0aa4af2b8a1dfabbc9ffffe6be29c", + "dwd_hash": "7f9f00024a23f5c85a41c98232fad1f5" + }, + { + "redemption_id": 2945328508700742, + "ods_hash": "2bd08c78bb61d324d11545f5e3834249", + "dwd_hash": "42d06a1df0a17ffb64c35a85e110e63f" + }, + { + "redemption_id": 2945328508700743, + "ods_hash": "5eef62aae18fb0078042591b104c4909", + "dwd_hash": "3c6850f7acf2fc6a48b2fd144fb963ac" + }, + { + "redemption_id": 2945328508700744, + "ods_hash": "045f88012a6beb79d77aba59c223e61a", + "dwd_hash": "b583f7dfe6c502fbca075be5dd225ecb" + }, + { + "redemption_id": 2945343829329925, + "ods_hash": "0224e73f677915f8cbaa54b01dc680d6", + "dwd_hash": "6614c0aecc6810ff226a5eac3e83c6e7" + }, + { + "redemption_id": 2945871138490373, + "ods_hash": "701cac7ef12099f23dc7dd9be63fcdfc", + "dwd_hash": "c6f651927311819e06faa0279f37d9bf" + }, + { + "redemption_id": 2945876560742341, + "ods_hash": "13354ae8ea044d3f08956d843d3f8ed6", + "dwd_hash": "2bfa33520407dce8db89a3df463094a2" + }, + { + "redemption_id": 2945876626737285, + "ods_hash": "110d925ad94e49ee08e457e62d2f0425", + "dwd_hash": "1000624003257e5458907c321d8c2f0f" + }, + { + "redemption_id": 2946023884425221, + "ods_hash": "4d031df7f017153892dc57bf4bdaa569", + "dwd_hash": "383dc584b46f6f5115891e31685cc53f" + }, + { + "redemption_id": 2946055145883589, + "ods_hash": "1b3c2ec0f1e9096f02d03e6ec451c66d", + "dwd_hash": "30b765ce2eafd07bcfb92b7a601ff98a" + }, + { + "redemption_id": 2946055145883590, + "ods_hash": "4b39b33fbc09fd87767ecfedcbdbbe86", + "dwd_hash": "a27e8ed06d38b8b7c66dfd2e770fdc6d" + }, + { + "redemption_id": 2946062771652741, + "ods_hash": "6cf4d821e75d75b0a6b61f60e8c5604d", + "dwd_hash": "425789116699c33e884b545a0569c5aa" + }, + { + "redemption_id": 2946081283311621, + "ods_hash": "b34dec210fcd5a86637d60cf77866038", + "dwd_hash": "638e87cd068b45a96d13b5f7a6865a70" + }, + { + "redemption_id": 2946086439995333, + "ods_hash": "c1fb689dbd273d132fd57825525741c1", + "dwd_hash": "caa97dd07cabbc6686599f1e23b9ca4c" + }, + { + "redemption_id": 2946118185977797, + "ods_hash": "704ba650bce0623127ad9e719d03bfdc", + "dwd_hash": "c414d04504673896ab1c753dbb8f4301" + }, + { + "redemption_id": 2946131746392197, + "ods_hash": "cc03e3c3f6389544364b05f62d90dc55", + "dwd_hash": "f7c11a87a8595861b21d1afb158449af" + }, + { + "redemption_id": 2946137103910853, + "ods_hash": "6d4e5029edc5dbb59cd2a6e7d18f50c1", + "dwd_hash": "79b5672a7881c05cdadb941885beb900" + }, + { + "redemption_id": 2946138050758597, + "ods_hash": "274d053d3ed817220c7a8c433cc1a9c8", + "dwd_hash": "0fb6a261a234acefc3fd96ef21da5e0f" + }, + { + "redemption_id": 2946138050758598, + "ods_hash": "cd28a0bd4c6187f35fea10640a279477", + "dwd_hash": "e1ea02b2f6fafe724ffcd14e332ac437" + }, + { + "redemption_id": 2946138833717189, + "ods_hash": "2d7c8abf42ef538ef0ada58062aae2b3", + "dwd_hash": "de6578aa832451c97153baefed2dace1" + }, + { + "redemption_id": 2946138833717190, + "ods_hash": "a0de79b6982460cbac752e0e8b4066e9", + "dwd_hash": "95509b8f0ca1e6ebb57a913325ce0976" + }, + { + "redemption_id": 2946140343076933, + "ods_hash": "86141e4adadc9f857e75363721a8112f", + "dwd_hash": "cb5f760a1cb5073a6397a3af8fff12cb" + }, + { + "redemption_id": 2946140343076934, + "ods_hash": "9e1c934abc959a41e141c7a12a6a98dc", + "dwd_hash": "e59296d89377d1591d453311824f8682" + }, + { + "redemption_id": 2946147440773061, + "ods_hash": "1a296cb2e185b9b2eebf53a8e770a3e5", + "dwd_hash": "279a07858641db87b3ec9cc3c2f31673" + }, + { + "redemption_id": 2946164124485701, + "ods_hash": "cb1ac0e2479df1aa41704936caa1f66a", + "dwd_hash": "449e7ffe10633d104e5e2829b9154851" + }, + { + "redemption_id": 2946173960423493, + "ods_hash": "c544ec2ab6380fe5b5eebb9e0a51eb50", + "dwd_hash": "06265040692d6688d34ebd1551b0947d" + }, + { + "redemption_id": 2946177074546693, + "ods_hash": "c890d1359dca3a0a2d0afa90f5deff3c", + "dwd_hash": "c3c0b0280fe7eca32b660f8fabce4159" + }, + { + "redemption_id": 2946179149989957, + "ods_hash": "cce60b71e829fb875ab8b8c2a79f72d2", + "dwd_hash": "e2bf19c034f705a9368c09556b8a78be" + }, + { + "redemption_id": 2946183647610821, + "ods_hash": "ff8c895a72fa23c612b7bb7f4738973c", + "dwd_hash": "1ccc7716dbb5ebd044ad7863f4948f24" + }, + { + "redemption_id": 2946183647610822, + "ods_hash": "7a2ec330779a5e33744427fe0107944e", + "dwd_hash": "565f3b1822a22c832c0e3701aea30ee6" + }, + { + "redemption_id": 2946192224241605, + "ods_hash": "069e0110159d2775cbf74287fdda51fa", + "dwd_hash": "79582e0464523f091a5817ca45c53456" + }, + { + "redemption_id": 2946192288909381, + "ods_hash": "5cc3f50fbe28b5ecadf4c1401e164e58", + "dwd_hash": "70d03d71ca7d466df0bf02a3b36d4928" + }, + { + "redemption_id": 2946197298301061, + "ods_hash": "a0e5d8ef8239d10fd4a3dabe68fb25a8", + "dwd_hash": "d25d3042aeff675a27df2d14edc8d6b8" + }, + { + "redemption_id": 2946201068816389, + "ods_hash": "f536f54409ce0cdbc80c32769202fb0b", + "dwd_hash": "c89eb4039dd930d40f8395e288d86dbd" + }, + { + "redemption_id": 2946201150932933, + "ods_hash": "c5c1362ede2aa10cc679da50c34f5619", + "dwd_hash": "52c7bcee123469dae9547a8ed8153e12" + }, + { + "redemption_id": 2946201201346629, + "ods_hash": "5c8a625b58cdead334b3088a023514fc", + "dwd_hash": "66a8830e587e343ca602b5839973905a" + }, + { + "redemption_id": 2946202334758981, + "ods_hash": "6569ae56fcea8f63c8be8a1dba45b270", + "dwd_hash": "9bfe93c632016401d96a7b0bfdf5a5a0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2843, + "ods": 2843, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 173800.0, + "ods_sum": 173800.0, + "diff": 0.0 + } + ], + "mismatch": 2843, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2945225726036101, + "ods_hash": "1f5881dafc10021fdc9577274ea4f775", + "dwd_hash": "b1480dfd99e76b04e3a6e0fd769cde42" + }, + { + "platform_coupon_redemption_id": 2945238682650693, + "ods_hash": "0fad5594ecbee5e6344076118323b151", + "dwd_hash": "b45532b480f9f8b6bd711586200fe7b8" + }, + { + "platform_coupon_redemption_id": 2945249283967045, + "ods_hash": "8df2657a0954a78866b0a646653870f0", + "dwd_hash": "2d9ce26269cba948b67e3f520f2449c0" + }, + { + "platform_coupon_redemption_id": 2945268112017541, + "ods_hash": "5a2281ef041461061168d1adc99a090a", + "dwd_hash": "d315860de6f9c659fe9fd403a7ffd083" + }, + { + "platform_coupon_redemption_id": 2945298505140293, + "ods_hash": "c1266ac7d089aa775388cd5f6edc81b4", + "dwd_hash": "c7d67ed2771a38a4ac96150710a3e403" + }, + { + "platform_coupon_redemption_id": 2945799155042373, + "ods_hash": "3f20208f58b1619742d6611e36ff8c3c", + "dwd_hash": "9bec719c4834352809fca93594cae014" + }, + { + "platform_coupon_redemption_id": 2945799674185669, + "ods_hash": "480ab17c5927a1c0ae73bb432b9fc8ba", + "dwd_hash": "db75eb95b786eb22e22f8538091a3802" + }, + { + "platform_coupon_redemption_id": 2945802920167557, + "ods_hash": "cbc0c5688b7ec8592a76201f18b0b703", + "dwd_hash": "7b651aa86a6ef5d16140885666563656" + }, + { + "platform_coupon_redemption_id": 2945905197090949, + "ods_hash": "536df6243e4fc30fa652f016a41b4364", + "dwd_hash": "237eb1be209d3b941b15610974941188" + }, + { + "platform_coupon_redemption_id": 2945935775893445, + "ods_hash": "eb6adcc463d508406cf73baa4089049c", + "dwd_hash": "d1cd33f9babed50f16a9cc09415cda55" + }, + { + "platform_coupon_redemption_id": 2945959626115205, + "ods_hash": "3aca735d0175931bf49258fcb0c565bd", + "dwd_hash": "7c985c25e7caf219e816a3b02efc373f" + }, + { + "platform_coupon_redemption_id": 2945995948033989, + "ods_hash": "d4ded644399a7be48fdd05b85632780b", + "dwd_hash": "0422841e322714c4628dc0562bcb41a9" + }, + { + "platform_coupon_redemption_id": 2946003425118277, + "ods_hash": "e46712779f4fca40c82e0efa80d0bda0", + "dwd_hash": "7662f5a6e1ecc3bd7c6ba455a1368f7b" + }, + { + "platform_coupon_redemption_id": 2946015233656773, + "ods_hash": "4e37782464f85a78b3881a3d762a7235", + "dwd_hash": "0eea366a4fa80a987189629108fc9bbe" + }, + { + "platform_coupon_redemption_id": 2946016501417925, + "ods_hash": "3523c2ad9c69674bdd91d33ac20a6804", + "dwd_hash": "bca27b1cb99be6326baa7034f7162cf4" + }, + { + "platform_coupon_redemption_id": 2946020254615557, + "ods_hash": "d6ed2c82ed7e89066a44873c01e836ad", + "dwd_hash": "4eb23e9815e6d8abc06d2847b625cad7" + }, + { + "platform_coupon_redemption_id": 2946020346202117, + "ods_hash": "82482a7b9976195972462dc8cd085f77", + "dwd_hash": "ddc50430fa6d73c1e4dd6c6150c27300" + }, + { + "platform_coupon_redemption_id": 2946026859628485, + "ods_hash": "3eb068a4246ac350081860df25da49a7", + "dwd_hash": "4304ba06c996daf62e25678092460c42" + }, + { + "platform_coupon_redemption_id": 2946052811491461, + "ods_hash": "4f2c37cbb5cba14a94be021aeadc2cd9", + "dwd_hash": "7f01ea892ee5dbd93027a8969bb1919c" + }, + { + "platform_coupon_redemption_id": 2946052952967301, + "ods_hash": "15e440bc07797b5d2a8dd7cf1697d143", + "dwd_hash": "a2bdc2bfd4b47dda3cdbd9aef3cd76d8" + }, + { + "platform_coupon_redemption_id": 2946059208689669, + "ods_hash": "c6b03b9321522257f8833d447b5fafad", + "dwd_hash": "b93556d594d662625cd5ebd0f2a48f20" + }, + { + "platform_coupon_redemption_id": 2946065496115141, + "ods_hash": "332e3eb92106098e2e5d06b7a17dbaf7", + "dwd_hash": "e28c1d84d207727acbbf1ecfea4c2c97" + }, + { + "platform_coupon_redemption_id": 2946066163910661, + "ods_hash": "a277d3c31cefde4eb8aa73402f6950cd", + "dwd_hash": "f03d676e4bb499820fd0c3c7dd77d1ed" + }, + { + "platform_coupon_redemption_id": 2946066285889477, + "ods_hash": "3c112351a15b191af124f9f7716204f9", + "dwd_hash": "e728464d3d4cfdc189b7603bda2540e0" + }, + { + "platform_coupon_redemption_id": 2946076810676165, + "ods_hash": "63e0caaf6a5e2d603e5fcad4de45324c", + "dwd_hash": "8a89d1541628657c7905c00b0964ad8b" + }, + { + "platform_coupon_redemption_id": 2946078850418821, + "ods_hash": "aea9c4ada38bcf0dcb008b04629c601a", + "dwd_hash": "deeb2264dc807bb8be7dcc3266f18689" + }, + { + "platform_coupon_redemption_id": 2946079880300677, + "ods_hash": "1364cb49df2b7b78aa51bf1ecf6a9f41", + "dwd_hash": "78336d0a143053a3f426946bc646dd88" + }, + { + "platform_coupon_redemption_id": 2946081212352645, + "ods_hash": "7e3117cef529863363ebe123131c5393", + "dwd_hash": "30a346b015a195160ce8a60ff1b68e06" + }, + { + "platform_coupon_redemption_id": 2946084582377477, + "ods_hash": "8063c618aeb1b4d8c5f282166e949092", + "dwd_hash": "6f5852da9cf7659695913e01c395540c" + }, + { + "platform_coupon_redemption_id": 2946088268105733, + "ods_hash": "59a8aa0921f78c1d163c5a1ddd79896e", + "dwd_hash": "a450eb126c4e72ee5d96eca31a534ff3" + }, + { + "platform_coupon_redemption_id": 2946102690449349, + "ods_hash": "c3240895f0a93d1ad0efd8c1453c6d0c", + "dwd_hash": "5cfdc31700a74780b85c5c872d4f7e38" + }, + { + "platform_coupon_redemption_id": 2946105090967557, + "ods_hash": "9662fa3e84a853f05034d02492b6dfbd", + "dwd_hash": "2aeb118dbc482fd0992d767c661f38a2" + }, + { + "platform_coupon_redemption_id": 2946108414101445, + "ods_hash": "3544e2ebba51da45b832ff25bfdd0ee3", + "dwd_hash": "c6966a1aab22dbdf1ad2fbde8cc3ac5d" + }, + { + "platform_coupon_redemption_id": 2946117609375749, + "ods_hash": "0304b92e8209617bc09eb13ec5629cf1", + "dwd_hash": "4ace6dba0f668075061322d6e8486468" + }, + { + "platform_coupon_redemption_id": 2946120458913925, + "ods_hash": "9bef39e1775daff15f079d35d2fd4ef3", + "dwd_hash": "dd00f5e186cc786c59ced60cdba0e557" + }, + { + "platform_coupon_redemption_id": 2946131632752709, + "ods_hash": "be5592a7565d25f2a3fa17e75e7ee2b4", + "dwd_hash": "d036d7eea8aeefdf925c5f10119cad10" + }, + { + "platform_coupon_redemption_id": 2946132564363333, + "ods_hash": "8f7a375ca8d79e59b6075986fba57d6c", + "dwd_hash": "7e48cb28f6bd17df98dfbf78233616e4" + }, + { + "platform_coupon_redemption_id": 2946132785301637, + "ods_hash": "e0624da0e59b78be286dcfa4145ea403", + "dwd_hash": "d1ba0360af9bc3a53bf62c550efd2fd8" + }, + { + "platform_coupon_redemption_id": 2946139909834693, + "ods_hash": "e014c095d7eb6393ad92717632c9def7", + "dwd_hash": "5fbe8e8d80de4820c9efc3fcd63bdeb7" + }, + { + "platform_coupon_redemption_id": 2946141659170885, + "ods_hash": "68c48803e9f74971dc15af1a0f0dd6a5", + "dwd_hash": "f5b6304566f8c027ed3dba72b5c06155" + }, + { + "platform_coupon_redemption_id": 2946141762389957, + "ods_hash": "cbd1413906028b14a5bfc6cf5553643b", + "dwd_hash": "86d464222a30ff397d8f037a384cbda4" + }, + { + "platform_coupon_redemption_id": 2946143247009733, + "ods_hash": "bff392cc0ca1b69a127f85adf4b9c5df", + "dwd_hash": "f7af573d36677de8a83d346ed00d21ba" + }, + { + "platform_coupon_redemption_id": 2946147300591749, + "ods_hash": "b0b70bdd52af0d256538d3c6958e1eca", + "dwd_hash": "315fceded52f896a7377c0d06ce4f64c" + }, + { + "platform_coupon_redemption_id": 2946147960522821, + "ods_hash": "65d5ff48e2fcfa5044805732b8b38a47", + "dwd_hash": "7ed223ddd15eba2e6e64dc18953544f0" + }, + { + "platform_coupon_redemption_id": 2946150615254981, + "ods_hash": "3fbceb919e22b3fbc90b49217a888b01", + "dwd_hash": "a167e9d0c06a7af3591d0705e3e97306" + }, + { + "platform_coupon_redemption_id": 2946160185591941, + "ods_hash": "6f67fe72c0f9090acc8a60b095129ed1", + "dwd_hash": "4d252bba7f04098cdfaa0741f15811a7" + }, + { + "platform_coupon_redemption_id": 2946165001439301, + "ods_hash": "26d59f767cb5e17e85232a2f08b1f1f9", + "dwd_hash": "13d94b2c71a9fbd7b6b1ce9b33a2d698" + }, + { + "platform_coupon_redemption_id": 2946168538761221, + "ods_hash": "93bcb35eb9116112141c8ce4da2095ba", + "dwd_hash": "8954d07c0a6a67ecee6660894d3ea27b" + }, + { + "platform_coupon_redemption_id": 2946173121824837, + "ods_hash": "35b70da1a40da1ae5ffd5750a6bb9eaa", + "dwd_hash": "be525d4db2695fa7acb148b6143128f7" + }, + { + "platform_coupon_redemption_id": 2946174131980357, + "ods_hash": "025a95bb9ad84014053ba1aafff153bd", + "dwd_hash": "5aad406ee70412b1ccc2bc10e14be669" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3999, + "ods": 3999, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 457185.0, + "ods_sum": 457185.0, + "diff": 0.0 + } + ], + "mismatch": 3999, + "mismatch_samples": [ + { + "payment_id": 2945209278646405, + "ods_hash": "474ad02c89af8701c692f75387e97548", + "dwd_hash": "eb0e92c591080501ae5cd5a846772b1d" + }, + { + "payment_id": 2945219528968261, + "ods_hash": "241efeda4b92a59e91e7aae399afa021", + "dwd_hash": "993aa22a3842ac93db8bb0645877ee94" + }, + { + "payment_id": 2945223814613061, + "ods_hash": "5071f6afb0d52137db01d074e13488c3", + "dwd_hash": "efa536e1b1e79489a11378c593222ac2" + }, + { + "payment_id": 2945224213252165, + "ods_hash": "41d0351e136220dbe88805972797a868", + "dwd_hash": "21d1f1ff16ebcfac993da148f914774b" + }, + { + "payment_id": 2945238234974149, + "ods_hash": "b4a89ea77e0a636a4f4c11fc4da85399", + "dwd_hash": "fef654521ea3ff8c659031c5943c02a6" + }, + { + "payment_id": 2945244229175237, + "ods_hash": "a436ef9aa0781714cf1f7b21a6ecc3b0", + "dwd_hash": "c9a08ae8abe74e5e40f2e08b0762222f" + }, + { + "payment_id": 2945250911897541, + "ods_hash": "221453b951556074618b750d61aea435", + "dwd_hash": "94c6e02d8ded55529145dbd379879c90" + }, + { + "payment_id": 2945265997416517, + "ods_hash": "b0a74e025128b93e2cde39d94f5eeb4a", + "dwd_hash": "1ad7795fa2646b232f1e094737c534bb" + }, + { + "payment_id": 2945282187593669, + "ods_hash": "8ab2e36eb34ce5c7b27855c4d46e6d5d", + "dwd_hash": "0514c107fc0194157c38db6d2446e489" + }, + { + "payment_id": 2945295728101509, + "ods_hash": "b3439c0a63296b5d631e0aa39b69eead", + "dwd_hash": "2e8a76d419a23debd9af778842eb93fc" + }, + { + "payment_id": 2945296561752133, + "ods_hash": "45b5f8f5c25010343a5009476fb4f89c", + "dwd_hash": "bb56d6c3cb1064e9294fcf36ae270eff" + }, + { + "payment_id": 2945297077487621, + "ods_hash": "c34a7725b925dd8b2fc73727ba385e22", + "dwd_hash": "def92c4a191169dae99ee23a7db21e6a" + }, + { + "payment_id": 2945300261996549, + "ods_hash": "f42f12d1b7d35ed0820ebdf6b03054e7", + "dwd_hash": "f94835c2dd3ef2d9a7386e0799c07762" + }, + { + "payment_id": 2945303651780677, + "ods_hash": "cd242a7a58f2bce85528dfdc537d0fbf", + "dwd_hash": "7aaac0eef737b7f104d411516011cfc5" + }, + { + "payment_id": 2945308562540613, + "ods_hash": "2d3dfe16d7cd3b42a1c0105c69e76cc6", + "dwd_hash": "4a7d81daa4ad4ec5d755f921a2a1fef8" + }, + { + "payment_id": 2945327281211525, + "ods_hash": "8868176563a42a782ef5194c5d1149c0", + "dwd_hash": "4e16c1f3e4223ca7fe02b3757c60fafb" + }, + { + "payment_id": 2945328504113221, + "ods_hash": "d3ca578a1c3b1b8652ccf2aea31b2e74", + "dwd_hash": "389aac78c632cacfb4ffe79647b145b6" + }, + { + "payment_id": 2945343825004549, + "ods_hash": "9649b0f70b45261238653424ee4bf559", + "dwd_hash": "0cfbadd7f2fd306ca1875f194cf8a6a4" + }, + { + "payment_id": 2945355731650629, + "ods_hash": "c90adbbe9c6ef6b185ad587545318d1a", + "dwd_hash": "451fc918dd53f5d95b48e06df02c075a" + }, + { + "payment_id": 2945370016761989, + "ods_hash": "f53c4c0a27ab1df0ecd7f77515e4162c", + "dwd_hash": "486d7f94cc204a63fb75b7fa346c48e3" + }, + { + "payment_id": 2945379785541765, + "ods_hash": "d83a356ee0c635a91c6f4f493841ad24", + "dwd_hash": "580822e1f83f0a3eefc942e3b8a19edd" + }, + { + "payment_id": 2945387229169605, + "ods_hash": "e5aeed850db295b64fbb71efac0fee39", + "dwd_hash": "9f0590a919fc7a0d21dad1e3d01c7b9b" + }, + { + "payment_id": 2945412151953541, + "ods_hash": "bc26a3506665ba4d4d8b59766ebb8493", + "dwd_hash": "f67ce07b432946b692488a1d55da756d" + }, + { + "payment_id": 2945415965427845, + "ods_hash": "5a80b5da600632cb15af732cac2c8c4a", + "dwd_hash": "9379e9047e3cc73546a2315359073c36" + }, + { + "payment_id": 2945462210758597, + "ods_hash": "e5541029461062eea55b8e19922e6007", + "dwd_hash": "6750d2f963b00ee60356dc14ed2d46ca" + }, + { + "payment_id": 2945465516296197, + "ods_hash": "117a5e987266a0c8cae5d8c382add0a7", + "dwd_hash": "67a9ffb198bf58e94ae43a64d2608f24" + }, + { + "payment_id": 2945466617333829, + "ods_hash": "5ae5529c702d74b1cf55aed3743d176f", + "dwd_hash": "6ed1ee675d83f4066fa15700b1563e4e" + }, + { + "payment_id": 2945530354812933, + "ods_hash": "787cd21b794135dc52e7d417f4ea07cf", + "dwd_hash": "013da9aa1999504b9653bbbe5f3c0d6c" + }, + { + "payment_id": 2945598743005253, + "ods_hash": "0b8bf9af2a18cc28bb16edb2d5297825", + "dwd_hash": "76512477280d8962ea672020ea246928" + }, + { + "payment_id": 2945604894017541, + "ods_hash": "88ea643916758406f0b3f1d85851f7cf", + "dwd_hash": "b01b1c2659a254901cce96cfd0b623a3" + }, + { + "payment_id": 2945870898186373, + "ods_hash": "fe5f1b9f4d741c8b7fe4a51e4183e05b", + "dwd_hash": "7ae4a640bc11694ee632fdcce266931c" + }, + { + "payment_id": 2945871135426565, + "ods_hash": "6b6d27124fc9d50f755dd3d9d66579be", + "dwd_hash": "b9c10746b25fd5bc37e516d33e810674" + }, + { + "payment_id": 2945876557629381, + "ods_hash": "2dd42944989a666aeed2afa6e8a04293", + "dwd_hash": "8d71830da5a548c544c3f2051b1365d0" + }, + { + "payment_id": 2945876623804549, + "ods_hash": "44b62fd651fe420c9659c598510e021d", + "dwd_hash": "abf1dc80bb1ec94c3e7e4ac7f74448a8" + }, + { + "payment_id": 2945894622824453, + "ods_hash": "485b5bd97f64e802e264ac7b3f3bf03f", + "dwd_hash": "489b9dd027cc887973d67cff044cf4c4" + }, + { + "payment_id": 2946018619017349, + "ods_hash": "e4af18ecabb2b3d762f41229d685bf62", + "dwd_hash": "ddc680ec31aeb99b7e90d2d7faf1a8da" + }, + { + "payment_id": 2946023881656325, + "ods_hash": "dd7a517311ae8ce3649cec3be114a36e", + "dwd_hash": "0d8e0b36bc70b00848a3e1696d0c342e" + }, + { + "payment_id": 2946052223567877, + "ods_hash": "efa50a7f38efdc210c30006abc9def06", + "dwd_hash": "ac6b91536db13c973fca01ec2a5092df" + }, + { + "payment_id": 2946055142754245, + "ods_hash": "399f0558fbefb56536b782c26c5fb58b", + "dwd_hash": "babd3486828401126c5489f750182b44" + }, + { + "payment_id": 2946062768588933, + "ods_hash": "8b0f222a601ff8396196827088f618df", + "dwd_hash": "82587f5bd16db8d840dc9516a25f002d" + }, + { + "payment_id": 2946081280591877, + "ods_hash": "f53ea9482a3e48fe0f6c31782eb07c63", + "dwd_hash": "c87c6b3bb9aad1007488140c0291e727" + }, + { + "payment_id": 2946086436571077, + "ods_hash": "584b568cc348807ecefb7ee7677280d1", + "dwd_hash": "9cc85f0b9159a60ef4b029e326d568b8" + }, + { + "payment_id": 2946104809441413, + "ods_hash": "5f438337204f2c06592eb785c51f5e9b", + "dwd_hash": "1ce147d69ed59ab56b491800fc3e3dd3" + }, + { + "payment_id": 2946118183110597, + "ods_hash": "9c39d5d0cacc2b22a737cdb6e79e5e46", + "dwd_hash": "a404dc2bb493425bf529a06e02cd20c4" + }, + { + "payment_id": 2946131743443077, + "ods_hash": "e250f5798d0b5b336af92dccea274fba", + "dwd_hash": "2e8751f41a20d25f929b08833c598f22" + }, + { + "payment_id": 2946137101043653, + "ods_hash": "e81bc80fefbe246b874605c7a15a175b", + "dwd_hash": "9975b939a2b89be7c043a25f5537d8de" + }, + { + "payment_id": 2946138046777285, + "ods_hash": "541242f5b86387d43bdeff743d66e624", + "dwd_hash": "cced4820cb485db169c5eae3285ef9ae" + }, + { + "payment_id": 2946138830456773, + "ods_hash": "e33631bd2bd2e1b68208e3066813dac5", + "dwd_hash": "2e42cb0e60e7c87ce4e9abf69580d01d" + }, + { + "payment_id": 2946140340111429, + "ods_hash": "a5277745642c974324365aadef589b2f", + "dwd_hash": "b5e90a2ba11565fd73bdc575c38ea91f" + }, + { + "payment_id": 2946147437840325, + "ods_hash": "97c426138b15855336ae062ea4df176e", + "dwd_hash": "d5aa3440f87eef7a68a3158049faf5a2" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 17, + "ods": 17, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -16567.0, + "ods_sum": -16567.0, + "diff": 0.0 + } + ], + "mismatch": 17, + "mismatch_samples": [ + { + "refund_id": 2973596588872581, + "ods_hash": "9ba6667b5625a726b85365bb6d153ead", + "dwd_hash": "8c5e18bf2e755429bcf8100d892bd663" + }, + { + "refund_id": 2974816890901381, + "ods_hash": "1a80936e3898e6529102fa19f068b996", + "dwd_hash": "89a770b8d69b4e38f5018fb52575635c" + }, + { + "refund_id": 2977293299926853, + "ods_hash": "c6ab7ae0dfddce97efd4e20cc4c8c3ea", + "dwd_hash": "0269fee0b96860011adcb1e71ec64cb5" + }, + { + "refund_id": 2985661358707397, + "ods_hash": "3eba701196f9c9ee3722d5b349d4549c", + "dwd_hash": "6fc00033fba731c42fc36dfbc58d82b7" + }, + { + "refund_id": 2948269239095045, + "ods_hash": "2ab0fdd207525037a6412034258fcebd", + "dwd_hash": "6a32de689bd8fc2028678072904a2523" + }, + { + "refund_id": 2948630468005509, + "ods_hash": "ee5d8154775f9e692a5c28060ab04b48", + "dwd_hash": "5e20923fd715ec62f1f631ff4ec89577" + }, + { + "refund_id": 2948959062542597, + "ods_hash": "1199c43da7885b52428db04ef0ea6cb2", + "dwd_hash": "2b646f8fa400fdf005c9dfb7bbf21c8e" + }, + { + "refund_id": 2951883030513413, + "ods_hash": "f5b5fb8a2f62e06827f6828fb3b33db8", + "dwd_hash": "381c7b6966e5cc9bc9b7432dd337b9ab" + }, + { + "refund_id": 2955171790194821, + "ods_hash": "b8e275563721eab38f6c3c35340296a6", + "dwd_hash": "ee9ff24de6e14bb8e56edca4a5d67193" + }, + { + "refund_id": 2955202296416389, + "ods_hash": "9d94b8039efc13c07412fa892b277cc2", + "dwd_hash": "96988b6263227d77a4dd6eff9e020660" + }, + { + "refund_id": 2959393858195333, + "ods_hash": "11ebd17c9629ed7e575610a5b510dee7", + "dwd_hash": "fab1e28e9a1f57d1e4422555c53b1750" + }, + { + "refund_id": 2967429802952645, + "ods_hash": "709ffb2cca09968edd938095e4037474", + "dwd_hash": "f85c68ff2ffd55b70602e6e76948c44a" + }, + { + "refund_id": 2967430176982725, + "ods_hash": "5f0bec88e06bf4204cdc0e828ab63e15", + "dwd_hash": "ed4ab0b02c8a4c71fa5fb9876a7f0f76" + }, + { + "refund_id": 2967433935357637, + "ods_hash": "7531db7cbc8e30fc1940397d86c9e7cd", + "dwd_hash": "ac213f7dcc8bba481c253039d3380853" + }, + { + "refund_id": 2968978583227461, + "ods_hash": "eafb3bf7d1d1de9562ee853ee8d92390", + "dwd_hash": "6a8ca1f9e9799e9df61347476a5bc361" + }, + { + "refund_id": 2970135883123781, + "ods_hash": "33601a7d45d70a64b901fed3a7ff679b", + "dwd_hash": "31eacfe4016b6535cc93650685f2ca75" + }, + { + "refund_id": 2970732399348869, + "ods_hash": "01c5bf07842d1f73c922c80fee7f7c50", + "dwd_hash": "c5ea7094095420fe14b1b7703d242106" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23619, + "total_mismatch": 54438 + }, + "generated_at": "2026-01-31T23:50:53.884820+08:00" + }, + { + "mode": "window", + "window": { + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "label": "segment_7", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2025-12-01T00:00:00+08:00", + "end": "2026-01-01T00:00:00+08:00", + "cutoff": null, + "window_days": 31, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 69, + "records_with_pk": 69, + "missing": 0, + "missing_samples": [], + "mismatch": 3, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 4011, + "records_with_pk": 4011, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10206, + "records_with_pk": 10206, + "missing": 10, + "missing_samples": [ + { + "id": 3075420149368197 + }, + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 975, + "records_with_pk": 975, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 35, + "records_with_pk": 35, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12034, + "records_with_pk": 12034, + "missing": 12, + "missing_samples": [ + { + "id": 3075426305131973 + }, + { + "id": 3075420146779525 + }, + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17373, + "records_with_pk": 17373, + "missing": 3, + "missing_samples": [ + { + "id": 3075423568774789 + }, + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 70, + "records_with_pk": 70, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8322, + "records_with_pk": 8322, + "missing": 6, + "missing_samples": [ + { + "id": 3075420149908869 + }, + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "e718fc90693c14b34dc4a812808d54519cc6385e6112ea605a9027cdd00a7f9b" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "ac1ce737fb9fff85a07a38bc1c246afb417bea26315968fb609d041f52dedf75" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "ca5dfc011c68c0d4f3151c9e032bfbba0a86bf63f816438dcd053658f8a48cef" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5464, + "records_with_pk": 5464, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 28, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 13, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "344c1d548000ce2e94bd9a024d6134b05cb23409a014ec74a1f64049700ab1c2" + }, + { + "id": 2793001695301765, + "content_hash": "039bd517ab858d9c60edcf816d13729290159a5c8aceda884fa7f44fccf283f0" + }, + { + "id": 2793002509209733, + "content_hash": "f7731ae70c2594663305a4bbe70fea0a93193446d1584fb2d0d8dfe04fa16415" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "f3437fd33822e6e6f362d925bbcefdaeb137115ed9999098e7cd8c68a87ed573" + }, + { + "id": 3004536233839429, + "content_hash": "727fc7d47b2ad9d5253f186502df1986f3774893a983fa5af73b02dc7b4274a8" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 14, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "15f075c3f81939020b0a8125a246c42d3f353a9f96166debd5d8ee1d5b9e597e" + }, + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180501573, + "content_hash": "286c53279f8817c1250d0b0d83bc6031f925cc5ba398fe15f40c71ad794ff27a" + }, + { + "id": 2793026180993093, + "content_hash": "e8d266d76241c61b3c281c37a8a6ca3a7b3a7f3b6737d0f167e770763e57bf86" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1787, + "records_with_pk": 1787, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 4118, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 21, + "skipped_missing_pk": 4118, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 32, + "total_mismatch": 44, + "total_errors": 0, + "generated_at": "2026-01-31T23:54:57.883324+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 3479, + "diff": -3479 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 5, + "ods": 5, + "diff": 0 + }, + "amounts": [], + "mismatch": 5, + "mismatch_samples": [ + { + "assistant_id": 2994364415790853, + "ods_hash": "2d2964215d4a2ee166f9bb15239cb662", + "dwd_hash": "1d1c95c9515b4977498190bf55065d31" + }, + { + "assistant_id": 3021267412585413, + "ods_hash": "114b03cdccfe300737e1bf5863ed3a53", + "dwd_hash": "9e8d610707aecf669129c4ac6dba9b45" + }, + { + "assistant_id": 3021271397288901, + "ods_hash": "bf6ec348395e64b5cd0329402bfbbde7", + "dwd_hash": "5a0de548a26e782bccb0aeb9f5443431" + }, + { + "assistant_id": 3022685829761989, + "ods_hash": "9086063e178ed8dcc31cb4c86a8d2a29", + "dwd_hash": "0b75296fb7851967cdf4ef0eebcbd388" + }, + { + "assistant_id": 3027024317123653, + "ods_hash": "2bb6709588c4c2554c9a81c59b144dbe", + "dwd_hash": "a3c6fc20f9e0fd3aa8cf0d51b421912a" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "member_id": 2988677062855685, + "ods_hash": "02705d54b82ccea7c89939f913c8a91f", + "dwd_hash": "bfeef259184769e12e818bcd21034d72" + }, + { + "member_id": 2995832745758917, + "ods_hash": "f51379d60f726c84ce3b283b24fffc88", + "dwd_hash": "65ebaf71c0a13b3a9c7d57b5f15496e0" + }, + { + "member_id": 2999125651818885, + "ods_hash": "ad6c2088b36bf7671bca1568d68a2c7c", + "dwd_hash": "e513c7b68ec18462a4d3567395b556e9" + }, + { + "member_id": 3003185854190085, + "ods_hash": "38f2fcc6ccba2e4d3b04193fc91b9f8a", + "dwd_hash": "a64fc3a0c4c6c1e55120750339e53ca8" + }, + { + "member_id": 3003552553390789, + "ods_hash": "fff4cde8cafac703310005e846c4b8b6", + "dwd_hash": "55ab4207e0cd1f1d486625251369d8ac" + }, + { + "member_id": 3025342944414469, + "ods_hash": "90a9e93e9f918d86fb9513978ce8d378", + "dwd_hash": "ee3c3f732988c42d0e0a094d4e4de85d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 12, + "ods": 12, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 12, + "mismatch_samples": [ + { + "member_card_id": 2988677063166981, + "ods_hash": "6ec6f7d5d9a0becc890127026d4b9913", + "dwd_hash": "f3c2096b1cd21f13f30075bf8a197232" + }, + { + "member_card_id": 2995832746102981, + "ods_hash": "3d0711ecaf1f2544e6ec079c25b7ea48", + "dwd_hash": "072b0d452e78c35a32924c0e755a5d59" + }, + { + "member_card_id": 2995833659035909, + "ods_hash": "cb059f96b1e81543a3ca0b7c95bb2842", + "dwd_hash": "203d65bc32f10686362e5cccdcf14e9b" + }, + { + "member_card_id": 2999125652146565, + "ods_hash": "ace1fe2c7d3434bbd4d96ec709621ba7", + "dwd_hash": "27613fb508aa1ff2f916f084916c0993" + }, + { + "member_card_id": 2999126038989317, + "ods_hash": "8ece0ff6665d39c389bd3e3f9f1ceee0", + "dwd_hash": "cb81bf108e0ea38f151a14f2416e7739" + }, + { + "member_card_id": 3003185854517765, + "ods_hash": "cff49337cc54680c8066f51e7a62e862", + "dwd_hash": "c3bd0d351711aeabc5b56933e8e000f5" + }, + { + "member_card_id": 3003186241311685, + "ods_hash": "5574691f1e8e2444b6eaa6da5a700669", + "dwd_hash": "3665c5978614953026a798efc6ff8cae" + }, + { + "member_card_id": 3003552553702085, + "ods_hash": "0c77e397da93ef6b60e2e0da670eab03", + "dwd_hash": "941f5cdcb38d5583bc6cd33d2cc1c166" + }, + { + "member_card_id": 3003852642833349, + "ods_hash": "391a02d9f6473a0c2e1da761d98c7ec2", + "dwd_hash": "f9c2763c9f1fb7aa7950b0bf9b97f7f8" + }, + { + "member_card_id": 3005510275991557, + "ods_hash": "a408e7dae6387c9d1e6e1182fdb09c16", + "dwd_hash": "bf480f9e82bbb4c184f5724aeeb19cef" + }, + { + "member_card_id": 3015999424284165, + "ods_hash": "3a709e78f5005af34341b4050e4980e0", + "dwd_hash": "3271a49ba9eed551bc31c6fec0b35895" + }, + { + "member_card_id": 3025342945970949, + "ods_hash": "e5bae17e1203bc2b7464f450ee00aafe", + "dwd_hash": "7401c6126d4807313e04f531994fa604" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "tenant_goods_id": 2991189570373573, + "ods_hash": "05c2c01adc16f257df8036a802cdb3ff", + "dwd_hash": "51130110d143122e3a09d6fe24a25b8e" + }, + { + "tenant_goods_id": 2994234782223365, + "ods_hash": "c662b2064ac9a7501e986331a78255ea", + "dwd_hash": "aa2d7346e572b0c3c76786b056cd4d9d" + }, + { + "tenant_goods_id": 3004531315313413, + "ods_hash": "45a5d659808d87d3dc1b6dd9204d1fe9", + "dwd_hash": "44503a27f094a86e1f391f4d61cd0f8f" + }, + { + "tenant_goods_id": 3028607781079813, + "ods_hash": "a8d835d40dd64f4b2481699044a376e2", + "dwd_hash": "20ae26683d5d85f04905e5b3c885d94e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [], + "mismatch": 13, + "mismatch_samples": [ + { + "groupbuy_package_id": 3029784419027909, + "ods_hash": "3c268b3fa5e2bb91a430a4c5fbb93128", + "dwd_hash": "6fadad2a265eda203e8a4c2c46e1c852" + }, + { + "groupbuy_package_id": 3030025905916997, + "ods_hash": "8a4d3699e54b1c7e7f8f19dc637736f3", + "dwd_hash": "cf585717998656bc8775be4650ec016f" + }, + { + "groupbuy_package_id": 3030872476945477, + "ods_hash": "bd3e1104bdda1fcc8ca8de53d0c5eb70", + "dwd_hash": "3d12da79c06de0409b29a3d8878f940c" + }, + { + "groupbuy_package_id": 3030872859429829, + "ods_hash": "2e6e69ef85692b4e726944c95ae1bb1e", + "dwd_hash": "a5bc627ce361adcb1bfcd4806cc0183f" + }, + { + "groupbuy_package_id": 3030873263688773, + "ods_hash": "766edbd1421b88af30959df8238bdf8a", + "dwd_hash": "c8ddee5848cf67ad099798ceafddd808" + }, + { + "groupbuy_package_id": 3030873437310021, + "ods_hash": "3f6414dccf27698d8b7ee8f2091c0ea7", + "dwd_hash": "c38261a0ef133f338624263979fcff59" + }, + { + "groupbuy_package_id": 3030873639701573, + "ods_hash": "63b07482a08149130c169b2b31075b46", + "dwd_hash": "da0ebfa0243a3fe3e6e7b0f0af98f51f" + }, + { + "groupbuy_package_id": 3030874133269445, + "ods_hash": "6c6c976601852ed1282a6c819f6330e7", + "dwd_hash": "8e2f52488a6bc3058e389b214565fc62" + }, + { + "groupbuy_package_id": 3030874716834757, + "ods_hash": "8fbb2218a773815deb45f0fbecc033d7", + "dwd_hash": "35ca43a315ad7eabcd96ff7151a4037a" + }, + { + "groupbuy_package_id": 3030874907937861, + "ods_hash": "587c83c0c43055a4b923e4db5b62c5b3", + "dwd_hash": "27d69ceec0ab2a4b916c7d1b6d9e618d" + }, + { + "groupbuy_package_id": 3030875431701445, + "ods_hash": "20017b3c3c4b18f6b0e900b74be58c41", + "dwd_hash": "858d41bcfe64b5d7179ffaf9d5fb34b3" + }, + { + "groupbuy_package_id": 3030876421573701, + "ods_hash": "952cd6c44c1fe80ee09ae03338865a13", + "dwd_hash": "9c46bf2b51f1cf7a4da006424b8e3939" + }, + { + "groupbuy_package_id": 3031000036133445, + "ods_hash": "e2decf9c3e893f344273abf9ffe98cd0", + "dwd_hash": "328993e248e9dda119a418860bc899b7" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3479, + "ods": 3479, + "diff": 0 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 71445.57, + "ods_sum": 71445.57, + "diff": 0.0 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 432220.76, + "ods_sum": 432220.76, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 34544.63, + "ods_sum": 34544.63, + "diff": 0.0 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 189974.44, + "ods_sum": 155429.81, + "diff": 34544.630000000005 + } + ], + "mismatch": 3479, + "mismatch_samples": [ + { + "table_fee_log_id": 2987675348144709, + "ods_hash": "76c6966ed77ee365bea2ac4f6c6f2cd2", + "dwd_hash": "6bb73b3593a994c791b49794a5569c29" + }, + { + "table_fee_log_id": 2987676367424133, + "ods_hash": "2595417bd448de7ad7dd8a26cd1d8f64", + "dwd_hash": "d7965989d2993f7b217d1e81b4412c0f" + }, + { + "table_fee_log_id": 2987676719319685, + "ods_hash": "a95ffbac84bfa9076da06486f6e0676a", + "dwd_hash": "0ef7346fcc4f9e85c3bd99874c54e64d" + }, + { + "table_fee_log_id": 2987707287407237, + "ods_hash": "2494706c5d289bf366f68371412cb8d2", + "dwd_hash": "2c5b045764192e40e99b5c90b9502452" + }, + { + "table_fee_log_id": 2987707287423621, + "ods_hash": "e52c488db6402c59c70fb6854ac3786b", + "dwd_hash": "0234f81fd373f8dbdbbe54998f5618d6" + }, + { + "table_fee_log_id": 2987719121128133, + "ods_hash": "cc597baf78d6492898327c38f197058f", + "dwd_hash": "f69b1528cd7f2b3ed0b46b2b009675c8" + }, + { + "table_fee_log_id": 2987751061375621, + "ods_hash": "38d38b6d7d1ea8b1dde22f89d08dd074", + "dwd_hash": "47b1f0880060a24ca0408e29f5e9a7d0" + }, + { + "table_fee_log_id": 2987751101715141, + "ods_hash": "607af5398192c0db3936711aeb204db6", + "dwd_hash": "ee06a6e23a4c59143d6a46f3cb8e7c88" + }, + { + "table_fee_log_id": 2987767968991941, + "ods_hash": "442c13df9ff2a42b726dcac9cfc8cff4", + "dwd_hash": "06b62037729a6da757fa7153639ca010" + }, + { + "table_fee_log_id": 2987771053591237, + "ods_hash": "461ef4ff48215a9c0b11e580fc3e158d", + "dwd_hash": "944665e240e418c501c73fedb4c821af" + }, + { + "table_fee_log_id": 2987777106465349, + "ods_hash": "9ae18cbace3bdedb5b7bf2c18a572c14", + "dwd_hash": "22fed10be9dc90a65ace5ca070485700" + }, + { + "table_fee_log_id": 2987787652928069, + "ods_hash": "2a436c82aaf6d88cc6793b621724b981", + "dwd_hash": "446c9af49089f22d465d6ae858d5ce7c" + }, + { + "table_fee_log_id": 2987806870112965, + "ods_hash": "7a0059d2c1773976e07dfc66c48faeeb", + "dwd_hash": "2d7546d07f0701e95116b884cecf3d2f" + }, + { + "table_fee_log_id": 2987808146477637, + "ods_hash": "4fa4124e7b6f380f9406096c9c6110a6", + "dwd_hash": "b13fc1b226bfc2b05d82b661b9531dc6" + }, + { + "table_fee_log_id": 2988030895147653, + "ods_hash": "fa13eb2cb501080a8f071e07fde2c1af", + "dwd_hash": "e49506e1d4267804cf4e68b6836a3f57" + }, + { + "table_fee_log_id": 2988030895164037, + "ods_hash": "255758be999e5552dc67970712558090", + "dwd_hash": "eaeb3ee8eeb3b88e1db5aeb1fcac0357" + }, + { + "table_fee_log_id": 2988030895180421, + "ods_hash": "72ecc52e8eedc7da1cb7f44471fba779", + "dwd_hash": "8bd9cbee22761861d2adf195ab919dc0" + }, + { + "table_fee_log_id": 2988030895196805, + "ods_hash": "a078f868a5b684c7700ac60be5ea1e8c", + "dwd_hash": "a83f3467d22b80ef2ebfc6cf6089fde7" + }, + { + "table_fee_log_id": 2988030895213189, + "ods_hash": "83726a0586333abb9e8164e797e1898a", + "dwd_hash": "d4e633a52174cd883f6853ac43a614e6" + }, + { + "table_fee_log_id": 2988030895229573, + "ods_hash": "020f10afba62f2ea299f03ed1ae6142c", + "dwd_hash": "8f412fd500f3f83e79a623d20e432141" + }, + { + "table_fee_log_id": 2988030895245957, + "ods_hash": "a3b13535e09d893c46c661a41e92a630", + "dwd_hash": "0427d8cb273bfc1a022d021a985ff4a6" + }, + { + "table_fee_log_id": 2988030895262341, + "ods_hash": "bd0b7f7cebfe18cfdb9c88c291b9582e", + "dwd_hash": "53cfeb787bab105e6dfc4fc079be7922" + }, + { + "table_fee_log_id": 2988096766251589, + "ods_hash": "b69935a904ad2c048fae9fed0b75a0c0", + "dwd_hash": "6c9016e2700eee196030a84ff0bad131" + }, + { + "table_fee_log_id": 2988098790492805, + "ods_hash": "9f87fa9336bda235d61fae6cccbbe0bb", + "dwd_hash": "1aaedfee48d4beb6e6183d2421f03339" + }, + { + "table_fee_log_id": 2988218941098629, + "ods_hash": "5d1629db97486e45941d1e6fd676865b", + "dwd_hash": "543892e5f50b1e8fbc278d22ad1d45d7" + }, + { + "table_fee_log_id": 2988485085270597, + "ods_hash": "a41b39d964b4fa08337f3cff2f92804e", + "dwd_hash": "46a3ce22631a27ec25107bdedeec23e4" + }, + { + "table_fee_log_id": 2988488776403653, + "ods_hash": "361d64c84a02464722b2e2846166ad9a", + "dwd_hash": "505953ecdac3ff78571f5c7d28fd79ca" + }, + { + "table_fee_log_id": 2988527712488069, + "ods_hash": "57e139cdd12d54261b2f1e7f878dbc71", + "dwd_hash": "a2dfd70bf13a95f38ac6742515f06a04" + }, + { + "table_fee_log_id": 2988537078223557, + "ods_hash": "301322f92c897906727c6295c679de41", + "dwd_hash": "439df16ab5b97cea4e6dcaaf84a553a0" + }, + { + "table_fee_log_id": 2988552501250757, + "ods_hash": "194917517391d8e650bd78fe2c951aa8", + "dwd_hash": "9258dc2dcf087a8731d454d9053d6aa4" + }, + { + "table_fee_log_id": 2988620330748549, + "ods_hash": "b2433647b455c4a197ff54d8fe176016", + "dwd_hash": "f68a558c0d6a533c1f2e3871d4618b95" + }, + { + "table_fee_log_id": 2988633118855749, + "ods_hash": "68b10e2cb2f06a975bf7d6a5a2c4659c", + "dwd_hash": "fa60854790add4006c8f720092114370" + }, + { + "table_fee_log_id": 2988652285989573, + "ods_hash": "16d3923cfb8ecaa94fa2a5aaae159350", + "dwd_hash": "98d3dbb3c08bc3cf783641cb23d10944" + }, + { + "table_fee_log_id": 2988673826591429, + "ods_hash": "c17cd1f00cf71625e6dfe0d9b85a33ba", + "dwd_hash": "5f4d6b15a1477e28e6464f0ef866b0fa" + }, + { + "table_fee_log_id": 2988674492371653, + "ods_hash": "9a4b192fee0497d264432f2d21d757c6", + "dwd_hash": "9e4e250c9d4f9e8791065c441edb7c73" + }, + { + "table_fee_log_id": 2988679471368901, + "ods_hash": "76b429753e16c7833d018af5e6c5fbed", + "dwd_hash": "f27b6584850ea09389076c393672bcad" + }, + { + "table_fee_log_id": 2988703118445253, + "ods_hash": "72598cab66a834124d6d5b7dde8dc5a4", + "dwd_hash": "1df30c801805e4dcdd9418ab37a21fc1" + }, + { + "table_fee_log_id": 2988729548427845, + "ods_hash": "e3da99afd0638d4842ae346e4091d094", + "dwd_hash": "2f74081ea11c9f624443d2572e9338b7" + }, + { + "table_fee_log_id": 2988737624625733, + "ods_hash": "ba5a1cbbd3397980b987e21bd9cd5fce", + "dwd_hash": "ce456549cb77ab1d3ea9646b9456de7a" + }, + { + "table_fee_log_id": 2988748328571461, + "ods_hash": "f84a87e3edab498c3e2fa90f340ffff2", + "dwd_hash": "1e09166034246b6c3c5fc83c9c6724aa" + }, + { + "table_fee_log_id": 2988756484592197, + "ods_hash": "85392788112dbfa4ad3bccd3533205fa", + "dwd_hash": "1905c5dd53831d46fff5a43c8bb3d137" + }, + { + "table_fee_log_id": 2988764682490437, + "ods_hash": "632ca560cbe22f28013cca87c212cab0", + "dwd_hash": "1f6b1bc1e527e8301ffd69bd320d17ee" + }, + { + "table_fee_log_id": 2988765072478917, + "ods_hash": "7b9004b6be74a08dfe2ec5acc7d6dc6d", + "dwd_hash": "63cc0d7e642e703ec5f64912588f91ba" + }, + { + "table_fee_log_id": 2988771524154053, + "ods_hash": "27c385f742f9e96cc9575a8df5718ace", + "dwd_hash": "2a58eb832d74a25aa2f7033a2529f5d4" + }, + { + "table_fee_log_id": 2988773730077381, + "ods_hash": "a63f3b391575d3d421cd71f98ccaa31d", + "dwd_hash": "f4b7039d28c5956be853cbe0e093dd7a" + }, + { + "table_fee_log_id": 2988774506007237, + "ods_hash": "9477f851b7774b27b4f9e75437ee8095", + "dwd_hash": "9d18e2f2466ff5d4b65cae705f08a79f" + }, + { + "table_fee_log_id": 2988775167840837, + "ods_hash": "7200154547168fe08dada5ada2368035", + "dwd_hash": "5a8d080db6aff8c2f2f37af02c9e1b0a" + }, + { + "table_fee_log_id": 2988776555252421, + "ods_hash": "e0f94c4a93839ef5e5e34852c697b2bb", + "dwd_hash": "ee34e82da16b13b1b61536262a1b689a" + }, + { + "table_fee_log_id": 2988777760443013, + "ods_hash": "c4328222d79e4f7b253c998d2a22090c", + "dwd_hash": "d0445f9957a72907b0498ad6f135f1e6" + }, + { + "table_fee_log_id": 2988781139366469, + "ods_hash": "0daa2540e39cc17557b7bf6811bf75a8", + "dwd_hash": "72ff6be67e83adea4bf611eb7c0cfa52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2625, + "ods": 2625, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 190.1, + "ods_sum": 190.1, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 65814.4, + "ods_sum": 65814.4, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 63275.9, + "ods_sum": 63275.9, + "diff": 0.0 + } + ], + "mismatch": 2625, + "mismatch_samples": [ + { + "store_goods_sale_id": 2987688895629957, + "ods_hash": "3ac98e3c692402c64de98246e7fded1d", + "dwd_hash": "460f7e439c5c5fe7636e494aa83103c0" + }, + { + "store_goods_sale_id": 2987701981696709, + "ods_hash": "38cfda6742c96f601636ca0e9d6162cc", + "dwd_hash": "498de8a6c9028ceecf4a783927a2207e" + }, + { + "store_goods_sale_id": 2987701981696710, + "ods_hash": "8649e29ab0ef7180214f01377cf7037f", + "dwd_hash": "c2468cc1db618b3d3c305b461361e212" + }, + { + "store_goods_sale_id": 2987701981713093, + "ods_hash": "39f36f01d8957c174378241be1efb285", + "dwd_hash": "0b29c7bb8dfdf09fb2918f233d425ce7" + }, + { + "store_goods_sale_id": 2987707287947909, + "ods_hash": "96a85f593bd19e725bf3409c877babc7", + "dwd_hash": "045800e49e531005ea5f4f475111bfe7" + }, + { + "store_goods_sale_id": 2987777106989637, + "ods_hash": "073f054b5be60c75a58a77b0c760af2d", + "dwd_hash": "164e70d201fd7d5818dcd49e2d0dd6e2" + }, + { + "store_goods_sale_id": 2987792158919365, + "ods_hash": "735a1cabb5d44eca78d2da17cfd7b471", + "dwd_hash": "e3a4502f4898a33dd65ebafa418346fa" + }, + { + "store_goods_sale_id": 2987806870522565, + "ods_hash": "682de3bed6321eced9af69a097044402", + "dwd_hash": "9f78da41a566cc25d7be2eebe689b982" + }, + { + "store_goods_sale_id": 2987806870538949, + "ods_hash": "7f552fba809fbe497cf0cc9ad36948c2", + "dwd_hash": "ec2d45081c2e0cd2a3483c52127bee3d" + }, + { + "store_goods_sale_id": 2987996113996485, + "ods_hash": "6d1619eeaac2322ae4c7622dc0b8c9b3", + "dwd_hash": "f21e7c98cea6b982b10723d051261744" + }, + { + "store_goods_sale_id": 2988096768971333, + "ods_hash": "d33ffb1609bd933038c9640bf536b315", + "dwd_hash": "bacd1011df6fb0e609bb521056649625" + }, + { + "store_goods_sale_id": 2988096768971334, + "ods_hash": "df0411a265eb52f50101ddf4749ff7ea", + "dwd_hash": "0f2b5e3e74b5ec2c165a2faacfd86ed8" + }, + { + "store_goods_sale_id": 2988096768987717, + "ods_hash": "63b5ba716bb8a97381d1dab9878771ce", + "dwd_hash": "acd46bf5dd81228cb5a6a5d9ed1afe08" + }, + { + "store_goods_sale_id": 2988096768987718, + "ods_hash": "b1f4e077dc820ebff93871ff8c503887", + "dwd_hash": "0907ccddfd5c5548b556407fe0e74211" + }, + { + "store_goods_sale_id": 2988096769004101, + "ods_hash": "532b453eef32206842cad60a779bac7a", + "dwd_hash": "9d1f6d41d4a470a15201f9426ba42dfc" + }, + { + "store_goods_sale_id": 2988096769004102, + "ods_hash": "a77acf18b40fc4a2aa606ca405667dd3", + "dwd_hash": "bc9da392ee02d087b65a15a71fe95acb" + }, + { + "store_goods_sale_id": 2988096769020485, + "ods_hash": "ed4d5394b81327af31a478a9b3176f4c", + "dwd_hash": "8dae7f1ded51a4d22c890c018cb2db7b" + }, + { + "store_goods_sale_id": 2988096769020486, + "ods_hash": "05541f2b4db0ff0eb325f818d6f2ecf6", + "dwd_hash": "5c1897067268a279b77df9ffad976cf7" + }, + { + "store_goods_sale_id": 2988096769036869, + "ods_hash": "225c78016a56bf6d3a38dcc16feca48e", + "dwd_hash": "cd4807e809adcbfe4c958db1372bb632" + }, + { + "store_goods_sale_id": 2988096769036870, + "ods_hash": "834a649f78ec57153eda7a0ff7579566", + "dwd_hash": "c6a82cc5cdb0cccc2e951467a3699f49" + }, + { + "store_goods_sale_id": 2988096769053253, + "ods_hash": "d47d1f955231df795943d30f7c3bf575", + "dwd_hash": "2f54360f8826b23b3e8ba4167f25a327" + }, + { + "store_goods_sale_id": 2988096769053254, + "ods_hash": "019c46adab9e9933f6159864f4e29216", + "dwd_hash": "049d3008b4522d2b0d497b4bf5d9ad30" + }, + { + "store_goods_sale_id": 2988096769069637, + "ods_hash": "e7480d03a475c0e1319ce0ba735d38e5", + "dwd_hash": "f82f25311f3232d9091c1baa42e8da71" + }, + { + "store_goods_sale_id": 2988096769069638, + "ods_hash": "7d16dc5b39e09e4bb9e3f0a9b54c6330", + "dwd_hash": "9e0c181c49c52f2628773f8719ca619e" + }, + { + "store_goods_sale_id": 2988096769086021, + "ods_hash": "460f79616bdccc1f4d1a7f3e96b48659", + "dwd_hash": "c59c834e0dc51013c8e9f46965529dce" + }, + { + "store_goods_sale_id": 2988096769086022, + "ods_hash": "490e7ea95359c80e468a310bb6d3cbbd", + "dwd_hash": "86ce526598201cd42fa9469f670598fb" + }, + { + "store_goods_sale_id": 2988096769102405, + "ods_hash": "36a10ba751265ad3d05cd0ccbe7aaba3", + "dwd_hash": "ccceece6007ede23b4c5e7cb1d3cd78f" + }, + { + "store_goods_sale_id": 2988096769102406, + "ods_hash": "0abcc55f0a7039f6ca05a2eb3159ae25", + "dwd_hash": "794e0fb6fd25d0af7c92ab3229c8ca1d" + }, + { + "store_goods_sale_id": 2988096769118789, + "ods_hash": "351a5b773fc3341a4bcd582f64743d21", + "dwd_hash": "54f45cfe9f1e99f805fb3ab5ef8940b8" + }, + { + "store_goods_sale_id": 2988096769118790, + "ods_hash": "6f3135d5f5c8e3cbce794df1b9fb4ece", + "dwd_hash": "9ad2ad608e4edffd19fd2440d1dc4eb5" + }, + { + "store_goods_sale_id": 2988096769135173, + "ods_hash": "446789df760b0797b355588fdc3a72a8", + "dwd_hash": "1591966fb9d73f3b248c60c0ecec06e1" + }, + { + "store_goods_sale_id": 2988096769135174, + "ods_hash": "afe6ac2ddcf65e668de402a5bfaac917", + "dwd_hash": "c7c136e56eb0fa55c2d9880685fb53d8" + }, + { + "store_goods_sale_id": 2988096769151557, + "ods_hash": "14c2b98fa6d5a58fbfc29e80f5105825", + "dwd_hash": "1c1143eda131966942a7ad4e5ccc4c39" + }, + { + "store_goods_sale_id": 2988096769151558, + "ods_hash": "2657bf9bc6908f92c532da2b77c04e17", + "dwd_hash": "c88f050cbe4975e51b0a035ae4a61138" + }, + { + "store_goods_sale_id": 2988096769167941, + "ods_hash": "25938beffca55231811f663fd19c704e", + "dwd_hash": "809afd5945266defe0ec90661689d0bb" + }, + { + "store_goods_sale_id": 2988096769167942, + "ods_hash": "036912c2a91d57bf7a55814bfd8a00a0", + "dwd_hash": "54c3aa93e8c17d294c5a8ef4737cbecd" + }, + { + "store_goods_sale_id": 2988096769184325, + "ods_hash": "5471594b4fa14302af4cd4b356bc3153", + "dwd_hash": "bc2a89e03105e6fc57a70f36d6b82b10" + }, + { + "store_goods_sale_id": 2988096769184326, + "ods_hash": "0a18d37e681430d275d1e157c367910a", + "dwd_hash": "b26b90763d923f2474bf9c351a7f7161" + }, + { + "store_goods_sale_id": 2988096769200709, + "ods_hash": "3f21817ca532d4529de0ceceedbe9729", + "dwd_hash": "e2ea59d651e99a61c8b77d4512a621d4" + }, + { + "store_goods_sale_id": 2988096769200710, + "ods_hash": "4008af6b88bd8afa7dfd21449b3470cb", + "dwd_hash": "3162805883bf1b75672fa1df4920c322" + }, + { + "store_goods_sale_id": 2988096769217093, + "ods_hash": "661553a05e6468f2f2f282a7baa89b14", + "dwd_hash": "e16c3e734889452613d0ebc11a1e799b" + }, + { + "store_goods_sale_id": 2988096769217094, + "ods_hash": "f668d5011e75aaab84ea01a089de67be", + "dwd_hash": "4ee7f0ed13a80e3cf3d71f8a9b4293b6" + }, + { + "store_goods_sale_id": 2988096769233477, + "ods_hash": "a6ce29b059857ec9e7e6bf1e32263f5c", + "dwd_hash": "b42a13d2b3d111e1825824cc29ca725e" + }, + { + "store_goods_sale_id": 2988096769233478, + "ods_hash": "7ac281ce512e3b953b454831f05d2242", + "dwd_hash": "713e68de6b4d38e32c0548250d22977e" + }, + { + "store_goods_sale_id": 2988096769249861, + "ods_hash": "1cd584a226f341dc702a46572249d498", + "dwd_hash": "841bc02ddeb5755127fd0839d5a206e1" + }, + { + "store_goods_sale_id": 2988096769249862, + "ods_hash": "c6e5f3c4af2da586fcf624edb4509c73", + "dwd_hash": "705b2486e36b317c0482dc8e4dc44ee7" + }, + { + "store_goods_sale_id": 2988096769266245, + "ods_hash": "e2669d1bb6aa4e34c58203d5aa42346c", + "dwd_hash": "91371974af9bda6d16f01161b05056d5" + }, + { + "store_goods_sale_id": 2988096769266246, + "ods_hash": "ebbc11ebffdead7d27d293563a790579", + "dwd_hash": "3e2c5b9f786384182ee8e2ea0a0501f1" + }, + { + "store_goods_sale_id": 2988096769282629, + "ods_hash": "7ef05e8cb65d5b2fe3c5c41aa3dbb935", + "dwd_hash": "3adc14476c57398ec9f371190dacbbf3" + }, + { + "store_goods_sale_id": 2988096769282630, + "ods_hash": "d8e54b7cf8ed68cf9fbbea4d88236ae1", + "dwd_hash": "3b7a0e35a2fe01f16b061a29befc9bf8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 975, + "ods": 975, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 3190.05, + "ods_sum": 3190.05, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 322183.69, + "ods_sum": 322183.69, + "diff": 0.0 + } + ], + "mismatch": 975, + "mismatch_samples": [ + { + "assistant_service_id": 2987675348587077, + "ods_hash": "d72f7e368398cc458ff67cac818ae4fa", + "dwd_hash": "5cdd6dcd19d748baa5a57c2e27ab7d27" + }, + { + "assistant_service_id": 2987683069825733, + "ods_hash": "ad0cfbaedeea8980cb02e609c1060d1d", + "dwd_hash": "14de4f35aa65e1e380a00f5082490a88" + }, + { + "assistant_service_id": 2987705965759109, + "ods_hash": "f479ad1131a4c5c3f8b8f6b5f82fbd5e", + "dwd_hash": "de8d15f5887e37c663998539a9d3ce8e" + }, + { + "assistant_service_id": 2988030895737477, + "ods_hash": "6f4e8ef8f9cfd06c7d9f16e509d261fd", + "dwd_hash": "27779e64e0763a1616bfbebed31f7c41" + }, + { + "assistant_service_id": 2988030896294533, + "ods_hash": "2ea321ed071173c399733616cea04055", + "dwd_hash": "c6a62e13a506266da7997c450bdbb969" + }, + { + "assistant_service_id": 2988030896720517, + "ods_hash": "d9451f87073c0d9fb1e995b436a40e8e", + "dwd_hash": "b3fcc2fbe6140b8512f8fe1709b6d8a0" + }, + { + "assistant_service_id": 2988030897556101, + "ods_hash": "f4520e33282aa319787bc4d0e3eeeff4", + "dwd_hash": "2a1bbf3a9d2499e545a5d0d55938ca18" + }, + { + "assistant_service_id": 2988096766644805, + "ods_hash": "a59ce080d732a728620184c2af17dc68", + "dwd_hash": "5edd918c54f43353dceb8a47a248acaa" + }, + { + "assistant_service_id": 2988096766988869, + "ods_hash": "87f0145b6f969290c4ecd0517907f141", + "dwd_hash": "948574c9075425c440370c0d4e769d5a" + }, + { + "assistant_service_id": 2988096767349317, + "ods_hash": "ecdf41d7b1f65f84dfa9908634a47afa", + "dwd_hash": "327fdfd92cc1ca89b2e6c14eacb17e36" + }, + { + "assistant_service_id": 2988096767693381, + "ods_hash": "437c77c6afbc0bd8ad340f2ab1b0f65a", + "dwd_hash": "bc3af231f8cf754d80745e6cd6a797a4" + }, + { + "assistant_service_id": 2988096768070213, + "ods_hash": "6abe0720d8a02f31ef96088d77f0c654", + "dwd_hash": "351f6cbc3e8a6e7b1985e6bf34787643" + }, + { + "assistant_service_id": 2988096768414277, + "ods_hash": "fcccdfe0d9e59108a1185c9c4d66c65d", + "dwd_hash": "bc598090a1705e2b79d6eb0f2118807f" + }, + { + "assistant_service_id": 2988098790886021, + "ods_hash": "d0eb9f5343154c5e7f964c7b6524e2e2", + "dwd_hash": "88e30f3d0b4a9e0b5e0bbb59b54f42b7" + }, + { + "assistant_service_id": 2988098791410309, + "ods_hash": "8798a1162876358171b8a7f1f9218f35", + "dwd_hash": "4684dd17c1f34b3c2f71e4a8c3372402" + }, + { + "assistant_service_id": 2988218941491845, + "ods_hash": "4b8f36267324b4c30193f50fda793fec", + "dwd_hash": "b76e60683adf78663edda53d89b5db41" + }, + { + "assistant_service_id": 2988218941852293, + "ods_hash": "bacd9dff1c433a4b8984ef4631256e33", + "dwd_hash": "cef53d882a172804713835e713208742" + }, + { + "assistant_service_id": 2988764682900037, + "ods_hash": "6ca2a5432e8b0c3394b215772db100e0", + "dwd_hash": "1f053cab0fc89658d0ad729baf30c752" + }, + { + "assistant_service_id": 2988907523246789, + "ods_hash": "f775262a70880dedc12948aab995e7bc", + "dwd_hash": "76b78cd9b68c0c2f4b058dc5679004ef" + }, + { + "assistant_service_id": 2988908683662021, + "ods_hash": "06e909c45cc7420cd362b365449398e2", + "dwd_hash": "2f96fe4e2b6ce061dd45faf8cb973f59" + }, + { + "assistant_service_id": 2988908684055237, + "ods_hash": "a2f8f64a3748c941bc6c2f58f3fb9edb", + "dwd_hash": "9833a9eeaba1793281ed323be94f0359" + }, + { + "assistant_service_id": 2988972808131141, + "ods_hash": "2a325d567eb786a2b737fd3fe356bef3", + "dwd_hash": "da6a68fc583c7a4f0406842c13593d31" + }, + { + "assistant_service_id": 2989071967111877, + "ods_hash": "f5a8fcf98a5740a14c4f8ddc571ba4db", + "dwd_hash": "b5a9dbc7508fd70cb4cf98b774116bc6" + }, + { + "assistant_service_id": 2989103393589893, + "ods_hash": "e500a1932217da39360a6fe6f334f1ae", + "dwd_hash": "d2643b6cf0ca7ffb71b2654af1945c34" + }, + { + "assistant_service_id": 2989103393966725, + "ods_hash": "ae78fff8df95bb8cf129328d8a841f7f", + "dwd_hash": "a1ff38183c4a4736595d87a24f052e6c" + }, + { + "assistant_service_id": 2989107446567621, + "ods_hash": "afbe6729e8d6795fd877a3cc260d4e93", + "dwd_hash": "4c21feddf6d3b69732f27dc4e9aa104e" + }, + { + "assistant_service_id": 2989107446944453, + "ods_hash": "00eaeee6a9d2b6fa5694f77e51398b0a", + "dwd_hash": "062a994c66086634a818ab3493dfc300" + }, + { + "assistant_service_id": 2989162897183429, + "ods_hash": "83183c09de3b58f73a94cd0e1af59144", + "dwd_hash": "3cf2023389026905726a40593ac09b80" + }, + { + "assistant_service_id": 2989216018401925, + "ods_hash": "1aaeec5c72eab00a00f086ebab896e93", + "dwd_hash": "6db391447bcd01989e7c4f4f14402224" + }, + { + "assistant_service_id": 2989216018762373, + "ods_hash": "224eec4aed8e0374d9f149cc77d72492", + "dwd_hash": "e3533830e483bef8dea16f1232878ce7" + }, + { + "assistant_service_id": 2989283971781317, + "ods_hash": "691fdb203a10d25519e74218408a9ef4", + "dwd_hash": "a098d3cf5cbb44de32ac515dda196e4e" + }, + { + "assistant_service_id": 2989283972141765, + "ods_hash": "790a9af897622429eedabfafacc67ddc", + "dwd_hash": "6ae691ed3c44f71d8bc69f561754e2eb" + }, + { + "assistant_service_id": 2989436187511429, + "ods_hash": "fa95ba6e9250a87d6ac8a4a409a420de", + "dwd_hash": "b5b1ec4efaabc81519dc08ec6cfc4e02" + }, + { + "assistant_service_id": 2989436187871877, + "ods_hash": "852724c65be20cc7ce621799d0cce9e7", + "dwd_hash": "50a25a4b7b4d5f037a666310a02896f1" + }, + { + "assistant_service_id": 2989436759446085, + "ods_hash": "96f2d21091f06b20575a8c1afe2d3334", + "dwd_hash": "03db01763bec21d3f670bcdd78bfd867" + }, + { + "assistant_service_id": 2989436759822917, + "ods_hash": "d08c77d3f7ed6c903f25530640a8ea71", + "dwd_hash": "f1904bd9dfd5803e1da47246bc5241d7" + }, + { + "assistant_service_id": 2989437232157253, + "ods_hash": "af49e03ed0dc048c2f916578594dd10a", + "dwd_hash": "41d9948a25de15f94c07cd247d75e705" + }, + { + "assistant_service_id": 2989575637191301, + "ods_hash": "24f025b8fa669ff991a993479b48fd9a", + "dwd_hash": "59979f1709068346536baabb06397dae" + }, + { + "assistant_service_id": 2990101503707781, + "ods_hash": "5996defebbaca9df66be41f8c35d1277", + "dwd_hash": "4d67485160566ef2ac7e7b9efa2157dc" + }, + { + "assistant_service_id": 2990197430307461, + "ods_hash": "fe95e05aba1e44db64fa5ff5b86b649e", + "dwd_hash": "07835dc4b8dd605bccbefd18640e6429" + }, + { + "assistant_service_id": 2990197430798981, + "ods_hash": "a142ae06ee37639b7dac7c31a389ab73", + "dwd_hash": "66341a04b42210f1aa00ce5898e7ca08" + }, + { + "assistant_service_id": 2990197431257733, + "ods_hash": "9602387496f46a11472394337d25eecb", + "dwd_hash": "2dfd99db5027a73da15e49aa1d1aba33" + }, + { + "assistant_service_id": 2990305791398469, + "ods_hash": "8ea6663e88026494d992d3a2cac73c8c", + "dwd_hash": "b773f88df3c81e84250a3af82f0e0972" + }, + { + "assistant_service_id": 2990320674327173, + "ods_hash": "f615108799b04f58564162e93d01eafd", + "dwd_hash": "e104396c0c62d3a8de132e3d6c84ca3f" + }, + { + "assistant_service_id": 2990346142847557, + "ods_hash": "e225d665290b9738a6ac9b9b5c5808ab", + "dwd_hash": "4f9091bbce406d9610c9ba3e4b5984a6" + }, + { + "assistant_service_id": 2990368806113861, + "ods_hash": "5868494d9df5dcbcef4079b969f4aceb", + "dwd_hash": "24561866b467c8235f2c2c5505db0b61" + }, + { + "assistant_service_id": 2990401598638725, + "ods_hash": "e172cdc6bd6e0c546ee7db5280c446c9", + "dwd_hash": "61461b60d47182922391d3e16fe3e028" + }, + { + "assistant_service_id": 2990418836327045, + "ods_hash": "f78e84640f5995efff1b681aacf699ca", + "dwd_hash": "6e22c29a96cd81b4aff4518680d6a965" + }, + { + "assistant_service_id": 2990438366300805, + "ods_hash": "1766ff484e04b111bb413ecd0bc48c80", + "dwd_hash": "5f87c26c33baffd97fb51a17b53ad82b" + }, + { + "assistant_service_id": 2990484554894021, + "ods_hash": "afb7d0dd922c70d7e56362ef700402d8", + "dwd_hash": "a6498be15235bc4198923025036a6509" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2816, + "ods": 2816, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 179652.0, + "ods_sum": 179652.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 170800.75, + "ods_sum": 170800.75, + "diff": 0.0 + } + ], + "mismatch": 2816, + "mismatch_samples": [ + { + "redemption_id": 2987719121636037, + "ods_hash": "fc8e62b73a45cb92cd28026a0b1f9892", + "dwd_hash": "7a26589dc438769d511d431abc090766" + }, + { + "redemption_id": 2987719121636038, + "ods_hash": "7b09df9837e450be927fee4d175b37b9", + "dwd_hash": "3011a37f5049f985b41dfc03ad5ad558" + }, + { + "redemption_id": 2987719121636039, + "ods_hash": "9b8fcbe9114458cbf0c74606c54b3ae1", + "dwd_hash": "348714b47842283f542792f367e151c1" + }, + { + "redemption_id": 2987751061998213, + "ods_hash": "5e188a1aa4b0b9da212400c1bfd6d3bc", + "dwd_hash": "3acb7a23a61e2fa16e12036aa4b4ec48" + }, + { + "redemption_id": 2987751102157509, + "ods_hash": "41c0c63e498083f2414f963df8cb9a9b", + "dwd_hash": "1094640e5dfc052557329c58f45c755c" + }, + { + "redemption_id": 2987767969467077, + "ods_hash": "ab7436ef5d610cc00a853bb05f21688c", + "dwd_hash": "ec243b3c5d60b0142e8372e606fb9826" + }, + { + "redemption_id": 2987767969467078, + "ods_hash": "f3c7b09867262a83427124c9d0f6db66", + "dwd_hash": "0a4972b0e4e637e67840cd9a65f7ddbd" + }, + { + "redemption_id": 2987771054066373, + "ods_hash": "cbe1c9af114eaa6b4199c7b9fdc1242d", + "dwd_hash": "bd6e76668f04e846f33b9d46ab77c7f5" + }, + { + "redemption_id": 2987771054066374, + "ods_hash": "c70afb4cba980831f1e07bd2d869debd", + "dwd_hash": "d4238ef5dd60ad9ee7452c9adb9a551b" + }, + { + "redemption_id": 2987777107055173, + "ods_hash": "0b1f54650e85c6e0f10859a65d8dc7b3", + "dwd_hash": "e18e617327c0690997b0177f4dd226fe" + }, + { + "redemption_id": 2987777107055174, + "ods_hash": "b466c5de3df1e7ee0a818068edf22958", + "dwd_hash": "8b5a163995e7fcfed5dddb4d208f7392" + }, + { + "redemption_id": 2987787653567045, + "ods_hash": "ac83db1d8e215a4b01f1fbb745fa71db", + "dwd_hash": "2479b9e5e6db652e043cd55640f2cfde" + }, + { + "redemption_id": 2988488776927941, + "ods_hash": "37e69a0f57def0e9790e8b50af3c0a2a", + "dwd_hash": "16ed416de6da22074cafbc5d79800989" + }, + { + "redemption_id": 2988527712995973, + "ods_hash": "9b942f91a7c2f30ff20760c7c84f6fea", + "dwd_hash": "b5d5e9f0272f990d43bca448ec7e3b71" + }, + { + "redemption_id": 2988537078813381, + "ods_hash": "dfd9c81b1892e673888eeabf8ff1037a", + "dwd_hash": "c0d79a14ae06e182d598a327916dd0a9" + }, + { + "redemption_id": 2988537078813382, + "ods_hash": "7380183b40a7544a5d9e6d62cf5e4332", + "dwd_hash": "c27d7e0e61268066e7f57ac4f3ff5e84" + }, + { + "redemption_id": 2988552501725893, + "ods_hash": "1abd69594592aade1ca215e7c0c4f8ea", + "dwd_hash": "c4469bc9295cea14bfb846a376222a82" + }, + { + "redemption_id": 2988552501725894, + "ods_hash": "1f601237536b80073f1dcc3466b44293", + "dwd_hash": "aad85e91234eace25649f9396d4be4b9" + }, + { + "redemption_id": 2988620331338373, + "ods_hash": "daa428bbc1a9eb56cf4f97502e79ed78", + "dwd_hash": "90b081a7bea5ae8d511a0e7ae02b5717" + }, + { + "redemption_id": 2988620331338374, + "ods_hash": "df26074e0529009211e77e33f0f648b3", + "dwd_hash": "d8e23b1f4ffbe5f07feba242c9982f9e" + }, + { + "redemption_id": 2988633119298117, + "ods_hash": "da4630b24387b9a4b8cb02fe9af16391", + "dwd_hash": "9e286600fc8a17ec3c3a91f319761317" + }, + { + "redemption_id": 2988652286595781, + "ods_hash": "57b8e79f57faa1f29ec47649decedf2f", + "dwd_hash": "c30ed9742f04ea6d4c28bfb69331953e" + }, + { + "redemption_id": 2988652286595782, + "ods_hash": "2e70d2728b2a89fe91a8959205ec436d", + "dwd_hash": "becda9d382de48268bb155e6eb3ab2c7" + }, + { + "redemption_id": 2988679471958725, + "ods_hash": "8b6e3428b5359df5a965e0bb8ddd9309", + "dwd_hash": "103d82d4662b66efa3c30add9083c566" + }, + { + "redemption_id": 2988703118904005, + "ods_hash": "915250117d6ed52ad1e35e8daff53a2d", + "dwd_hash": "31e339c6de2035e2c29342d4a9237bc9" + }, + { + "redemption_id": 2988729548870213, + "ods_hash": "a828fdd5c8ecd917a1d6356008b05815", + "dwd_hash": "c98453cbf0f8b8ae9d61743b5a8ad640" + }, + { + "redemption_id": 2988748329079365, + "ods_hash": "4c83547a10727d22c6c2367ad8844015", + "dwd_hash": "b21883ca755cfb1ed87732bdca39a257" + }, + { + "redemption_id": 2988756485067333, + "ods_hash": "60331ae9658a0ec5a2a5a2bb6b3293f5", + "dwd_hash": "87cf7ef8b196f3ce8df93e681cb1fb8c" + }, + { + "redemption_id": 2988765073052357, + "ods_hash": "a812bed28a3c7753ffba46179be4fda0", + "dwd_hash": "13f2bc8171da17e1e6f3451bd4b65282" + }, + { + "redemption_id": 2988765073052358, + "ods_hash": "1dcbfc9dc48a6ccbbceef175829d7156", + "dwd_hash": "9c6284e6533395ba5964c3e9d7d6beef" + }, + { + "redemption_id": 2988771524661957, + "ods_hash": "0a7645fdbfaacfc3efecf386abab43af", + "dwd_hash": "1fd0416dd2fe3d0dcd459cee24354c6a" + }, + { + "redemption_id": 2988771524661958, + "ods_hash": "1b557196dac075e57cb5b17dc865f9f5", + "dwd_hash": "e797aba46ec5f8d87cf31983b3c29e4b" + }, + { + "redemption_id": 2988773730634437, + "ods_hash": "9060629f453cecf56df0a371cb6a8433", + "dwd_hash": "0838beeee0b9f0140b176f36b739a903" + }, + { + "redemption_id": 2988777760950917, + "ods_hash": "1778535117e2149642cec38e946a9d55", + "dwd_hash": "aaa657e26663bbf9884c06265705db2b" + }, + { + "redemption_id": 2988777760950918, + "ods_hash": "b244c1d66f4485a11ec7540744545d2f", + "dwd_hash": "965f668216f275d7c8030f38b8a7d66d" + }, + { + "redemption_id": 2988777760950919, + "ods_hash": "dcd41c68f1749c4a0c88c899e3b88892", + "dwd_hash": "4f981c8d748275c87bcde32c69a70050" + }, + { + "redemption_id": 2988781139857989, + "ods_hash": "2dc2829f7d2f49f2a08f792a2bd646e2", + "dwd_hash": "c0ffb68b31e911618c47cbe4d5c978b2" + }, + { + "redemption_id": 2988789651229381, + "ods_hash": "38375a7e3b6ad85301a10a3ebeea6e28", + "dwd_hash": "e800760e5fcdc2ef15069d967784b077" + }, + { + "redemption_id": 2988789699447429, + "ods_hash": "4b391e7727bb0b59fcf8d665d8a39a65", + "dwd_hash": "db5681c8f978b382d2f5df51ba2eba42" + }, + { + "redemption_id": 2988789757577925, + "ods_hash": "5b85de2019ddc9ddc666cc5a9edcfc02", + "dwd_hash": "492a2f81e113107cfd1599788aeafdde" + }, + { + "redemption_id": 2988790139884229, + "ods_hash": "91a438e81f71cf5e31de1f188fb2e2c8", + "dwd_hash": "23cba7173bf5309ebe18e0d396732e17" + }, + { + "redemption_id": 2988790139884230, + "ods_hash": "bad49951087696828b241a4db95eaff1", + "dwd_hash": "71f7a2b7012b350c7de3a609ebdab39c" + }, + { + "redemption_id": 2988790139884231, + "ods_hash": "845eb643f1fbe755022c59589cdf3fce", + "dwd_hash": "cbb946eb34eb8ef23f0ee8d2b6284933" + }, + { + "redemption_id": 2988790139884232, + "ods_hash": "4643c97ad15e2bbf62e43ffff2a36141", + "dwd_hash": "bc2f9fa8e577e1825b301a9bcb77eb79" + }, + { + "redemption_id": 2988790139884233, + "ods_hash": "0c6980eefe106e50169a70f9db1df819", + "dwd_hash": "eb35d633cf2f5415c9092d09fd592d8a" + }, + { + "redemption_id": 2988798437184197, + "ods_hash": "785bc7e64d04a649c725de7b6adef5a5", + "dwd_hash": "ec70511d417c622351627dc38ae4f19a" + }, + { + "redemption_id": 2988809780726405, + "ods_hash": "1004c80b9dd74c18a418d717010b50c2", + "dwd_hash": "c14096dc5a0398af52920085b9927417" + }, + { + "redemption_id": 2988809907161797, + "ods_hash": "3eb6dd3b2e67d9d2403985e3e8d973c9", + "dwd_hash": "ecbff61f6b53cb2c6f6d98cea257c4c8" + }, + { + "redemption_id": 2988847287620165, + "ods_hash": "35319b4fcf12a83e303b7986e9bd5c56", + "dwd_hash": "34e6beba987a03c15c964c6fdeaf9a18" + }, + { + "redemption_id": 2988851774655109, + "ods_hash": "230da1027149a1ec8eab63863ed6caa5", + "dwd_hash": "dedace8fd454ca094245ea0fed957961" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2827, + "ods": 2827, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 180232.0, + "ods_sum": 180232.0, + "diff": 0.0 + } + ], + "mismatch": 2827, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 2987687603409605, + "ods_hash": "a296e8bde386543ba3dc1d165d3b1b5b", + "dwd_hash": "226cd8bcdbe1cb5fa443df1c7397a555" + }, + { + "platform_coupon_redemption_id": 2987688316719813, + "ods_hash": "2093231dcb4ee7b7d92d0c766b5e823d", + "dwd_hash": "ebc40a0fbb9537122606d2c6f278b76b" + }, + { + "platform_coupon_redemption_id": 2987696907588165, + "ods_hash": "1bfd8961f52083ede6d13cd20daef845", + "dwd_hash": "048d459cf046284cea6cbb374088d95b" + }, + { + "platform_coupon_redemption_id": 2987727763376773, + "ods_hash": "803ed0dfeef0663864d4d1b95bc17d89", + "dwd_hash": "3ca1bf5b7a674a43b4b564d6c427eb1a" + }, + { + "platform_coupon_redemption_id": 2988408542300805, + "ods_hash": "84e0d5336d6561e2b1e368dd93e0e4d1", + "dwd_hash": "284b678694bd7717e85dd17cf074c940" + }, + { + "platform_coupon_redemption_id": 2988408542300806, + "ods_hash": "32ac096d140f9a3204fa9ea9515d2bb3", + "dwd_hash": "5216cbb8f74c23c84a40fea60b01383a" + }, + { + "platform_coupon_redemption_id": 2988424855784069, + "ods_hash": "4b5f356a9e3e7824d03ed84c212d58de", + "dwd_hash": "ca4bbdb3439270131df11fc42638e441" + }, + { + "platform_coupon_redemption_id": 2988426988507717, + "ods_hash": "879a5bb275b37ed21fdfc620b2a652da", + "dwd_hash": "06557ac02bee3fc621f2f84ad26ab29b" + }, + { + "platform_coupon_redemption_id": 2988436183536197, + "ods_hash": "a1682c7e87cc3e3bdc8975b7250d8c23", + "dwd_hash": "0f459de864dac588c9c3aa0da0d39b11" + }, + { + "platform_coupon_redemption_id": 2988437930691205, + "ods_hash": "eea272be7ea24cfd4ee18ac00c600d9d", + "dwd_hash": "55339f3f9b9a13942c0bcd9e3d5efd07" + }, + { + "platform_coupon_redemption_id": 2988471342516933, + "ods_hash": "c43c0f230f7ee53a37c8b7b940e9fa5f", + "dwd_hash": "dc8ab51ff1503ba1e349dd829a97e9b0" + }, + { + "platform_coupon_redemption_id": 2988486340987589, + "ods_hash": "a9d620cd094d04b1f971a26490810330", + "dwd_hash": "26881a7487fbfb15caea5f43fcac5150" + }, + { + "platform_coupon_redemption_id": 2988527644363461, + "ods_hash": "d86cb611944b231bd06929022491c383", + "dwd_hash": "693fc838ab031e86382f368cd037b6d7" + }, + { + "platform_coupon_redemption_id": 2988527644363462, + "ods_hash": "7707aa245ff6f71e7961159a791fa77a", + "dwd_hash": "086bffaa301ea97e3562cbf7b8da65ee" + }, + { + "platform_coupon_redemption_id": 2988530870192837, + "ods_hash": "5c0e4f07d7fd1815bce2642f8f19581c", + "dwd_hash": "fdd456978c040a959da0a6afcafec252" + }, + { + "platform_coupon_redemption_id": 2988557153897093, + "ods_hash": "57abadd1d0f95c15777fa7c0baa9ddc6", + "dwd_hash": "ef1ebbc75131ec33f0765bff7ae57004" + }, + { + "platform_coupon_redemption_id": 2988571835437637, + "ods_hash": "5c9fdf21c32155cbe72c76892d8bb5ef", + "dwd_hash": "bb61a290a58b9f4c68c834c05a041fed" + }, + { + "platform_coupon_redemption_id": 2988580664808005, + "ods_hash": "09b38f20730d729bda222f6973f33b6e", + "dwd_hash": "7063d184b0e832f38e687a3bafce9362" + }, + { + "platform_coupon_redemption_id": 2988599545678469, + "ods_hash": "9c9f99e77f56aa74289ababb4b3531ec", + "dwd_hash": "a02b3ab95982152b52af2a5db0d67aa1" + }, + { + "platform_coupon_redemption_id": 2988620411259589, + "ods_hash": "166ee8b8d28c551486e7cfcbf2b42313", + "dwd_hash": "9b4cec59cc1a1af9c92f4a1da2039958" + }, + { + "platform_coupon_redemption_id": 2988633043243717, + "ods_hash": "79d433b6da26397479e04d2760ecc4a9", + "dwd_hash": "b063c954245e5bf5b78502740a155644" + }, + { + "platform_coupon_redemption_id": 2988640011946693, + "ods_hash": "120b1887fd69f568c2fafea301ab9102", + "dwd_hash": "8e447250c29d23487d641ff2881f5406" + }, + { + "platform_coupon_redemption_id": 2988643064744645, + "ods_hash": "2d59c0b3b2b60682ecfc5b7e1ca8452b", + "dwd_hash": "fa8fb3d74b8298a8b1ffc7edaf8226da" + }, + { + "platform_coupon_redemption_id": 2988648461193797, + "ods_hash": "3369ad123fcadfc2a6bdfac01ed0a41c", + "dwd_hash": "09cb28d8e3e8be68ae0117750ec7f586" + }, + { + "platform_coupon_redemption_id": 2988648461193798, + "ods_hash": "96dce0d306bdef4d8b0787968f903b16", + "dwd_hash": "8e708fa971acf4cabdc57e5c5ae6d069" + }, + { + "platform_coupon_redemption_id": 2988659769002629, + "ods_hash": "ced57bf1978df20d0d1d835d6dd348bf", + "dwd_hash": "654e32ca3a8b5fd2e43b98901bb3b50b" + }, + { + "platform_coupon_redemption_id": 2988660495338181, + "ods_hash": "b332caa72dd69a3ff7522120c1127734", + "dwd_hash": "813eca355fda8d2189d14b5119f8df1c" + }, + { + "platform_coupon_redemption_id": 2988662320632389, + "ods_hash": "ee5ce93f67d70a50be663ae2833f87c9", + "dwd_hash": "f18fca0d133808946518e5b5207b702f" + }, + { + "platform_coupon_redemption_id": 2988664324805317, + "ods_hash": "c29fa3421a4bafef3288745b67ede160", + "dwd_hash": "b9a0c7006747ac935dbc04469671a63f" + }, + { + "platform_coupon_redemption_id": 2988665303732933, + "ods_hash": "d651355ab064e2f25d2d61d7a95a8dc9", + "dwd_hash": "7150828b05cf25b334ba8723fde92f6d" + }, + { + "platform_coupon_redemption_id": 2988665822382789, + "ods_hash": "382516e6e139164c9c3f767c6fb65306", + "dwd_hash": "7a2f38c20bd51f329977548e47bcd9ce" + }, + { + "platform_coupon_redemption_id": 2988667274154693, + "ods_hash": "dc3a6fced60b6b5c22e7a3ab1dfa2e2d", + "dwd_hash": "c849482caa53232e5eb812e11d94f36c" + }, + { + "platform_coupon_redemption_id": 2988675046068805, + "ods_hash": "0923ac026c86e372c25f42c60a31ea0e", + "dwd_hash": "56a1c62c726a11d4bde9ee52a4ca60bd" + }, + { + "platform_coupon_redemption_id": 2988689049195205, + "ods_hash": "8959badd50a1f3ba83a262c6b813f6c6", + "dwd_hash": "7a8c558d52bf51844f3661622a2db94a" + }, + { + "platform_coupon_redemption_id": 2988696746084997, + "ods_hash": "a54dd5fdfca61d0ecbbe1baa8c704043", + "dwd_hash": "c3b8c3967f0f0097b762a0445da2c74a" + }, + { + "platform_coupon_redemption_id": 2988702850140869, + "ods_hash": "cdd78e40f049ea4549c8df2f9da218dd", + "dwd_hash": "6a280dc0a485f2431d677c4dc5f4d15c" + }, + { + "platform_coupon_redemption_id": 2988716253121221, + "ods_hash": "57fcef13ca3f0e30d41f047d13cd62b4", + "dwd_hash": "e7c2df3fdd540098cd2e78f2296dcbef" + }, + { + "platform_coupon_redemption_id": 2988727833350853, + "ods_hash": "649b40d102f5aed611cc35fadfabb3e8", + "dwd_hash": "d6f24ab3e0d3a9a3704bf3cbebd13413" + }, + { + "platform_coupon_redemption_id": 2988728550738565, + "ods_hash": "e4930db1fb91c6e2f79325fcae94a186", + "dwd_hash": "8f1042102164812c4e975cb62ebeb916" + }, + { + "platform_coupon_redemption_id": 2988736414403269, + "ods_hash": "66ae91c0f4cee41ff2cf53a37d5a7a68", + "dwd_hash": "d1cad7e6e148f120fb263f08846fde1c" + }, + { + "platform_coupon_redemption_id": 2988748761092677, + "ods_hash": "5ade1e70c25cc01c8c4f9c06b8b9f1a9", + "dwd_hash": "e994fb7d3f9983cfded99526b7d4a0f7" + }, + { + "platform_coupon_redemption_id": 2988750660946565, + "ods_hash": "e0283ec79252db04973c5e253c8ca727", + "dwd_hash": "0b754118fbfadfc0f33ec235e1668d9d" + }, + { + "platform_coupon_redemption_id": 2988771397915333, + "ods_hash": "8ca4e481d9fff712f7c3d9e6139702e7", + "dwd_hash": "cece52e82ce6d6be3b12cb1ce5922be0" + }, + { + "platform_coupon_redemption_id": 2988787913132741, + "ods_hash": "3671de4e85406d1e5836436d1b40a727", + "dwd_hash": "a98cabcffd352e22f412515dc433c1a9" + }, + { + "platform_coupon_redemption_id": 2988789458752069, + "ods_hash": "3de827e3470a4dd6d5b0f1de8a782a9a", + "dwd_hash": "6b0fa3656ecd2c6c3db67a3688fd572d" + }, + { + "platform_coupon_redemption_id": 2988791349283461, + "ods_hash": "ac719516e97cde67ff9ef91dfd2172ee", + "dwd_hash": "b954e411c885226d331c8c20a624e894" + }, + { + "platform_coupon_redemption_id": 2988792583852613, + "ods_hash": "c74c3436cd849e3d7c76db4fced7c0ae", + "dwd_hash": "0ad9c14454b16c71b0b7390f41d6d5f3" + }, + { + "platform_coupon_redemption_id": 2988796443693765, + "ods_hash": "c8e22b5f14dc12d09b5379bebecaaafd", + "dwd_hash": "44819e3184eaf02bbceaa71b98dafce8" + }, + { + "platform_coupon_redemption_id": 2988799603477125, + "ods_hash": "7a5cf017ea3d59604a9aaafff0bbde2f", + "dwd_hash": "9e2ded0ebcb815098f7c19d012a76d86" + }, + { + "platform_coupon_redemption_id": 2988799930389061, + "ods_hash": "373e8f22c11b810a9e554e99cace9c88", + "dwd_hash": "d2ed33693c33b9440436f41ce59b64e3" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 4118, + "ods": 4118, + "diff": 0 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 472999.0, + "ods_sum": 472999.0, + "diff": 0.0 + } + ], + "mismatch": 4118, + "mismatch_samples": [ + { + "payment_id": 2987675344933445, + "ods_hash": "5cbd8977c5aa59e91b908bf16dbba0d7", + "dwd_hash": "a08c77bee97a5f7515123651ef113cf7" + }, + { + "payment_id": 2987676365081221, + "ods_hash": "ba73bf8b33b2a1ae177d843f6ffc3b13", + "dwd_hash": "bf27c8d0c4e4b88819c039e901305119" + }, + { + "payment_id": 2987676716632709, + "ods_hash": "855bf920288e5fdd077c4aa42e3a3ed2", + "dwd_hash": "735528dedcbc01e90ea4deaa20afb425" + }, + { + "payment_id": 2987683067384517, + "ods_hash": "e7ad289125d60015a1a5bfd914c8e099", + "dwd_hash": "000a26665d255245b4a88f32e18aac15" + }, + { + "payment_id": 2987688893549189, + "ods_hash": "f2e0316d16c349f5ad289cadb5d11917", + "dwd_hash": "205520dcb69e7ec85282dab2cfdf335d" + }, + { + "payment_id": 2987701979517637, + "ods_hash": "5578a5fd11eeb1b12a2b2dcf9b9daea9", + "dwd_hash": "751a36862b9d16ff83a830d1712fcccd" + }, + { + "payment_id": 2987705963776645, + "ods_hash": "e2acc7b825cb4bb956c1a056fe75ac15", + "dwd_hash": "5f090e743d76b0e305568891d21aa5c8" + }, + { + "payment_id": 2987707284392581, + "ods_hash": "0fb86c78a045b5deb699f4d50473cfec", + "dwd_hash": "b3258e273ff943615f9f06860333f636" + }, + { + "payment_id": 2987719119178437, + "ods_hash": "fd412b1e3a3b8eb577da435588f44552", + "dwd_hash": "6f8282c3dcc73035bab34a2c7ef5ee34" + }, + { + "payment_id": 2987751058934405, + "ods_hash": "d34dba6c397ad99b93423a118eaaf478", + "dwd_hash": "3271f57ad7b450003df178b93b943823" + }, + { + "payment_id": 2987751099683525, + "ods_hash": "91cc40b82536f81a067309d0f603dc80", + "dwd_hash": "d6615a82a0a13344f221329a832b0888" + }, + { + "payment_id": 2987767966599877, + "ods_hash": "c22942c5398878f523de69ceac16da2d", + "dwd_hash": "6360113ad82ea6ea4d9b52ba4109a584" + }, + { + "payment_id": 2987771051330245, + "ods_hash": "9356e41f6b37a49cc21de9ab7e84e51d", + "dwd_hash": "28a7971abca5976ae5c4efd5c30ef031" + }, + { + "payment_id": 2987777104499269, + "ods_hash": "888a1e2cc5b7c7f6b4c9be80230a27b6", + "dwd_hash": "c386de86c344eab56709dda7df29a0a2" + }, + { + "payment_id": 2987787650880069, + "ods_hash": "696e0bb0c4cf2b2127ec0df882bf8a90", + "dwd_hash": "765b6c7bb9ad97c1ab42b30f2552c059" + }, + { + "payment_id": 2987792157035205, + "ods_hash": "6dcaa7721d5625867aac413a38db91db", + "dwd_hash": "6441b832df2f92a2f828e9bb08d5a1ba" + }, + { + "payment_id": 2987806867851973, + "ods_hash": "8303763dbb0145e38ccd2d39d362cd64", + "dwd_hash": "f480c6730187f8f99ab87f3e6463e327" + }, + { + "payment_id": 2987808143823429, + "ods_hash": "862f68791c0ba25fcac51cb7f9f8c977", + "dwd_hash": "5050cbff645f1807cdab5ae22722bdd4" + }, + { + "payment_id": 2987996112079557, + "ods_hash": "ceff1bc8b4900b8bae585d6b8e633b88", + "dwd_hash": "44e5632a4be3ad0fd0abb189867a601a" + }, + { + "payment_id": 2988022517942981, + "ods_hash": "ac3d0eaf153c2821e877d4eb94dd591e", + "dwd_hash": "273b4ed907bfcced4a52c192715400a4" + }, + { + "payment_id": 2988030886955653, + "ods_hash": "746c06b0f90984fa8c67605a405e2db8", + "dwd_hash": "b462fa4f88feedd3eea299b74e9f12bf" + }, + { + "payment_id": 2988095259579077, + "ods_hash": "30f070214fac66e01971071310deb5fa", + "dwd_hash": "56dd9e81b1708e981c8c45415e5be6b8" + }, + { + "payment_id": 2988096764006981, + "ods_hash": "108e487f4adb8f990e1166fddb413265", + "dwd_hash": "982ad40b101a4d011bc570a743c429f3" + }, + { + "payment_id": 2988098787117701, + "ods_hash": "ae2d74b943c20fe430985b22a8c7e325", + "dwd_hash": "42513522e5194578ab924480adf812f3" + }, + { + "payment_id": 2988217005445829, + "ods_hash": "b76d0bdd57c54ecfa33aee93074118e5", + "dwd_hash": "bc158364bf2362a47a837457e704525a" + }, + { + "payment_id": 2988218178063045, + "ods_hash": "9e52f3093952f5a61c36559f143fbd1f", + "dwd_hash": "f05b837df341f45a76767d8c087576ec" + }, + { + "payment_id": 2988218938722949, + "ods_hash": "065fbdd1bb850ad23209134f23f2abf4", + "dwd_hash": "e0a12895b381b2153aecc6ca8df418eb" + }, + { + "payment_id": 2988371183080133, + "ods_hash": "3b9f66b1a268e6c8a7eea2b2107773cd", + "dwd_hash": "a2163d3f05bf25bab23dd38448287105" + }, + { + "payment_id": 2988382784195205, + "ods_hash": "5a2076cd6dcd5483f3e93d254bbd9de4", + "dwd_hash": "622605a40808d9918490fcd514ffa176" + }, + { + "payment_id": 2988438340276933, + "ods_hash": "716609ee5ae5cea453f6fa1c0133d68f", + "dwd_hash": "5f8eebcc90087d9d01a248481b031549" + }, + { + "payment_id": 2988485083009605, + "ods_hash": "97e16983e48949ec5d50104f76d8f40d", + "dwd_hash": "5d2347c9e9a5c2b91b5928c7d15b96e5" + }, + { + "payment_id": 2988488774322886, + "ods_hash": "a739ad469a09659bb6f40d1f04f6433c", + "dwd_hash": "58151c1e8b40238799d9fe2386ea114e" + }, + { + "payment_id": 2988527710489221, + "ods_hash": "4fbb59c0768c6de976ba03a6a489b82c", + "dwd_hash": "a38bee00c16f4dbc8eab06e5fae1f635" + }, + { + "payment_id": 2988537075913413, + "ods_hash": "124c24cdd956ee2ab0f6be0521f013ac", + "dwd_hash": "ee8aeed2153a631bd8d549dc5ee9725d" + }, + { + "payment_id": 2988552499333829, + "ods_hash": "43c13b31892739c2da68c369b842fbc8", + "dwd_hash": "503f455f872743989a1abbc582b1071c" + }, + { + "payment_id": 2988574310648517, + "ods_hash": "60345406198247b9247aaca451906f64", + "dwd_hash": "613e8861c81431df4e2d2a9afa57126b" + }, + { + "payment_id": 2988620328667781, + "ods_hash": "cbeca5c834a5d1b748907a33d226f2ba", + "dwd_hash": "bf486270c686851fc58849343b2d7f7d" + }, + { + "payment_id": 2988633116627525, + "ods_hash": "e675df465ab54d52cef3427001d76abc", + "dwd_hash": "b9c1a43a9a1d9860cc3c211bb5f95449" + }, + { + "payment_id": 2988634532074181, + "ods_hash": "9866e73ce3c055f13315fb99c292625f", + "dwd_hash": "49457721da148bda77f4bb071b3a4bbc" + }, + { + "payment_id": 2988652283744965, + "ods_hash": "f15acc1a94b1a608462604c3de3e4f58", + "dwd_hash": "8c0c0a3116f7eb9226ea8e3dcb5ecb13" + }, + { + "payment_id": 2988665988567749, + "ods_hash": "9411bc13f0dc7e72820b67e46e52b43e", + "dwd_hash": "3ca700b1aa3c681fc7edc949aaae09c9" + }, + { + "payment_id": 2988673824559813, + "ods_hash": "e6ac111ad73269e7f0a83469027942ef", + "dwd_hash": "ead63b0f24715492a8875c4a4cf876d8" + }, + { + "payment_id": 2988674489356997, + "ods_hash": "4a53230645cc54d971e37245db14a672", + "dwd_hash": "c63f1c140175230328826bd961768a7b" + }, + { + "payment_id": 2988679469107909, + "ods_hash": "3ae7b305ab1895340cbd141e4aeb506c", + "dwd_hash": "6d8ce9e52846fd362ab7d87ab94be1fd" + }, + { + "payment_id": 2988687421821509, + "ods_hash": "039aa0bcc429c18ab3e9deab0407895e", + "dwd_hash": "dfeb43bcb0431458b367954c7ab322c2" + }, + { + "payment_id": 2988703116561093, + "ods_hash": "75110e48574205ece4b9decca1f7645b", + "dwd_hash": "34bee8693ed99c8abf5a8ea36e7c6545" + }, + { + "payment_id": 2988724581419717, + "ods_hash": "f4954e1b73bad55e36851067c77965c1", + "dwd_hash": "3ed29bb1d6802951b2e425074e539826" + }, + { + "payment_id": 2988729546560069, + "ods_hash": "08a928a5a0dbaeefcae78b30f809584f", + "dwd_hash": "5c5732ea92b9fa956ce7f903350d4982" + }, + { + "payment_id": 2988737622053445, + "ods_hash": "3e7f4a1000f238bcf01f9f69264e11e1", + "dwd_hash": "6b9d87e663ff534bb14676605bdea171" + }, + { + "payment_id": 2988748326130245, + "ods_hash": "49f047bfd2416aad23e9974240d57b47", + "dwd_hash": "d10255c779a8dae613b4779ed31810ef" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 13, + "ods": 13, + "diff": 0 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -4314.0, + "ods_sum": -4314.0, + "diff": 0.0 + } + ], + "mismatch": 13, + "mismatch_samples": [ + { + "refund_id": 3024406909667269, + "ods_hash": "dad00ecd2e5b0de9920448eac907007f", + "dwd_hash": "5e31d9bf021b87ae6e3d75115197dd25" + }, + { + "refund_id": 2990528572459717, + "ods_hash": "674b651c45dd0798a2ece44fe2facfae", + "dwd_hash": "209cbcefcb78def5fde155f4932aba08" + }, + { + "refund_id": 3001691705527301, + "ods_hash": "d30fb839fdc071e7a0e35c24326b43a1", + "dwd_hash": "caa522e93358e5baae415a83c550dd9c" + }, + { + "refund_id": 3004097305612997, + "ods_hash": "3059c2c67a6081a38a5068ad82452d40", + "dwd_hash": "f47aefe5a772a0f6d52b530b36d72a1c" + }, + { + "refund_id": 3005642933373061, + "ods_hash": "d3cc8939f7caa83edb15c63a912b254b", + "dwd_hash": "d165568ca033ae96bad16ed66bb70690" + }, + { + "refund_id": 3005643327473733, + "ods_hash": "398649976dfa644102a7caf7774a15b7", + "dwd_hash": "d30165a1dd6b14cc8d7295ff7e1d3b6d" + }, + { + "refund_id": 3010370511047109, + "ods_hash": "1bd69201561f74c331682d9b7a128507", + "dwd_hash": "01c949c8ddce47554e707614b9ab39af" + }, + { + "refund_id": 3010370563410373, + "ods_hash": "757c8cdfc7e0a4eecdc33245d9a03024", + "dwd_hash": "4ba48ebba5b966a05cb0b9763373b2ef" + }, + { + "refund_id": 3013145400266309, + "ods_hash": "42e6848cb37167dba629604b3fdfbf19", + "dwd_hash": "a7f377754beec90e4bc0346543057baa" + }, + { + "refund_id": 3014427097501573, + "ods_hash": "fc33238554b18e206f912c2a90c766a2", + "dwd_hash": "20ea319f11a3f39d97beb4cd58fd1659" + }, + { + "refund_id": 3015985360946757, + "ods_hash": "fdfd79498bcd0d8ae752d268097fed2c", + "dwd_hash": "01f20e495e6436431e24bf51be633513" + }, + { + "refund_id": 3022926062438405, + "ods_hash": "1160696165785dc947209275e271fb20", + "dwd_hash": "c0ca896c20b3a204916e76845ab9d1bc" + }, + { + "refund_id": 3023410603902917, + "ods_hash": "6b277f9f2154f52b90c0292fe1035789", + "dwd_hash": "b8540bf598ac04e552c93367ca0b2df5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23762, + "total_mismatch": 53145 + }, + "generated_at": "2026-01-31T23:55:17.495210+08:00" + }, + { + "mode": "window", + "window": { + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "label": "segment_8", + "granularity": "window" + }, + "api_to_ods": { + "window_split_unit": "none", + "window_compensation_hours": 0, + "start": "2026-01-01T00:00:00+08:00", + "end": "2026-01-30T03:00:00+08:00", + "cutoff": null, + "window_days": 29, + "window_hours": 0, + "page_size": 200, + "chunk_size": 500, + "sample_limit": 50, + "compare_content": true, + "content_sample_limit": 50, + "store_id": 2790685415443269, + "base_url": "https://pc.ficoo.vip/apiprod/admin/v1/", + "results": [ + { + "task_code": "ODS_ASSISTANT_ACCOUNT", + "table": "billiards_ods.assistant_accounts_master", + "endpoint": "/PersonnelManagement/SearchAssistantInfo", + "pk_columns": [ + "id" + ], + "records": 138, + "records_with_pk": 138, + "missing": 0, + "missing_samples": [], + "mismatch": 8, + "mismatch_samples": [ + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + }, + { + "id": 2793486361710725, + "content_hash": "db014f103b1e430631a4f5b3af75621eb521f013fe45f49a6592fbc72a48662f" + }, + { + "id": 2964673443302213, + "content_hash": "4b3d3cbd1bdf4f9aade1ccf07fdb99e38348fb749f1c8a6af8c80a0736bc383b" + }, + { + "id": 2861304461364293, + "content_hash": "135f2c9b0ea8f3e4cf942eba0b6b92f51bb74eb13a33053616d263b92bd21f38" + }, + { + "id": 2793363001774149, + "content_hash": "40460080b30beb04cb2d314f55cca3a51881485c8c3edc190d0fe2b30f7970a1" + }, + { + "id": 2793486361710725, + "content_hash": "db014f103b1e430631a4f5b3af75621eb521f013fe45f49a6592fbc72a48662f" + } + ], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_RECORDS", + "table": "billiards_ods.settlement_records", + "endpoint": "/Site/GetAllOrderSettleList", + "pk_columns": [ + "id" + ], + "records": 3355, + "records_with_pk": 3355, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 18, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_USE", + "table": "billiards_ods.table_fee_transactions", + "endpoint": "/Site/GetSiteTableOrderDetails", + "pk_columns": [ + "id" + ], + "records": 10207, + "records_with_pk": 10207, + "missing": 11, + "missing_samples": [ + { + "id": 3075435536303749 + }, + { + "id": 3075420149368197 + }, + { + "id": 3075415888266693 + }, + { + "id": 3075408241706629 + }, + { + "id": 3075408241673861 + }, + { + "id": 3075403456005573 + }, + { + "id": 3075399179027845 + }, + { + "id": 3075397862278789 + }, + { + "id": 3075381134902725 + }, + { + "id": 3075359771559494 + }, + { + "id": 3075358077617605 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 52, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_LEDGER", + "table": "billiards_ods.assistant_service_records", + "endpoint": "/AssistantPerformance/GetOrderAssistantDetails", + "pk_columns": [ + "id" + ], + "records": 781, + "records_with_pk": 781, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_ASSISTANT_ABOLISH", + "table": "billiards_ods.assistant_cancellation_records", + "endpoint": "/AssistantPerformance/GetAbolitionAssistant", + "pk_columns": [ + "id" + ], + "records": 37, + "records_with_pk": 37, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS_SALES", + "table": "billiards_ods.store_goods_sales_records", + "endpoint": "/TenantGoods/GetGoodsSalesList", + "pk_columns": [ + "id" + ], + "records": 0, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PAYMENT", + "table": "billiards_ods.payment_transactions", + "endpoint": "/PayLog/GetPayLogListPage", + "pk_columns": [ + "id" + ], + "records": 12036, + "records_with_pk": 12036, + "missing": 13, + "missing_samples": [ + { + "id": 3075435534190213 + }, + { + "id": 3075426305131973 + }, + { + "id": 3075420146779525 + }, + { + "id": 3075415886054853 + }, + { + "id": 3075408235251333 + }, + { + "id": 3075403453662661 + }, + { + "id": 3075399176193413 + }, + { + "id": 3075397860001413 + }, + { + "id": 3075390030022277 + }, + { + "id": 3075381132150213 + }, + { + "id": 3075374340359813 + }, + { + "id": 3075359769151045 + }, + { + "id": 3075358075340229 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 61, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_REFUND", + "table": "billiards_ods.refund_transactions", + "endpoint": "/Order/GetRefundPayLogList", + "pk_columns": [ + "id" + ], + "records": 40, + "records_with_pk": 40, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_PLATFORM_COUPON", + "table": "billiards_ods.platform_coupon_redemption_records", + "endpoint": "/Promotion/GetOfflineCouponConsumePageList", + "pk_columns": [ + "id" + ], + "records": 17374, + "records_with_pk": 17374, + "missing": 4, + "missing_samples": [ + { + "id": 3075436084250053 + }, + { + "id": 3075423568774789 + }, + { + "id": 3075409910990469 + }, + { + "id": 3075359489345157 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 87, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER", + "table": "billiards_ods.member_profiles", + "endpoint": "/MemberProfile/GetTenantMemberList", + "pk_columns": [ + "id" + ], + "records": 556, + "records_with_pk": 556, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799207363643141, + "content_hash": "81c894c70a6e7fe2214180d9cf6e1656cb38d47606f92a3db41935acf2eaede4" + } + ], + "pages": 3, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_CARD", + "table": "billiards_ods.member_stored_value_cards", + "endpoint": "/MemberProfile/GetTenantMemberCardList", + "pk_columns": [ + "id" + ], + "records": 945, + "records_with_pk": 945, + "missing": 0, + "missing_samples": [], + "mismatch": 1, + "mismatch_samples": [ + { + "id": 2799216572794629, + "content_hash": "c24728e84c5b454c113134cff86faf24af9b8ee7ccf9ef363500a17379a71ba6" + } + ], + "pages": 5, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_MEMBER_BALANCE", + "table": "billiards_ods.member_balance_changes", + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "pk_columns": [ + "id" + ], + "records": 2513, + "records_with_pk": 2513, + "missing": 1, + "missing_samples": [ + { + "id": 3075374340998789 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 13, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_RECHARGE_SETTLE", + "table": "billiards_ods.recharge_settlements", + "endpoint": "/Site/GetRechargeSettleList", + "pk_columns": [ + "id" + ], + "records": 71, + "records_with_pk": 71, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 2, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_PACKAGE", + "table": "billiards_ods.group_buy_packages", + "endpoint": "/PackageCoupon/QueryPackageCouponList", + "pk_columns": [ + "id" + ], + "records": 18, + "records_with_pk": 18, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GROUP_BUY_REDEMPTION", + "table": "billiards_ods.group_buy_redemption_records", + "endpoint": "/Site/GetSiteTableUseDetails", + "pk_columns": [ + "id" + ], + "records": 8322, + "records_with_pk": 8322, + "missing": 6, + "missing_samples": [ + { + "id": 3075420149908869 + }, + { + "id": 3075403456595397 + }, + { + "id": 3075397862852229 + }, + { + "id": 3075381136623045 + }, + { + "id": 3075359772395077 + }, + { + "id": 3075358078223813 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 42, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_STOCK", + "table": "billiards_ods.goods_stock_summary", + "endpoint": "/TenantGoods/GetGoodsStockReport", + "pk_columns": [ + "sitegoodsid" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 12, + "mismatch_samples": [ + { + "sitegoodsid": 3073782716778501, + "content_hash": "7605e97ecfa1fda63ec4dae916a38b9ec22f7a8dea76bf2f1fbd007c90e92acc" + }, + { + "sitegoodsid": 2793026434863237, + "content_hash": "c846ef7f6dbadb8671d264350c4510de361435e1fc32c6f3dc41bfa7cc351e1f" + }, + { + "sitegoodsid": 2793026188415045, + "content_hash": "0b27c37562f8d8d056e5c68d01dc5f06d74356c5657d9ae2787176951fb253a8" + }, + { + "sitegoodsid": 2793026187563077, + "content_hash": "38dce962cdd022612cc7aa7b0e01682fb1ff7fda177a5c15a2a113c304a8d438" + }, + { + "sitegoodsid": 2793026186563653, + "content_hash": "a2a9b2769dfb6f7ef067e45b08f60086c018a2ce3de62543968d848b65dd6751" + }, + { + "sitegoodsid": 2793026180993093, + "content_hash": "e718fc90693c14b34dc4a812808d54519cc6385e6112ea605a9027cdd00a7f9b" + }, + { + "sitegoodsid": 2793026180501573, + "content_hash": "ac1ce737fb9fff85a07a38bc1c246afb417bea26315968fb609d041f52dedf75" + }, + { + "sitegoodsid": 2793026176012357, + "content_hash": "fbf05e94b04b51b4a9c9a372c0849d6a7b1f2578aef9eedcc179d42a9cc721d0" + }, + { + "sitegoodsid": 2793026174865477, + "content_hash": "3c03ce4e1fb7534a085424e6b3247b4341dda56d6f03a627f212b06cebd6a7e3" + }, + { + "sitegoodsid": 2793025846464581, + "content_hash": "42186140b0b0a9d49fab43811db955900ec10702545181ccf85c146667f35d37" + }, + { + "sitegoodsid": 2793025844727877, + "content_hash": "ca5dfc011c68c0d4f3151c9e032bfbba0a86bf63f816438dcd053658f8a48cef" + }, + { + "sitegoodsid": 2791953867886725, + "content_hash": "1ac87bee12c19ecd5b39d4ca4b0dc049e6d25167d31aca347e8a2c97333b3e6c" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_INVENTORY_CHANGE", + "table": "billiards_ods.goods_stock_movements", + "endpoint": "/GoodsStockManage/QueryGoodsOutboundReceipt", + "pk_columns": [ + "sitegoodsstockid" + ], + "records": 5176, + "records_with_pk": 5176, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 27, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLES", + "table": "billiards_ods.site_tables_master", + "endpoint": "/Table/GetSiteTables", + "pk_columns": [ + "id" + ], + "records": 74, + "records_with_pk": 74, + "missing": 0, + "missing_samples": [], + "mismatch": 15, + "mismatch_samples": [ + { + "id": 2791964216463493, + "content_hash": "344c1d548000ce2e94bd9a024d6134b05cb23409a014ec74a1f64049700ab1c2" + }, + { + "id": 2793001695301765, + "content_hash": "039bd517ab858d9c60edcf816d13729290159a5c8aceda884fa7f44fccf283f0" + }, + { + "id": 2793002509209733, + "content_hash": "f7731ae70c2594663305a4bbe70fea0a93193446d1584fb2d0d8dfe04fa16415" + }, + { + "id": 2793003420504133, + "content_hash": "272c4e85b6b3de6ccd2c41b06554f9bc3bfe2e8ebfe601850385fa4d1468d674" + }, + { + "id": 2793003506815045, + "content_hash": "32aab43fb1fc251cbc40da52b0227762c48b2b22793a925c2c9aafa78b2d7a01" + }, + { + "id": 2793010820304965, + "content_hash": "b66d93bad529a5b4557fbe516c8fcb4d4813447a5f3fe26fd0aab857521838d3" + }, + { + "id": 2793012902121605, + "content_hash": "34cf720b7abbe583ca4967c4b59ce7890c2a242c2eade86dba304d877753f3ce" + }, + { + "id": 2793012902236293, + "content_hash": "c8382f8cd7220525ac70a47528abfebeaef0fc7f72b3d5277e35af0ba5853995" + }, + { + "id": 2793016660660357, + "content_hash": "4f62704d8b471a204de94db3b50d68a64e8e7352a9fd9c074e238be469148d53" + }, + { + "id": 2793018776735877, + "content_hash": "72d73bbd2707540a1debc44fb27a2d89a47a50804d39b9f36395896b74a4aa6e" + }, + { + "id": 2793020259946565, + "content_hash": "2cf121658c540dcc5ef55522b5239845b02dfdad1fe416844fdf5ad8a28d40c6" + }, + { + "id": 2793020259995717, + "content_hash": "32d11329df24f3ed8d1d280460f63d646d18c8d48d458f3ebdfde2435316a42e" + }, + { + "id": 2793020260044869, + "content_hash": "d6c9560ebdbf234cfe56f019f2d98a0db62e86de464248aec52d75906782501c" + }, + { + "id": 2793023960633413, + "content_hash": "a414b7508af55d20e7892d9cce9bd526be07775e657bc6bfaf715b1c4eb081b6" + }, + { + "id": 2793022145302597, + "content_hash": "2c317037ae733a3a480c799ee0479574259101a7d519650f8bf444206055b8b4" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_GOODS_CATEGORY", + "table": "billiards_ods.stock_goods_category_tree", + "endpoint": "/TenantGoodsCategory/QueryPrimarySecondaryCategory", + "pk_columns": [ + "id" + ], + "records": 9, + "records_with_pk": 9, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_STORE_GOODS", + "table": "billiards_ods.store_goods_master", + "endpoint": "/TenantGoods/GetGoodsInventoryList", + "pk_columns": [ + "id" + ], + "records": 172, + "records_with_pk": 172, + "missing": 0, + "missing_samples": [], + "mismatch": 14, + "mismatch_samples": [ + { + "id": 2793025844727877, + "content_hash": "15f075c3f81939020b0a8125a246c42d3f353a9f96166debd5d8ee1d5b9e597e" + }, + { + "id": 2793025849102405, + "content_hash": "f59664809c264c0b616dcca616cfdf68e3496661b4a35f3eaef96f40e4433f5e" + }, + { + "id": 2793025846464581, + "content_hash": "e1591c226de7d05363032c9d72fed9014546c5c9758ff7f1d220e608f0eb344f" + }, + { + "id": 2793026187563077, + "content_hash": "47f90591ccda925d559f6ca20e1d43e64e1805f9dbcea45b935605b5772bc01a" + }, + { + "id": 2793026188415045, + "content_hash": "828c70eed315b976cc2407e09f50b735b04c326a69ca748c8a1831b1f5cc46c5" + }, + { + "id": 2793026434863237, + "content_hash": "6dd9d3fd118a41b865a08b3ac385baed787b7ec2a3adb94c5b128d997e75d09c" + }, + { + "id": 3073782716778501, + "content_hash": "562411ba7a76b35c83168a5a52a1c84477dc7858ae4ef073ef9470b0b340a920" + }, + { + "id": 2793026186563653, + "content_hash": "a23b69ce8462ed244fa777f6eac505cda0300f1752687118f1f4c479b02b8f30" + }, + { + "id": 2791953867886725, + "content_hash": "56e2799d5f61cadccf028063e6b32bc8515bee7339689d5fa97dd38ef97a2dad" + }, + { + "id": 2793026174865477, + "content_hash": "46687b235636aba278961c34ddc23bbed4252abc080bb82bd69d123bb390c78c" + }, + { + "id": 2793026176012357, + "content_hash": "b7d52e900389135e85f15c4a93f4ba4ea580e5346eaf38592b4b2c825d5e256e" + }, + { + "id": 2793026180501573, + "content_hash": "286c53279f8817c1250d0b0d83bc6031f925cc5ba398fe15f40c71ad794ff27a" + }, + { + "id": 2793026180993093, + "content_hash": "e8d266d76241c61b3c281c37a8a6ca3a7b3a7f3b6737d0f167e770763e57bf86" + }, + { + "id": 2793026183532613, + "content_hash": "ae1c41596551b61ce1761d367f4e2538712c78d954773ba4a3e33449bc293162" + } + ], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TABLE_FEE_DISCOUNT", + "table": "billiards_ods.table_fee_discount_records", + "endpoint": "/Site/GetTaiFeeAdjustList", + "pk_columns": [ + "id" + ], + "records": 1788, + "records_with_pk": 1788, + "missing": 1, + "missing_samples": [ + { + "id": 3075437388203397 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "pages": 9, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_TENANT_GOODS", + "table": "billiards_ods.tenant_goods_master", + "endpoint": "/TenantGoods/QueryTenantGoods", + "pk_columns": [ + "id" + ], + "records": 173, + "records_with_pk": 173, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 1, + "skipped_missing_pk": 0, + "errors": 0, + "error_detail": null, + "compare_content": true, + "content_hash_supported": true + }, + { + "task_code": "ODS_SETTLEMENT_TICKET", + "table": "billiards_ods.settlement_ticket_details", + "endpoint": "/Order/GetOrderSettleTicketNew", + "pk_columns": [ + "ordersettleid" + ], + "records": 3460, + "records_with_pk": 0, + "missing": 0, + "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], + "pages": 19, + "skipped_missing_pk": 3460, + "errors": 0, + "error_detail": null, + "source_endpoint": "/PayLog/GetPayLogListPage" + } + ], + "total_missing": 36, + "total_mismatch": 51, + "total_errors": 0, + "generated_at": "2026-01-31T23:59:10.929812+08:00" + }, + "ods_to_dwd": { + "tables": [ + { + "dwd_table": "billiards_dwd.dim_site", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 1, + "ods": 18951, + "diff": -18950 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_site_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 2997, + "diff": -2997 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_table_ex", + "ods_table": "billiards_ods.site_tables_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 74, + "ods": 74, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 69, + "ods": 69, + "diff": 0 + }, + "amounts": [], + "mismatch": 69, + "mismatch_samples": [ + { + "assistant_id": 2793361915547781, + "ods_hash": "5c302727440ded26a2de5c150cc8755e", + "dwd_hash": "1f39ea835f82b35fe46b54d8abad1e32" + }, + { + "assistant_id": 2793363001774149, + "ods_hash": "7e6dd39626f953459f1340353e980789", + "dwd_hash": "5cfbb67c74756724e12a1138b4daefaf" + }, + { + "assistant_id": 2793399247179845, + "ods_hash": "28a6f80d94b35b7d0d10accad9a24070", + "dwd_hash": "e4cb6dce1ad4f402f8e6a25a97bc3f3f" + }, + { + "assistant_id": 2793405307342917, + "ods_hash": "a59f29e8c9f2e27010779b15188e4c34", + "dwd_hash": "ef6a9378856e1a987245c9d276f62baa" + }, + { + "assistant_id": 2793483330310277, + "ods_hash": "22ce4607fdade4c2f5dabf9640330d2b", + "dwd_hash": "878e34457a90d3fe31c2e8857920c0f4" + }, + { + "assistant_id": 2793486361710725, + "ods_hash": "7d6da6a132bd0ef4875411aa73e169e0", + "dwd_hash": "46771ee14eb0f8fb963a239af477a27c" + }, + { + "assistant_id": 2793489356673157, + "ods_hash": "effe5320db4e88983fffb2d99d53a869", + "dwd_hash": "99c7223bc77a611115e0463a65b23fa5" + }, + { + "assistant_id": 2793493699088517, + "ods_hash": "9d6ec799b265a92c05433610389e4f9b", + "dwd_hash": "aff94d5090ceddd70c49b58af5ff8832" + }, + { + "assistant_id": 2793500999454853, + "ods_hash": "5cd6afb8d2ac80f81fb493a36bc49e3f", + "dwd_hash": "51c04508c55ace4af09a5bd11921acfe" + }, + { + "assistant_id": 2793510666670149, + "ods_hash": "092a43ae9113baa65b4d896cdd8c8859", + "dwd_hash": "40be9aba0ee8054280e698c1aad8c296" + }, + { + "assistant_id": 2793526116896837, + "ods_hash": "1b8de968fcd76c4de760a4f9a81bba5d", + "dwd_hash": "a694385bc00cf16ed52b95d5586e61cb" + }, + { + "assistant_id": 2793528386048069, + "ods_hash": "37629dadea6113295a52ea063820299f", + "dwd_hash": "4e1293a1ec5e2452582d61c1f917083f" + }, + { + "assistant_id": 2793530479530053, + "ods_hash": "8831694c57394ceaf4aeafea784cf4b8", + "dwd_hash": "6612c6a1a8f1f5092a0515f8b52d8e32" + }, + { + "assistant_id": 2793532503855173, + "ods_hash": "23fa5b04b22e82d9a25ca9c8ec24714f", + "dwd_hash": "1268af1c1701e66cf9cbef4691920f3d" + }, + { + "assistant_id": 2793537168429125, + "ods_hash": "b9c78d8deb8f39b88d9597fe8c14ad2f", + "dwd_hash": "20a7aad6397cf06d16dbfe025c18cdac" + }, + { + "assistant_id": 2793604629450885, + "ods_hash": "331ba0cd8b750748a8b2078a4e98bb99", + "dwd_hash": "36f5cbe91eb7e3b1092ad9cd9461cdcb" + }, + { + "assistant_id": 2795061580517445, + "ods_hash": "e3ef3b54f568c379d9b2a4ebf916a030", + "dwd_hash": "8dbbd1f0022bd367f3491bc3220833ce" + }, + { + "assistant_id": 2799129430166597, + "ods_hash": "9a606e08948f45653900127b0d343521", + "dwd_hash": "e4b1fe7fa1b2174712d8d38c293a8271" + }, + { + "assistant_id": 2799135415192645, + "ods_hash": "3cf5a2cb5452534977c31d5a4c67e281", + "dwd_hash": "b325087f437bf6d21452e671331d9251" + }, + { + "assistant_id": 2800501459422085, + "ods_hash": "3b124aab8fb661d414fccc44267280c2", + "dwd_hash": "2321e2249da6701cd77a94af01c49722" + }, + { + "assistant_id": 2806132026100805, + "ods_hash": "ab53be44fd04fa2387fbf879b2b953f3", + "dwd_hash": "65803bd3dabaf5a88413d82961e7ec71" + }, + { + "assistant_id": 2807673321458757, + "ods_hash": "417a62f37b6f8a2644168741594f9b2a", + "dwd_hash": "636fed91f00255e082546d54e0092769" + }, + { + "assistant_id": 2808873057863749, + "ods_hash": "a8c185c9e30a2557925303454c4e40d8", + "dwd_hash": "b142f3abd44d3783602bcc302dde5c76" + }, + { + "assistant_id": 2815977780611909, + "ods_hash": "694213a255dfc91a568fe33bd26ed386", + "dwd_hash": "efecd21f9aaeb0510c4f2ee5b0f0a7d5" + }, + { + "assistant_id": 2815988587039749, + "ods_hash": "d9a887971b1baf2d76180fbb6eeeb968", + "dwd_hash": "b871b145f5a43c920c7980c53f7019c4" + }, + { + "assistant_id": 2834411250190470, + "ods_hash": "4c8fc9124bd1720ee0e635e91b03a1c5", + "dwd_hash": "6b784f97a5be674b54465f4b10e4c1a4" + }, + { + "assistant_id": 2840060593686213, + "ods_hash": "c0b53d374fd5877e96e0d4f39385196a", + "dwd_hash": "e7883dfb8e20a6f31f9f2988be601668" + }, + { + "assistant_id": 2840752795895493, + "ods_hash": "2ba1ddcb410f8ab07079a450987cc8a8", + "dwd_hash": "5722af676192fcab9f2579d3d49d250a" + }, + { + "assistant_id": 2841614135707141, + "ods_hash": "77b38aa6856634ce28a9958f5fc629ba", + "dwd_hash": "48d19c83f979deaecd7db81f383227d6" + }, + { + "assistant_id": 2851377027190277, + "ods_hash": "5b422ea52752d3fd6a4e2fbf5b28022d", + "dwd_hash": "85f68b929c4e191949236f2d99c96a2c" + }, + { + "assistant_id": 2859776051579717, + "ods_hash": "6d501f18b24e10689944b9571fa89faf", + "dwd_hash": "c8e49420444596baf311a6e41f2d0e4d" + }, + { + "assistant_id": 2859778261961541, + "ods_hash": "fe0bde9a593eecb27c30c1cb22eb3528", + "dwd_hash": "4cff61d22071f0f1e2c1490a35409449" + }, + { + "assistant_id": 2859802158598981, + "ods_hash": "f5ce6538853056ce811de41ae18afc9a", + "dwd_hash": "bef7eb0edf23cd9bb8e2ea21a7b43370" + }, + { + "assistant_id": 2859886363986821, + "ods_hash": "51c3b0c7be0acf5d2e6680a6aee0dd84", + "dwd_hash": "61cf43bfb44ff0f9e0654828d6254fb9" + }, + { + "assistant_id": 2861303933570181, + "ods_hash": "1736877ede262e22d071f6b85c3e105f", + "dwd_hash": "cca5ac84d2e3aba3524207f31e76c6a3" + }, + { + "assistant_id": 2861304461364293, + "ods_hash": "053c8955e7bc522f3fbf858fcb3c9adf", + "dwd_hash": "f12c3c809749a88790df3af93583d92b" + }, + { + "assistant_id": 2862632135689606, + "ods_hash": "920ac07c373ca0b0a9694982a6192484", + "dwd_hash": "d7e3cb9d102c0334222daf466a6103f6" + }, + { + "assistant_id": 2866961022749829, + "ods_hash": "1ec6e8b801a1729cbc98019faab3b05b", + "dwd_hash": "36d84fe114014da5529fad55e93d29ea" + }, + { + "assistant_id": 2866962315594885, + "ods_hash": "338b3292ea9fe1657d2a88a885ce4aa8", + "dwd_hash": "9f1451483dff68780def3977cc3dda34" + }, + { + "assistant_id": 2866964303400005, + "ods_hash": "0b8f7f2481c59e12c069b06d75354d8b", + "dwd_hash": "04b3015a92957bb092d09965ea7740a3" + }, + { + "assistant_id": 2889708249270149, + "ods_hash": "1ce7281bf6d351137596fd9ce6cdb2b2", + "dwd_hash": "0f6246df879c9ffae45e50920ae0ad2d" + }, + { + "assistant_id": 2907961535433285, + "ods_hash": "24dc2043187ae584b80a09490afb447d", + "dwd_hash": "85d62fdc4d7ac44e8bd98e0430dc4c00" + }, + { + "assistant_id": 2907972756342981, + "ods_hash": "1b1930f9b45b94559e1867ee8a6e7aca", + "dwd_hash": "afd886b857619537412bb5a8a5ccfc95" + }, + { + "assistant_id": 2920786464294661, + "ods_hash": "9b5a067b99fefef3b152162936cf4f11", + "dwd_hash": "a9c7ebfe758ef0ab8abf49d0de882244" + }, + { + "assistant_id": 2920799537645381, + "ods_hash": "538f318f7813907ae1a33294e2487992", + "dwd_hash": "73b58837794adbfc48e0ba41cf554a39" + }, + { + "assistant_id": 2929246850797189, + "ods_hash": "a8b3a8679af796a2a15adba5784e300b", + "dwd_hash": "a7714b7b588e7d39104e43dfc9deb29f" + }, + { + "assistant_id": 2946261384596293, + "ods_hash": "9296d50103cf8aad5c32ca349ea12d26", + "dwd_hash": "d34d0c6e77656627c9dc7597db5849f8" + }, + { + "assistant_id": 2946266869435205, + "ods_hash": "55a51a3258f7cc7a8654b9bcf9845791", + "dwd_hash": "5f78fc19dc1776eca0b494d6cb44cc9d" + }, + { + "assistant_id": 2947561795997125, + "ods_hash": "e3a8621babda162aa77455dab4795d23", + "dwd_hash": "fb496954221faf8d71d8f12886f5954a" + }, + { + "assistant_id": 2947562271297029, + "ods_hash": "03faf924a235ba7918de3fc3e916d719", + "dwd_hash": "3b7492e9fe4faf9df1a3df96a501fac0" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_assistant_ex", + "ods_table": "billiards_ods.assistant_accounts_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 6, + "ods": 6, + "diff": 0 + }, + "amounts": [], + "mismatch": 6, + "mismatch_samples": [ + { + "assistant_id": 3045477940824517, + "ods_hash": "12db3d8a937f68d42228ffa5f308e627", + "dwd_hash": "465301b404d91109743ab2a40e9abee2" + }, + { + "assistant_id": 3053833422211141, + "ods_hash": "8f86bbc3e43dfadc7ad6afd3552459f3", + "dwd_hash": "94b78a860329329dae1cb28936dca229" + }, + { + "assistant_id": 3053834039789701, + "ods_hash": "e3663406908d91dc73f83e0a993cc65b", + "dwd_hash": "6983f70d4aab97e6510cde567ae55518" + }, + { + "assistant_id": 3056644876634181, + "ods_hash": "4b04339a37ad45a991d44a84854a9fd9", + "dwd_hash": "1b8d02bec5c6d7d47f9353724cc15464" + }, + { + "assistant_id": 3058170108874053, + "ods_hash": "59286932fc66399f2df1962a853b2cc4", + "dwd_hash": "e897702ad04f87f26969f662617f700b" + }, + { + "assistant_id": 3067857612671685, + "ods_hash": "1b3aec404cd574f9d90f574206d513e8", + "dwd_hash": "09126c1a2272b43b24ecf1335381709d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member", + "ods_table": "billiards_ods.member_profiles", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 10, + "ods": 10, + "diff": 0 + }, + "amounts": [], + "mismatch": 10, + "mismatch_samples": [ + { + "member_id": 3032780662360965, + "ods_hash": "b600f9af1a380a9d89b06a3fe938cc7c", + "dwd_hash": "c240bcc0ce9781131f993bf3f8350476" + }, + { + "member_id": 3034509269552197, + "ods_hash": "aea2bd32a678926b8548843a12fbb79e", + "dwd_hash": "ae76674899e900cb9898a816de9423ee" + }, + { + "member_id": 3037269565082949, + "ods_hash": "ce0651c217e846352343dabe056a5b5c", + "dwd_hash": "ac14310cfb38427eafa7cee385c892c5" + }, + { + "member_id": 3043883848157381, + "ods_hash": "59f5399e89619f9bef84c4d822875e2b", + "dwd_hash": "2e2bfebf9445c94054d237b647b5ed24" + }, + { + "member_id": 3048238811858693, + "ods_hash": "e4b5578e7c6ee2ef032517b34408039c", + "dwd_hash": "c954b6c3e5796dcd2ef889128ce99ae0" + }, + { + "member_id": 3052749341853317, + "ods_hash": "cafe61c0e3683e460ec30bd3c52510a0", + "dwd_hash": "cdc2943f4870f9c5c0bf9ff3ec444111" + }, + { + "member_id": 3054195561631109, + "ods_hash": "0e4513465f760267d5bdef51ed349dc8", + "dwd_hash": "99f3ea78ed96ea8e06bee69bcbfdb161" + }, + { + "member_id": 3055176918828421, + "ods_hash": "bad6c71354cdd4162018a12be1a36576", + "dwd_hash": "6d458ea9679f98b78a575faf77bb3702" + }, + { + "member_id": 3062388521698821, + "ods_hash": "e3d06b5e55ef8302539f323e5b2a3184", + "dwd_hash": "3e123e4dad3f2fe064e8a9e676892eb1" + }, + { + "member_id": 3066773303512389, + "ods_hash": "6b22b414a97ef65237a40d5b8d2d8b8f", + "dwd_hash": "aff1c8110e009b300b9ea69fdc698900" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_ex", + "ods_table": "billiards_ods.member_profiles", + "windowed": false, + "window_col": null, + "count": { + "dwd": 556, + "ods": 556, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": false, + "window_col": null, + "count": { + "dwd": 945, + "ods": 945, + "diff": 0 + }, + "amounts": [ + { + "column": "balance", + "dwd_sum": 356188.54, + "ods_sum": 356188.54, + "diff": 0.0 + } + ], + "mismatch": 945, + "mismatch_samples": [ + { + "member_card_id": 2791994266619781, + "ods_hash": "5c9e465462e983fef41077a8d678f199", + "dwd_hash": "2a893c2976d3292e8989ee51153ada9e" + }, + { + "member_card_id": 2793254697453573, + "ods_hash": "f608c279f05725027d17eb4695e25bde", + "dwd_hash": "4c1a05ccd660ad08f7aaac9938fb2566" + }, + { + "member_card_id": 2793268303710149, + "ods_hash": "8e3375bf269af4b38ea740ca7b30662c", + "dwd_hash": "a59381ba5d86e3caba1aa55c66199dc4" + }, + { + "member_card_id": 2793308329789317, + "ods_hash": "7a3d49bbab03504805715df1c13cdbca", + "dwd_hash": "bc34ad51397bd472ce313441f3b890f5" + }, + { + "member_card_id": 2799215867168517, + "ods_hash": "1542c0d61d8d12da447ee71cc1858420", + "dwd_hash": "a1c8d5e718a342bda888bd3a6192caa7" + }, + { + "member_card_id": 2799215872657157, + "ods_hash": "b4eefa77ba80b5820813e92e73ef7893", + "dwd_hash": "14ffd3026a9bddd1da62545b05e5efa3" + }, + { + "member_card_id": 2799215877195525, + "ods_hash": "98749b317f63de55938404ad221dcf47", + "dwd_hash": "5a0d0b98207bc68df42f3c1d370b4e8b" + }, + { + "member_card_id": 2799215882176261, + "ods_hash": "9eba7639809ebe9bd2888127c98f5c5a", + "dwd_hash": "d18b3078f547faeecd17e5da82c2afb3" + }, + { + "member_card_id": 2799215886796549, + "ods_hash": "664cf538788e802a229fc644efd78cce", + "dwd_hash": "3433321f2473561edf3b76d71412ce01" + }, + { + "member_card_id": 2799215892219653, + "ods_hash": "1511b76a3b0461365f1db765035eb143", + "dwd_hash": "c30556d52f5d9e7d142b4cc09b61c3c3" + }, + { + "member_card_id": 2799215897331461, + "ods_hash": "e4695f9e61975fb1141598a9f5fc2f5c", + "dwd_hash": "c607c57b0a0d59c7287df2df223f6b4d" + }, + { + "member_card_id": 2799215901869829, + "ods_hash": "45503c3e1ce78c9342779ca2140d0432", + "dwd_hash": "886a1f7b5da597c376dc14f6b250682d" + }, + { + "member_card_id": 2799215906440965, + "ods_hash": "dcfd7d61d7dd044dd684d9db1c8e7f42", + "dwd_hash": "49bb1f415848a7f3ccc16950f6736771" + }, + { + "member_card_id": 2799215912814341, + "ods_hash": "70c617a82007f22a36b64c99e08acff2", + "dwd_hash": "f386b08dca2f0f971bc29638308f3973" + }, + { + "member_card_id": 2799215918532357, + "ods_hash": "84bcb9b5138cf46541a2b13ecf30627a", + "dwd_hash": "279fa2bf054d1fc86930b487a8ce3c6e" + }, + { + "member_card_id": 2799215923578629, + "ods_hash": "71b25aa2ede09b45c77e19f8c636c654", + "dwd_hash": "8f39c5651aeef8960dfe6bafb1866360" + }, + { + "member_card_id": 2799215929050885, + "ods_hash": "39b765d742bd857554f0b2fbeb7fd7ac", + "dwd_hash": "438c91bfa71fd6d88277a53d60f929bd" + }, + { + "member_card_id": 2799215934686981, + "ods_hash": "fe37b27e5f5b013b2982a4c1f7656fdd", + "dwd_hash": "fadbbe07a38744520fa994e8b52058f9" + }, + { + "member_card_id": 2799215939651333, + "ods_hash": "297a7662f477c9e851fe27f51b754601", + "dwd_hash": "fbd26151a0f928bcf882a6ac36ff7462" + }, + { + "member_card_id": 2799215946073861, + "ods_hash": "5b38a2f3d58f227ef9b4d4c47669f3a4", + "dwd_hash": "66b4b5426a03ab7fddb9a10c56a00fba" + }, + { + "member_card_id": 2799215950759685, + "ods_hash": "3df3ed6afb42cae5c66024205d690133", + "dwd_hash": "a7a7fcbc1ff9ab9a73bd3921001cd6c2" + }, + { + "member_card_id": 2799215956576005, + "ods_hash": "09ff3ae1019129f1fecc671de7bced2b", + "dwd_hash": "7a54a8e95fccb8cfea7de1fcb3c50c12" + }, + { + "member_card_id": 2799215962556165, + "ods_hash": "dd4141c9a2a7fb65079c8a9a2623eaf6", + "dwd_hash": "2e97352c24e4377acdc08d00c2097536" + }, + { + "member_card_id": 2799215967487749, + "ods_hash": "a12e27d41c6e7518eff8099fcc304121", + "dwd_hash": "6842992a54c00a2ac838147280542c8d" + }, + { + "member_card_id": 2799215973451525, + "ods_hash": "cbab621e654b452974c48c5933fcd1a5", + "dwd_hash": "e9b05a7f7944155ff3534ec2adc0ac61" + }, + { + "member_card_id": 2799215978317573, + "ods_hash": "a4360dfb6e9a253ee17cb62899f69be4", + "dwd_hash": "f6ca231bb6e71da38d13dbc758c10cc1" + }, + { + "member_card_id": 2799215983609605, + "ods_hash": "1fc450d9e439961aed3ed3aef4da3fd4", + "dwd_hash": "69ad7ce2db0d42c0b9e458ba6f621df8" + }, + { + "member_card_id": 2799215988246277, + "ods_hash": "f39e9236912c630df5c2c0eaaaad9697", + "dwd_hash": "e7c8640d1d3304a95769bc146d6ea899" + }, + { + "member_card_id": 2799215993554693, + "ods_hash": "d4762d678c1c32dc0a7be4c522b955b0", + "dwd_hash": "83572775a1440d554432ebfd2d11d511" + }, + { + "member_card_id": 2799215998420741, + "ods_hash": "ccdb981a3ddf9255401e3e35d2c343fd", + "dwd_hash": "ee3b03f30a976300ba60f518ca0954e7" + }, + { + "member_card_id": 2799216005367557, + "ods_hash": "17b96dd20ba13c4e49b7a265c8523c1a", + "dwd_hash": "3729753a54794d090eb4ff82990dbe1a" + }, + { + "member_card_id": 2799216011511557, + "ods_hash": "33ec23ad6fac7e94d5d58de03c97ee17", + "dwd_hash": "bd6d883c39e2a947f70316a28ea1ce42" + }, + { + "member_card_id": 2799216016361221, + "ods_hash": "ba903ae66677a16ea52c10d103ee272c", + "dwd_hash": "267c8e05f2731f8b76c391edfaef34a9" + }, + { + "member_card_id": 2799216021210885, + "ods_hash": "95643ae42c38b6ab51b3ec3a1083392a", + "dwd_hash": "398ffae83f9f90da96b1c14386b11740" + }, + { + "member_card_id": 2799216027404037, + "ods_hash": "f1a2d1792852b110cecca72f1dff4d1b", + "dwd_hash": "184aa11db77cff6299fd8bb947046067" + }, + { + "member_card_id": 2799216032155397, + "ods_hash": "0b4dae5fe45717b9773843cbf3d7553a", + "dwd_hash": "5a5c48b73e8a65df15d8db862594b99e" + }, + { + "member_card_id": 2799216038610693, + "ods_hash": "03b2280164977a316e79af17ece24e66", + "dwd_hash": "e9c06cf1c5f03ef776f198f8a6e5cef7" + }, + { + "member_card_id": 2799216044099333, + "ods_hash": "c444e054a93dd7f99d16639da4501362", + "dwd_hash": "b98e5ec48e230a83247a7dbac4031a24" + }, + { + "member_card_id": 2799216049293061, + "ods_hash": "72c33ea8bee5b425550aa295cbcdad84", + "dwd_hash": "6810bce8c7d5546dae139d0d44843ccf" + }, + { + "member_card_id": 2799216054093573, + "ods_hash": "9c0eabbef9017423fada43faf19aa3b7", + "dwd_hash": "53c2e836e39b4d59b8de5ea20fbb166e" + }, + { + "member_card_id": 2799216058763013, + "ods_hash": "bf3e612b7829baa6d2658d24e0e01eab", + "dwd_hash": "9b647463ac262da11a32741797676c34" + }, + { + "member_card_id": 2799216063645445, + "ods_hash": "c54fc77c39a589b4b8d7c76a7ffaf95e", + "dwd_hash": "2fcf6af72c4f2e524d50e1e1f1bc99e6" + }, + { + "member_card_id": 2799216068364037, + "ods_hash": "de182d4c200b1612ac5cc49b01d5a6a0", + "dwd_hash": "6479384863a04560029878e25730c0f6" + }, + { + "member_card_id": 2799216074540805, + "ods_hash": "6ab759c863c16a49233202830ca9fe34", + "dwd_hash": "745e0aeb474d4dd8c2f578338a2a7a28" + }, + { + "member_card_id": 2799216079259397, + "ods_hash": "0b9b5d6aea9859c5f2b6a3916de35627", + "dwd_hash": "b262df07b0fc22f0ba4acca9046e46d9" + }, + { + "member_card_id": 2799216083945221, + "ods_hash": "05f35301c5127b218b61f5ab72e87a06", + "dwd_hash": "afbaed98572c03c900a9c3a4aa02cead" + }, + { + "member_card_id": 2799216088516357, + "ods_hash": "6ab5934c623f1faa7f212e03dec709db", + "dwd_hash": "95c18f1c3109a8b9b3f1f9ac25c7a288" + }, + { + "member_card_id": 2799216094873349, + "ods_hash": "1581c15e2d99325db79a1020d2564407", + "dwd_hash": "8f96ca08d7241b8471abf1e93cae67c1" + }, + { + "member_card_id": 2799216101852933, + "ods_hash": "879296fbfdbf4fee95c8d238acee01e9", + "dwd_hash": "5207fc7632c23c3fa0504a673300981e" + }, + { + "member_card_id": 2799216107980549, + "ods_hash": "cf8a28d4633d2189d5f5ed26fd67c2be", + "dwd_hash": "46fcbb4636550b0f5c651968506b2b9c" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_member_card_account_ex", + "ods_table": "billiards_ods.member_stored_value_cards", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 20, + "ods": 20, + "diff": 0 + }, + "amounts": [ + { + "column": "deliveryfeededuct", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 20, + "mismatch_samples": [ + { + "member_card_id": 3032780662688646, + "ods_hash": "6fff81d6d97588b98c02a845d73fe670", + "dwd_hash": "5c194b0847894011383fe30b7f185ea8" + }, + { + "member_card_id": 3032781195824005, + "ods_hash": "876b9c19b0ad89083642ac4828bb3db7", + "dwd_hash": "dfcd82abd0d5b839719d979b6b3f0b06" + }, + { + "member_card_id": 3034509269896261, + "ods_hash": "6b4c5e2672ee27073d290229df388aef", + "dwd_hash": "d169ba6a6c4637197c5ad6d5ad0373e1" + }, + { + "member_card_id": 3034509687458885, + "ods_hash": "2200ee4f9a98b77180405b329120a0e7", + "dwd_hash": "049e2972a2c8ffae6dc9cf6275bc300b" + }, + { + "member_card_id": 3037269565459781, + "ods_hash": "99e865958a72e6e5ee288227f93fa70d", + "dwd_hash": "fbb0c5957a3a612777b086e3d4389398" + }, + { + "member_card_id": 3037269815201093, + "ods_hash": "d622c0a4fd9d251e96d9e77c00d07de2", + "dwd_hash": "a00e9a82a2e294aac3a0318558fb4f29" + }, + { + "member_card_id": 3039974286231365, + "ods_hash": "43ff97a970a57a723e99614b97fa0f1f", + "dwd_hash": "e4c9e84e8ebcbb4cc0d624ac67c835c6" + }, + { + "member_card_id": 3043883848534213, + "ods_hash": "e99d6240e9bc8590e56ef6b91053b89f", + "dwd_hash": "28a8badd1eb5e300b5b370cbe4e3c5eb" + }, + { + "member_card_id": 3043884200789893, + "ods_hash": "7f5b9245b1a00e0eb0e59a600aaa9f35", + "dwd_hash": "327fc78b3d9615c9936bfe038bd6c802" + }, + { + "member_card_id": 3048238812202757, + "ods_hash": "a2726dd0a3ae6bf928f3aad43a4f3d4b", + "dwd_hash": "99a72cdb54dd6da31636e586533914d4" + }, + { + "member_card_id": 3048239462909701, + "ods_hash": "864cf1e6b273b8c56098deefce4bd5ca", + "dwd_hash": "d6023e64d7a6f72936fe64264d4d37d9" + }, + { + "member_card_id": 3052749343442565, + "ods_hash": "1b735f8edfd83da4a89f6a33bfbccdf9", + "dwd_hash": "f1a0671a9022298e73d782ad775e9c67" + }, + { + "member_card_id": 3052750402162821, + "ods_hash": "5a536e7b4e427b7eb2c451aeda1390bd", + "dwd_hash": "fce93364484ff6715b54ee70969174db" + }, + { + "member_card_id": 3054195562007941, + "ods_hash": "ebfb77bddcc5f7980bbd9f6848020b13", + "dwd_hash": "7bfab03a555723dae25e69610ffa71d4" + }, + { + "member_card_id": 3054195913755845, + "ods_hash": "51dd0309ed622dcaec04c619acf8736d", + "dwd_hash": "0680c9507c431be4acf68dbe0f08188d" + }, + { + "member_card_id": 3055176919745925, + "ods_hash": "2633a27d5986d4ec171447c84a038b00", + "dwd_hash": "48cd8a6d12c52cc1f459924c4de35d6a" + }, + { + "member_card_id": 3055177241628037, + "ods_hash": "38c6d72db8f56ef81d9b092a4d9584db", + "dwd_hash": "0f7215717144d1bf25bbff11f6842f42" + }, + { + "member_card_id": 3055567606646661, + "ods_hash": "7106561629854140a3023f7ac2802a4c", + "dwd_hash": "ea751b792457e9414ae58c0ed852ace3" + }, + { + "member_card_id": 3062388522452485, + "ods_hash": "4747cbf7e40d5cff9d1f756ffc0efb7d", + "dwd_hash": "9a3230ec996f1e7a3018c69419366742" + }, + { + "member_card_id": 3066773307755845, + "ods_hash": "ec37cf60d8c1d91f160d7ccf66d4a2c9", + "dwd_hash": "3749b1edf3daaa0cede0679d5b755b95" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 3, + "ods": 3, + "diff": 0 + }, + "amounts": [], + "mismatch": 3, + "mismatch_samples": [ + { + "tenant_goods_id": 3047844876503237, + "ods_hash": "e031e38f24bf2f639fedbdde97f30650", + "dwd_hash": "7db6dead2458f9d56556509dec8b9b1a" + }, + { + "tenant_goods_id": 3053571772270213, + "ods_hash": "009d00acebd3ff550da04cc4482f2c28", + "dwd_hash": "440e378fcb708453c939052bc6cdfa45" + }, + { + "tenant_goods_id": 3069455434189829, + "ods_hash": "83c63566574ecbf014a66574c0f950b0", + "dwd_hash": "dbe759821f925e72882d4962f4c16f7e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_tenant_goods_ex", + "ods_table": "billiards_ods.tenant_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 173, + "ods": 173, + "diff": 0 + }, + "amounts": [], + "mismatch": 173, + "mismatch_samples": [ + { + "tenant_goods_id": 2791925230096261, + "ods_hash": "6295000ad8292012e9cca142387f2710", + "dwd_hash": "d2d73718b0b47b0461c6c29e34f1ea05" + }, + { + "tenant_goods_id": 2792037812375429, + "ods_hash": "7908ae60e56c8ec39f1f0c8c3df1db3d", + "dwd_hash": "934d5d108f5d11ef74c5b8d3f0b1be2d" + }, + { + "tenant_goods_id": 2792038476746629, + "ods_hash": "1ea1398dffb04788fa2f98bc5d531e96", + "dwd_hash": "0ef01bf12935f66dcdb72ed1484e7a27" + }, + { + "tenant_goods_id": 2792039804047237, + "ods_hash": "0ae2045626662c8f481d91ca6d2a1afe", + "dwd_hash": "7f671dab39104f96bf0e271513d2eee9" + }, + { + "tenant_goods_id": 2792044495523717, + "ods_hash": "71ca4491f77d9e7b00cf36fea54267d0", + "dwd_hash": "ecb56250f32e08cf4c69a3a1d06ce111" + }, + { + "tenant_goods_id": 2792045494685573, + "ods_hash": "80d21f7e169974574acfe8ed7eaf7552", + "dwd_hash": "a03cc2607d07709e1e7ca59f5cb918fb" + }, + { + "tenant_goods_id": 2792056126328709, + "ods_hash": "93eb0f595d8059c325ca652bfeb952cf", + "dwd_hash": "1c63377b8eca55d03f4724e1bec6727c" + }, + { + "tenant_goods_id": 2792067181399941, + "ods_hash": "c198043fa70506ba6175d700c9ae4aa8", + "dwd_hash": "bbd018209650d41ffe8a115a7aebb57e" + }, + { + "tenant_goods_id": 2792070008164229, + "ods_hash": "a0e241d9dc6f50fcf015753aa21b3117", + "dwd_hash": "ae3daabf8411f59a87864e92c2d1c355" + }, + { + "tenant_goods_id": 2792072218644357, + "ods_hash": "0109de2091e8295593d9c76d8a25b373", + "dwd_hash": "fd8cf08b421a71839d36869a9b22a61f" + }, + { + "tenant_goods_id": 2792077012225925, + "ods_hash": "cfde005b0e2bf1fdee84531c534cb01a", + "dwd_hash": "ec17913666bc1f5198efdf8063ac35fe" + }, + { + "tenant_goods_id": 2792079352434565, + "ods_hash": "d64b062fa166ff2f8832ac167ef77262", + "dwd_hash": "18bf3faae0f4bdcaa942671419cd01dc" + }, + { + "tenant_goods_id": 2792081036562309, + "ods_hash": "95b1d808c7f6c31a75b9c90014cdea42", + "dwd_hash": "a6c52801c1bdda459ded7338e0abefd2" + }, + { + "tenant_goods_id": 2792082388782981, + "ods_hash": "f4a9283a8d58c0d25bc0b4df05323bfe", + "dwd_hash": "134a02e71b7838d3e9868dbe5ef57409" + }, + { + "tenant_goods_id": 2792083824283525, + "ods_hash": "636e6df49adda6b85ae369b1cca73d20", + "dwd_hash": "004a176f5a14f7ed5983160b5b429f62" + }, + { + "tenant_goods_id": 2792091011796869, + "ods_hash": "5760674d337a4309d0840ea23136ffad", + "dwd_hash": "52f3d90b6f467a9ae0997ebc100f6caa" + }, + { + "tenant_goods_id": 2792095859003269, + "ods_hash": "ce1e534e884027082076163636861b0a", + "dwd_hash": "20101ecf6c83e9499b8f121bebaa99d2" + }, + { + "tenant_goods_id": 2792096750243717, + "ods_hash": "6b29ba3c9f59221cb1aed9d33b925337", + "dwd_hash": "e54384d92fab5efe6108fd8e943d31b8" + }, + { + "tenant_goods_id": 2792098407092101, + "ods_hash": "b15dde728d8bf396bba1dfa87cd64561", + "dwd_hash": "590b86544bebf80674b5edca1e77ae40" + }, + { + "tenant_goods_id": 2792099955609477, + "ods_hash": "baf26768127b447d5c761198a0d30213", + "dwd_hash": "a9a0015a66503a7ef698ce6d91c8069b" + }, + { + "tenant_goods_id": 2792100776005509, + "ods_hash": "8582407fef5c9e400970247eb0352330", + "dwd_hash": "af6ca5653f1185c0a755a73a576df6f3" + }, + { + "tenant_goods_id": 2792102047797125, + "ods_hash": "d06d8a26d51d62df26484a298983c9ba", + "dwd_hash": "bf7d8523e0fca73a75957d89e493c3fd" + }, + { + "tenant_goods_id": 2792102887378821, + "ods_hash": "b8f5bd6a1372c1bbd80ce9ce364c921c", + "dwd_hash": "eeebdc8baa51b5b939d4ab7715df7bb4" + }, + { + "tenant_goods_id": 2792103809126277, + "ods_hash": "4a3dea77a3a9059aaa573e41a20fa169", + "dwd_hash": "94aaff734babba01b024e1c33677beef" + }, + { + "tenant_goods_id": 2792104571834245, + "ods_hash": "eefc6d336dab7a8030542c880593a562", + "dwd_hash": "9b948fe3fefb2f49c0abf1a642a0389a" + }, + { + "tenant_goods_id": 2792105355775877, + "ods_hash": "fa6bf2cbe4692baa55ca99f6b792ac7b", + "dwd_hash": "6aac8dbf5c4f66e3e7cb699de49e3930" + }, + { + "tenant_goods_id": 2792106618703749, + "ods_hash": "8cd99bb8b36516800302a1ff8b144a1a", + "dwd_hash": "db94ee037066bdd27ab1f1977783c3d4" + }, + { + "tenant_goods_id": 2792107453255557, + "ods_hash": "43173c6b20a3def41d8968a375c6541a", + "dwd_hash": "5b2dfeb1cea492e81eed7abc09dc8018" + }, + { + "tenant_goods_id": 2792108242096005, + "ods_hash": "a5c6fb8839618ec46082997bad51491a", + "dwd_hash": "5793f1d73e245a0df272829511e7902c" + }, + { + "tenant_goods_id": 2792109146951557, + "ods_hash": "59f2aeddbc6e6f9d6289ad27225dd83a", + "dwd_hash": "6401dba2b515491e3ac2714822416ac0" + }, + { + "tenant_goods_id": 2792110117130117, + "ods_hash": "f3c80a09d0d77035705a7213e6b84f99", + "dwd_hash": "f6920f46f93f6e00db69f09f44d20b4d" + }, + { + "tenant_goods_id": 2792111046741893, + "ods_hash": "379205c1a2fcec407c758bb3ea8b4654", + "dwd_hash": "439f3070814f84ea61e6baa1e6a4899c" + }, + { + "tenant_goods_id": 2792112367603589, + "ods_hash": "0b9a3964c91e9ab6881aeb99203e7869", + "dwd_hash": "7cd1812eb9d4648c7e8570b10f91e5b7" + }, + { + "tenant_goods_id": 2792114026696581, + "ods_hash": "cc61c2d1ac866ed448a6b28ba9c68226", + "dwd_hash": "61a8ac19b6f84915498e665626b8acea" + }, + { + "tenant_goods_id": 2792114975313797, + "ods_hash": "110f59f827abd3c6d25496a35e24e7f2", + "dwd_hash": "f6e899660997d3c8aca99b8f29bd33a9" + }, + { + "tenant_goods_id": 2792115932417925, + "ods_hash": "a6b8a2ed51f0b1ce50ab0f7ed737167f", + "dwd_hash": "738646d7cc092cfa5124ac97ed20450c" + }, + { + "tenant_goods_id": 2792116914442117, + "ods_hash": "31da1c42888d352da2bad3245421eb1c", + "dwd_hash": "e55380d698621ca8cbb2841bc6d69e55" + }, + { + "tenant_goods_id": 2792117879639941, + "ods_hash": "bbdcd88e208e96d5a5d5fdb0872411f8", + "dwd_hash": "8fc23c5a4260ca94800a4fbc7a2ecf71" + }, + { + "tenant_goods_id": 2792118718353285, + "ods_hash": "a9c18b4d49dbdcf689b891d47b997904", + "dwd_hash": "2b24c42f934ccc22e43a798db38d2877" + }, + { + "tenant_goods_id": 2792119564439429, + "ods_hash": "340b345ca1fea77e353f78055f3086c9", + "dwd_hash": "a8aafbd92ac557c3dbb89f7cdb6ba53a" + }, + { + "tenant_goods_id": 2792120662675333, + "ods_hash": "d3c8e714a99adbf08567ba51c75b192a", + "dwd_hash": "8c23f6fe39b3d104f30973b6414185a3" + }, + { + "tenant_goods_id": 2792122952519557, + "ods_hash": "43047526378bfd11a03fd2df42dfe6f4", + "dwd_hash": "4038217f440fd89f0f9294cda346ddcc" + }, + { + "tenant_goods_id": 2792123803078533, + "ods_hash": "a8e7ef54d42a2331150beeb2d1ff6929", + "dwd_hash": "5ba7db6e3ef17010df090f348c0b87ac" + }, + { + "tenant_goods_id": 2792125002321797, + "ods_hash": "b979c11a4f31f1f49d77a8772e1154c2", + "dwd_hash": "c4f79a907874bafb9944af80f676a4c4" + }, + { + "tenant_goods_id": 2792126153330565, + "ods_hash": "a36d381d6363671d5c6c401764178a92", + "dwd_hash": "51830d83ad2da09102b75884ac23a6f5" + }, + { + "tenant_goods_id": 2792126853369733, + "ods_hash": "269364a2d8641104ab89ec1ea63a92f1", + "dwd_hash": "4c26907d3e58869f69bafe59ce6d1d7c" + }, + { + "tenant_goods_id": 2792128158191493, + "ods_hash": "1dfdabb80456f5dbe990e2c7953edaf7", + "dwd_hash": "9fbc3529823cc56b54e0e796256f7e88" + }, + { + "tenant_goods_id": 2792128793546629, + "ods_hash": "247d4b0dce36ada0d7731d1a07c66db8", + "dwd_hash": "6e0e96758fae3b32f931f2766ce62f4a" + }, + { + "tenant_goods_id": 2792129791594373, + "ods_hash": "482b7d6927205b7b1087570a89de35f1", + "dwd_hash": "d3f6087cafb761bc96a28d65b0a87871" + }, + { + "tenant_goods_id": 2792130734133125, + "ods_hash": "4a26361c7e7f9e1d1de98c27f546a257", + "dwd_hash": "7bd5421f520f44fb9b5508598c15334e" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2791953867886725, + "ods_hash": "56022e1419e4058c6e53fb20aa03b350", + "dwd_hash": "62f86578e2bef382d6bba10eef1f412a" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "7f4890de6699c00032fb0c01fcd58fe4", + "dwd_hash": "825487647714caf7411f48a256e5cbab" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "778503a866f2dfe00d1aecef2c5aa029", + "dwd_hash": "6317cbee26d2446217f68e416c65bd5f" + }, + { + "site_goods_id": 2793025845399621, + "ods_hash": "af77de55dd3ffa4451e304b9fc7b03fa", + "dwd_hash": "35fa554376ac7000232d2b5a868556f5" + }, + { + "site_goods_id": 2793025845825605, + "ods_hash": "68f59f63eb02140db561ef447e237e05", + "dwd_hash": "726cdba720fae962abc35bc7e3691743" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "a5c3e02d57ed8a7aa01649a58b58b94b", + "dwd_hash": "5c29f6b7a3aa28dc056987e9ef72c11a" + }, + { + "site_goods_id": 2793025846464581, + "ods_hash": "3d703e4304aa77f1a9ae10c0df11a306", + "dwd_hash": "295741ecd6bedfc35ad932c438591c44" + }, + { + "site_goods_id": 2793025846939717, + "ods_hash": "c3b24bc04396076ae43531d3709d6339", + "dwd_hash": "f04aec313bb40d3a777b94c1f3cc904c" + }, + { + "site_goods_id": 2793025847431237, + "ods_hash": "81a0cc669e3fc069030dd0dc9e890b06", + "dwd_hash": "a4f8a156e2b75d10f16916fd70838d0d" + }, + { + "site_goods_id": 2793025847595077, + "ods_hash": "f5ef49f8e1e3adc182f4cb2ebaa2cab9", + "dwd_hash": "1428e548bdfbf34bc407131a98225903" + }, + { + "site_goods_id": 2793025848102981, + "ods_hash": "2c5d31aef76b29f9767c2dfb0c51eb6e", + "dwd_hash": "0a596479961361fbf6b5342af39a26b7" + }, + { + "site_goods_id": 2793025848610885, + "ods_hash": "a8a626440aad962e7fcd864591a086a5", + "dwd_hash": "09315ecc5c5ebca4cda9474bc01a58a8" + }, + { + "site_goods_id": 2793025849102405, + "ods_hash": "44e13b82eaa7ad771f25af8d2cc6552d", + "dwd_hash": "4a2fc6cbcf1ed9214846a3e018717d1d" + }, + { + "site_goods_id": 2793025849593925, + "ods_hash": "796ec9b5c54726b90d6325c26e55999b", + "dwd_hash": "9909387d16076c23f05941719c740931" + }, + { + "site_goods_id": 2793025850085445, + "ods_hash": "f8d8589a6c2337d1f0c74dc73df93fcd", + "dwd_hash": "6e21b9e8e416a7ee4f593f8bfbfe2d5b" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "e6c30cc1d00d65057eda01a94512ca49", + "dwd_hash": "86dde375dcc01d2a351d250514b3478c" + }, + { + "site_goods_id": 2793025851068485, + "ods_hash": "d0e1d4e544769ff7c3591c5c4468e316", + "dwd_hash": "6c9fcca37c3e1b9bf09afa079cdf3f43" + }, + { + "site_goods_id": 2793025851560005, + "ods_hash": "6dccbd4e1a7d3db81888570408bfac5c", + "dwd_hash": "716773ec121da86ccf88d34cec31cbc1" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "2225fafc0b627d42a11ae8fb6c0fd309", + "dwd_hash": "422f3c26153fad7f66d01c88fe741e24" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "e30b8bb9721587104fb62cb785b1d662", + "dwd_hash": "c84399d53546fdb41ad98df22f77698b" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "37a4cc32b7e54facbf8eeffd14740b9d", + "dwd_hash": "78af3e285cc58cd9c8d4c794c221305f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "b6dd1e4f7456faacb64f3d99a5cf5674", + "dwd_hash": "84cecb1e94d90433b92a396af863b414" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "1d9bec3d40f6c353fbe6782858e76cff", + "dwd_hash": "f51e99ffcb8a5f048cd446e4306930f2" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "fab6bc2511187b2faea41b7da9ec6524", + "dwd_hash": "6cdf2601bc95a00fd05505eeaf10447d" + }, + { + "site_goods_id": 2793025855000645, + "ods_hash": "60f768e203b1b82316169d88a85386ab", + "dwd_hash": "a88b50fbaa8d325075f60bed5fa394db" + }, + { + "site_goods_id": 2793025855492165, + "ods_hash": "a6574938e313be5fe95b2c0328211812", + "dwd_hash": "6691b24294f0971f9845d51d28cdb584" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "3865757ce333318d757fd430e06cd566", + "dwd_hash": "6edee9f20dcd143396c219a544ce2bd7" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "574ef671c6d4903ae901458a39f42426", + "dwd_hash": "fdc627c00ca67d236623b7a06f5e286e" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "9bd1f68b5c925ad646f0843b1d4d8d8f", + "dwd_hash": "566cd4624d5b41e6a5dc6cfe1acb8da2" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "b2aba9f2faa9191687579c1e4aa7ad7f", + "dwd_hash": "f9ba5557a490013a1c1c77202f78513c" + }, + { + "site_goods_id": 2793025857900613, + "ods_hash": "6f9f9043f1228cb0ca8f65776a026a8b", + "dwd_hash": "0a8d0897880db78bf842b7031f5abe5c" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "1934aea84289f8871680eb5e3fd8cb0a", + "dwd_hash": "1e1813277bcb200defec08cdb92a3209" + }, + { + "site_goods_id": 2793025858900037, + "ods_hash": "43a62b33a03f96770719eca93c4b6ffa", + "dwd_hash": "e7330ae8b2fb71e462a2289a28aa4c3b" + }, + { + "site_goods_id": 2793025859375173, + "ods_hash": "89a26948c5a27e30b157f2a3a64c9862", + "dwd_hash": "2c91b6ee141a68cda141f979067d25f4" + }, + { + "site_goods_id": 2793025859653701, + "ods_hash": "f7308e17a41736d23cfb795a16231905", + "dwd_hash": "592076fcd6b38648365fd2f1a24332d5" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "4cdb6de96efa88882883289e6761bc58", + "dwd_hash": "4ffe20f4984b9e673b7848d64d5f997d" + }, + { + "site_goods_id": 2793025860636741, + "ods_hash": "fe77e2ddb0e905c157ed919042baa6d0", + "dwd_hash": "8b93068950d7664f5dc87544d5d59738" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "c16ec0039320faeadfaaea828552fb5e", + "dwd_hash": "feb828066a9f9d88d55914da89ff04fb" + }, + { + "site_goods_id": 2793025861308485, + "ods_hash": "fa2916edb2ecf1e068a0852c5fe4d5a9", + "dwd_hash": "22a26eacda33d2d26ba42d418b89de06" + }, + { + "site_goods_id": 2793025861505093, + "ods_hash": "22f77aacbd0d96fcdcad25d327876b53", + "dwd_hash": "0e27c5f84f66e061353a295db54a13d6" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "f5093fb5390b5950bd8e5d99d2e67c95", + "dwd_hash": "36c3ceb516208d5592b274adcb21ca6d" + }, + { + "site_goods_id": 2793025861849157, + "ods_hash": "42d29a91b2b563e6e12bbcc6e7f0d385", + "dwd_hash": "954e31c61e504a3dc07a7e7e3959a98a" + }, + { + "site_goods_id": 2793025862078533, + "ods_hash": "61d3e9b08d6e69db28306b92940c00f0", + "dwd_hash": "5080c9cdd1f97abbe367b526551585b2" + }, + { + "site_goods_id": 2793025862258757, + "ods_hash": "adf6ef0e91a6bf28738d90a90ca907b4", + "dwd_hash": "fc6aac0e43f9c1eeef0a5ebc7b69565c" + }, + { + "site_goods_id": 2793025862438981, + "ods_hash": "9fed509a5152852d9a48fdbe5c180920", + "dwd_hash": "dc0ac3333851cea2026f8457817d4a7b" + }, + { + "site_goods_id": 2793025862619205, + "ods_hash": "d13c0f4a6b53d8b99aeebf6857b63ba3", + "dwd_hash": "26654695397283140abe3d862b06ba77" + }, + { + "site_goods_id": 2793025862799429, + "ods_hash": "18d7454a652628e94c245edce53ea0a1", + "dwd_hash": "9aa3967bad163b25fff16498bda1a26e" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "b4117ab1da2f43c0bdb738a74d390500", + "dwd_hash": "c25548a869fa612b2cfad54b27e62260" + }, + { + "site_goods_id": 2793025863127109, + "ods_hash": "825416c65b2667870da7b9e1b3ac45ac", + "dwd_hash": "aa11f6a802eb6a6a88467654a3802ad8" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "5c1dd1b44929025461ff9c356b4572d1", + "dwd_hash": "e18ac4543f773fa2a86335c972ea87b4" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_store_goods_ex", + "ods_table": "billiards_ods.store_goods_master", + "windowed": false, + "window_col": null, + "count": { + "dwd": 172, + "ods": 172, + "diff": 0 + }, + "amounts": [], + "mismatch": 172, + "mismatch_samples": [ + { + "site_goods_id": 2906983124748485, + "ods_hash": "d4a952c6a7a13d128d68202b8c137f9f", + "dwd_hash": "ff60b1293d83bfa3999fc99342b1546b" + }, + { + "site_goods_id": 2940642871856901, + "ods_hash": "7f4d8d4407c1daea5d1ead28637afb99", + "dwd_hash": "ec71c37c518a37edb60fe16551409ecb" + }, + { + "site_goods_id": 2793026176995397, + "ods_hash": "d9b85bdb9bde222dae28cab4d18504ab", + "dwd_hash": "b8a88057a2da9751628c19a66dbf5fca" + }, + { + "site_goods_id": 2793025852051525, + "ods_hash": "d14b34b8159dde7c45587162c5a2e9d8", + "dwd_hash": "70c766a690c82244521da89ec7d92e6c" + }, + { + "site_goods_id": 2793025852543045, + "ods_hash": "1e21b2bdae5ebeea361f846b57c597ec", + "dwd_hash": "fe43d27c8d0cf89c96c1d6aaaf7936e9" + }, + { + "site_goods_id": 2793025853034565, + "ods_hash": "389b5fca2bb46d4a08cf080a39c4e2a3", + "dwd_hash": "2d0b3a9ad88affa75a08d94e2de9db3f" + }, + { + "site_goods_id": 2793025853526085, + "ods_hash": "129b72782e07614c9c86954a1a7fbba0", + "dwd_hash": "b8e10e6ac5a49340323ccc3cf31cdaf8" + }, + { + "site_goods_id": 2793025854017605, + "ods_hash": "b9cc53c580dac42c00a5657af65afe78", + "dwd_hash": "71bd808448f27843ee689b7d33b84d34" + }, + { + "site_goods_id": 2793025854509125, + "ods_hash": "307196cfcee741be6dc17b503eb9d9b5", + "dwd_hash": "87a5aaec5e91b583b23aeda3289e9f52" + }, + { + "site_goods_id": 2793025855950917, + "ods_hash": "e1ee845fc3e64a64601d667faff1c063", + "dwd_hash": "9297cc8f3dff08b11a6b8857a546f6af" + }, + { + "site_goods_id": 2793025856442437, + "ods_hash": "9f375dba461cf0853f8f3ca69001e2fd", + "dwd_hash": "11afe08d22d6ebcf0a55991fddad75c3" + }, + { + "site_goods_id": 2793025856933957, + "ods_hash": "05f4f45b1f1ff6e2b102137dc816a68d", + "dwd_hash": "98208085bf18298939c8035cc9e60681" + }, + { + "site_goods_id": 2793025857409093, + "ods_hash": "ce4cee86b9a4c2bf8977079fe6ebc8b3", + "dwd_hash": "fdf721b8356d7969767c7e277c526ede" + }, + { + "site_goods_id": 2793025858392133, + "ods_hash": "5d70c5be1e0b121b52d7735d646877b1", + "dwd_hash": "e804cafbc09188c3855646fafa59cb21" + }, + { + "site_goods_id": 2793025844908101, + "ods_hash": "e51bcecbfa56f8466c56823b606004f4", + "dwd_hash": "3db3ad5b3e76d2071594344c6f0054aa" + }, + { + "site_goods_id": 2791953867886725, + "ods_hash": "54026e1bec4b9c67c2c75b101fbe388c", + "dwd_hash": "cd1fd6b55b754eca205653a67ead4442" + }, + { + "site_goods_id": 2793025845989445, + "ods_hash": "d19d27239ff9f91ae712606f920443e1", + "dwd_hash": "9a62949bf226687d4f08d2679625ba48" + }, + { + "site_goods_id": 2793025844727877, + "ods_hash": "085c62af9254e908ae951a099110934e", + "dwd_hash": "5f1ec596a3360ce46eb4f8c40386e64d" + }, + { + "site_goods_id": 2793025850576965, + "ods_hash": "538b6a2830774f9d7b631c63195fd5a1", + "dwd_hash": "e4800369bbe7dbeb1b070598d11776e9" + }, + { + "site_goods_id": 2793025860145221, + "ods_hash": "b98215ab067ed8767142246d485e2eb0", + "dwd_hash": "d32a06c1d71206e56562f67a497b13ac" + }, + { + "site_goods_id": 2793025861128261, + "ods_hash": "5e79da2d35a608c93a74e54b67fbc8ff", + "dwd_hash": "7402456290dcad615679ff507d34d5de" + }, + { + "site_goods_id": 2793025861685317, + "ods_hash": "cca9a49d1c05782a3ae5786f32c7326f", + "dwd_hash": "cca80c0e9e7a671ddd8a165631a05986" + }, + { + "site_goods_id": 2793025862963269, + "ods_hash": "f03e8b76ea6164988e7e8fae4c19234d", + "dwd_hash": "268aeb5b88e5cb73c12e9442c0b3d1f4" + }, + { + "site_goods_id": 2793025863290949, + "ods_hash": "001cc0b0cd01d8c1b97e9786ae675c34", + "dwd_hash": "696a74c1b1c4daaa0cb7b61158e974ed" + }, + { + "site_goods_id": 2793026174865477, + "ods_hash": "af9340fd0163f8ea613ebe96a2608065", + "dwd_hash": "018a50f234ff741bb2c15fce07bb06c9" + }, + { + "site_goods_id": 2793026175520837, + "ods_hash": "7937ad150e5e9ea1c837e8c07f10477a", + "dwd_hash": "54c99bf3fe469ead4edd71d78c775fe0" + }, + { + "site_goods_id": 2793026176012357, + "ods_hash": "325d8992cad14e7118c424a091b7cccc", + "dwd_hash": "65d16fd9dbdf3e4e9ab8d2b4e17ed8ce" + }, + { + "site_goods_id": 2793026180501573, + "ods_hash": "ec6abfc660015fd80fe84a585f8e8feb", + "dwd_hash": "ffc00cb999373993a9505b02a4d51b03" + }, + { + "site_goods_id": 2793026180993093, + "ods_hash": "a3e8084fd9d6e4db7f252496af39701b", + "dwd_hash": "e19b68127f94a68aafd66a6c4e16ff91" + }, + { + "site_goods_id": 2793026187399237, + "ods_hash": "c23c378299156e772b05a1ff8c1026fb", + "dwd_hash": "fa2807b9f6386307a371db9e45aa3b27" + }, + { + "site_goods_id": 2793026182664261, + "ods_hash": "c027e58bf3f57f22197a344d9c39175f", + "dwd_hash": "bc0e6ce0307d883c38d58c41f5b3eb84" + }, + { + "site_goods_id": 2793026183041093, + "ods_hash": "591d66a618e3023d5b96c31a49258b2b", + "dwd_hash": "df5326c7c683f1033f97dd323db0b427" + }, + { + "site_goods_id": 2793026187923525, + "ods_hash": "4fa83eafdfcea0ac3a3c9859c23b9c07", + "dwd_hash": "607eb2a906faf2da50f90793228ed085" + }, + { + "site_goods_id": 2793026188251205, + "ods_hash": "84aea53b6ddfbbbd1ed80a61461420e9", + "dwd_hash": "4e053f48f993d05de2cfe375ec830619" + }, + { + "site_goods_id": 2793026184302661, + "ods_hash": "b57a73b00185fabdaabcabce1a3c5b6f", + "dwd_hash": "c6d15bc7f0ee47fe349cd2fa866a0fa0" + }, + { + "site_goods_id": 2793026185154629, + "ods_hash": "b0843cd263a15f919c15084773f772f6", + "dwd_hash": "6f21c8624ee0c5422b62e2e86037235f" + }, + { + "site_goods_id": 2793026187071557, + "ods_hash": "6b9edd27a9d89e5c9aa5687a95684af1", + "dwd_hash": "061e959f80dfdc1be0c300dd957c4dae" + }, + { + "site_goods_id": 2793026432438405, + "ods_hash": "79ab0684071946cbd687b45283b858c8", + "dwd_hash": "ef5101ea5339d7c3b9e57e86981ff0c8" + }, + { + "site_goods_id": 2793026188578885, + "ods_hash": "1adf003012634a9355733478e2e6a172", + "dwd_hash": "0ff3fdefd402599af9ff48a7bc22a571" + }, + { + "site_goods_id": 2794695800934533, + "ods_hash": "36605852c5dddfa98781515214d8576e", + "dwd_hash": "facead8a2240244ef925a07621494e2c" + }, + { + "site_goods_id": 2794695801753733, + "ods_hash": "9bf18fefb33eefee7c3f74743d94e7e0", + "dwd_hash": "58d93af2ad8f748b1afe890125d49d12" + }, + { + "site_goods_id": 2794695801917573, + "ods_hash": "847ced57a41cc520138da7aaeab239b5", + "dwd_hash": "d9f35e051b2d1981e270249f1ba28e10" + }, + { + "site_goods_id": 2828836772432837, + "ods_hash": "a9513f4fb07fa9760099d7b36d02eaa0", + "dwd_hash": "a78bb83c67d8d54ca574c27b690447cb" + }, + { + "site_goods_id": 3004536125639493, + "ods_hash": "579278f246f3c85cf0b8877fb757944e", + "dwd_hash": "5cd8cfa64f4c93ef162aef1f6ee2e8bc" + }, + { + "site_goods_id": 3053572251340677, + "ods_hash": "72819b595d788a17bb69f4b21fbddd8f", + "dwd_hash": "71035fc6440961269cea9748bfdcfa90" + }, + { + "site_goods_id": 2793026433912965, + "ods_hash": "28bb5f2e4d3049192e7326a0c841df2f", + "dwd_hash": "ef2768054290bb18def4ea23a4a0c8c6" + }, + { + "site_goods_id": 2793026434404485, + "ods_hash": "fceb365f49caf5cdfb9c590b5104d93d", + "dwd_hash": "827ddfeefc1374274274c65b535086db" + }, + { + "site_goods_id": 2793026434715781, + "ods_hash": "e2ab6561109cc3099416d88687b8a1f3", + "dwd_hash": "0cebc2e2b21ae1fff3e276c76085ed9e" + }, + { + "site_goods_id": 2793026185695301, + "ods_hash": "f160d5cb3c47cb0ec5d76e5472c24003", + "dwd_hash": "51a543b730e795c3bb6192ad96d98a44" + }, + { + "site_goods_id": 2793026186055749, + "ods_hash": "6e06edd5373a06de7fd0bf40ed87baeb", + "dwd_hash": "8bdeb31710bf10898c5f87087ce119ae" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_goods_category", + "ods_table": "billiards_ods.stock_goods_category_tree", + "windowed": false, + "window_col": null, + "count": { + "dwd": 26, + "ods": 9, + "diff": 17 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 4, + "ods": 4, + "diff": 0 + }, + "amounts": [], + "mismatch": 4, + "mismatch_samples": [ + { + "groupbuy_package_id": 3035346503502213, + "ods_hash": "1cbb6af255ead44ba5c2fbba55009846", + "dwd_hash": "373d2380df82ea8be90ca7d874ce3b85" + }, + { + "groupbuy_package_id": 3035353102028549, + "ods_hash": "69c0af862425a4b18f8a71082365aa41", + "dwd_hash": "e7b84aa8da485a3dfb38f6b30726d0ed" + }, + { + "groupbuy_package_id": 3035353129373509, + "ods_hash": "e2cd26a62a5b533d73381349f4702f9d", + "dwd_hash": "2d4775e090a14b226a830565f8b974f4" + }, + { + "groupbuy_package_id": 3048468851870085, + "ods_hash": "40e5bf23316d013dd6e34ff5335bbacf", + "dwd_hash": "a2cc98639fb0ba604b13cd1caaf6585d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dim_groupbuy_package_ex", + "ods_table": "billiards_ods.group_buy_packages", + "windowed": false, + "window_col": null, + "count": { + "dwd": 34, + "ods": 34, + "diff": 0 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_settlement_head_ex", + "ods_table": "billiards_ods.settlement_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 23609, + "ods": 23736, + "diff": -127 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2882, + "ods": 2997, + "diff": -115 + }, + "amounts": [ + { + "column": "adjust_amount", + "dwd_sum": 57169.8, + "ods_sum": 60900.33, + "diff": -3730.529999999999 + }, + { + "column": "coupon_promotion_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + }, + { + "column": "ledger_amount", + "dwd_sum": 348798.59, + "ods_sum": 363988.31, + "diff": -15189.719999999972 + }, + { + "column": "member_discount_amount", + "dwd_sum": 20970.02, + "ods_sum": 21298.74, + "diff": -328.72000000000116 + }, + { + "column": "real_table_charge_money", + "dwd_sum": 146832.65, + "ods_sum": 132582.4, + "diff": 14250.25 + } + ], + "mismatch": 2882, + "mismatch_samples": [ + { + "table_fee_log_id": 3031559653985413, + "ods_hash": "a4231f36c9e17310e5fb9d1cd9d00c57", + "dwd_hash": "b4ddc5a912f43c767d4a58ec3a133f1a" + }, + { + "table_fee_log_id": 3031559793577029, + "ods_hash": "a6653d3a8b9d04101d09fa54587351cd", + "dwd_hash": "8007376af5617d2e25e791611f3846f6" + }, + { + "table_fee_log_id": 3031580140031045, + "ods_hash": "c9904c84b048f900a8f22fcb0f6d16a1", + "dwd_hash": "c765827ddc6af911670c6aa4084a9c8b" + }, + { + "table_fee_log_id": 3031591025855557, + "ods_hash": "0a28f9d305631f2420735b0ec7f4d932", + "dwd_hash": "b2a7a7df125746f9087045e65c13a860" + }, + { + "table_fee_log_id": 3031604210961285, + "ods_hash": "f383fd1ac981ecc2f39001437c082170", + "dwd_hash": "b0a9089dd7781824ad75746865d1d691" + }, + { + "table_fee_log_id": 3031604945357701, + "ods_hash": "0db1ba92b205d7011c5a77dece15c891", + "dwd_hash": "b9fbb6994629c2f3c416ffb8602616c4" + }, + { + "table_fee_log_id": 3031646428072837, + "ods_hash": "d9b5f54f80d0bfa8c4f012e9fca7657e", + "dwd_hash": "9ba7d31747cc9be59c78c89b5d80371c" + }, + { + "table_fee_log_id": 3031646482844741, + "ods_hash": "6fce90ad8252f8233dd8354b0836f9a8", + "dwd_hash": "3608d1ef3e73219aaf77ebd6ba820848" + }, + { + "table_fee_log_id": 3031647113382789, + "ods_hash": "503b40495ea92f9de20759c4d106a114", + "dwd_hash": "7dba7d22cb7fd6a06e8498b313834da7" + }, + { + "table_fee_log_id": 3031653085531013, + "ods_hash": "4e0857c801f7c06417c53b8d2edc2bd9", + "dwd_hash": "d6770f38a83cfa6d344f126191dcfdf7" + }, + { + "table_fee_log_id": 3031700025838469, + "ods_hash": "7cf57c36ca16c098986309f667c159f3", + "dwd_hash": "d73b5126df88db3059e93ee6118354a1" + }, + { + "table_fee_log_id": 3031742588291909, + "ods_hash": "fcbd92f83ef9aa675abc0e1b934fcee5", + "dwd_hash": "9c9731fcc734d1f7195cd2fb04aa0239" + }, + { + "table_fee_log_id": 3031896028252997, + "ods_hash": "5b7a0cb3f8f67301d56dfc33951a3edd", + "dwd_hash": "2be5912a9be79e92ee87c0f13c374463" + }, + { + "table_fee_log_id": 3032262315019397, + "ods_hash": "44a6246f7ce7478d12270b01054bb1b5", + "dwd_hash": "98aaad870a6f7e4eaebdccfb586220c0" + }, + { + "table_fee_log_id": 3032291881634885, + "ods_hash": "d44a8cc57db59c5b228af1f216744675", + "dwd_hash": "2bf0272fe2a5660fe57209e56564e49d" + }, + { + "table_fee_log_id": 3032388006530181, + "ods_hash": "43e2c94ec47874dfa344d8f3687cbbed", + "dwd_hash": "2a06d1afe794155f1489136cb183cc91" + }, + { + "table_fee_log_id": 3032388075818117, + "ods_hash": "e465269bd822a7bf542494e41b174750", + "dwd_hash": "f437022f1b14a0629fe07622a967078d" + }, + { + "table_fee_log_id": 3032388340042629, + "ods_hash": "fe7c5fbc754085fd693938004fd2e660", + "dwd_hash": "da07a00eccf7c93f3bfd04f66816e283" + }, + { + "table_fee_log_id": 3032390342462533, + "ods_hash": "ade76ebdbb6d33dad7da38253969e6d1", + "dwd_hash": "556d5e7b7d91758817e598cc9796fdc2" + }, + { + "table_fee_log_id": 3032467840732229, + "ods_hash": "4b315d25146f605bb632ebe66115a841", + "dwd_hash": "72ad465b274c29fa5bf4b8c442ca1a83" + }, + { + "table_fee_log_id": 3032476573535301, + "ods_hash": "1df0fcde75b736f75c70e659dc373117", + "dwd_hash": "d69b4b804f440b03cdb47a5a36072af5" + }, + { + "table_fee_log_id": 3032476648852357, + "ods_hash": "93c50db023681fc9ade0ab83bffc6dc6", + "dwd_hash": "994a96583a1c4f7d29600c2848160253" + }, + { + "table_fee_log_id": 3032490422373253, + "ods_hash": "e89063861189f3b5c2cdd6f76ef9092a", + "dwd_hash": "4e72ea4ba5f23a0cc81d83fe9505cca6" + }, + { + "table_fee_log_id": 3032499558157125, + "ods_hash": "bb7cc8b0131203b43488e074f93b9c51", + "dwd_hash": "32bde565f3dd2fdd0048a0d26ef4ea91" + }, + { + "table_fee_log_id": 3032509393144901, + "ods_hash": "cde9de300174c5790118527929a41703", + "dwd_hash": "c53348671aafeb9d25c8407f2960aabb" + }, + { + "table_fee_log_id": 3032514936408965, + "ods_hash": "531c96d4216026e45e4aaef06c9742fe", + "dwd_hash": "9266b4a3687e9066dd91859c152e8fcd" + }, + { + "table_fee_log_id": 3032530123787333, + "ods_hash": "dd8e57e5ab30124c0020e16e98a9d6b9", + "dwd_hash": "d8ffc976e74cdb34a437114a5e2c1767" + }, + { + "table_fee_log_id": 3032531255479365, + "ods_hash": "26ca68bf884b05d64b3503b3c0b89254", + "dwd_hash": "045cf98d57b8dd391e6ef8a5a908725c" + }, + { + "table_fee_log_id": 3032536349264773, + "ods_hash": "db367f2007a1d3d541633ee98a09d4ca", + "dwd_hash": "e3f226c4b89a779f4c1a81ef9377afe2" + }, + { + "table_fee_log_id": 3032538554715013, + "ods_hash": "e7ba1c3954523564cd0c445ca65dc4cf", + "dwd_hash": "e7a2660d01b265d5f1445d7d8d65641c" + }, + { + "table_fee_log_id": 3032538605521989, + "ods_hash": "806d71c8f28e7f984f33b8edb9a27333", + "dwd_hash": "a1f3fb62f51289821653e79d4bf62876" + }, + { + "table_fee_log_id": 3032547975646021, + "ods_hash": "5f40aa0b0e8ffc0a9c9e01636be11d6b", + "dwd_hash": "639fd1d438f1d8d86f30687264bb04ae" + }, + { + "table_fee_log_id": 3032548020833093, + "ods_hash": "09219b3edacc715788928b6a66939d58", + "dwd_hash": "2e65f265c4b8d1c57903b6e7260dd4e0" + }, + { + "table_fee_log_id": 3032569593547845, + "ods_hash": "4f6c8732b2f0eecf1e0ae6207a314cd3", + "dwd_hash": "39d7e237a67ed4e9e19a70dbff37f51d" + }, + { + "table_fee_log_id": 3032573208611909, + "ods_hash": "840152fd5bb0866eda678b7e2b5d341c", + "dwd_hash": "c6257b04becd8a300027b6dd1c066e0d" + }, + { + "table_fee_log_id": 3032582392908933, + "ods_hash": "0d9476468494e4c30d0cec7b26de0648", + "dwd_hash": "05484960ff6aac3bc7013ff9d6d9491c" + }, + { + "table_fee_log_id": 3032586920758149, + "ods_hash": "94176fea2a3a615ad0d4acdfe1cc9e6b", + "dwd_hash": "9ae9fb94ff657c994d182f11dc537267" + }, + { + "table_fee_log_id": 3032589576997957, + "ods_hash": "e699ad9c7313e975d25efcbf30047347", + "dwd_hash": "a422e03a6526d1032e93bddcb69a3a04" + }, + { + "table_fee_log_id": 3032591296498821, + "ods_hash": "1df175d6f3ce72e4a2859d93ead87b08", + "dwd_hash": "b708bb00876a6194f273f645544eec2b" + }, + { + "table_fee_log_id": 3032596136610949, + "ods_hash": "b7050d384a4ce121ba97b0cfac486410", + "dwd_hash": "388ce6c6015247a754ceed73789be46a" + }, + { + "table_fee_log_id": 3032596384910405, + "ods_hash": "2d87b3318b7c3dc3ccc9434b56c01c0c", + "dwd_hash": "d0788f984875f2aa1f53c9d4958b2235" + }, + { + "table_fee_log_id": 3032598310341701, + "ods_hash": "d43d0f08ab8f0ef700ef0e8c1a3d1e29", + "dwd_hash": "edac5b654d04227d4128541b8c4b36a9" + }, + { + "table_fee_log_id": 3032600070311045, + "ods_hash": "f24ca3448c64293b317e5f375bf7cdf1", + "dwd_hash": "f255f4e067cf7754d9f12c7f0e664ae4" + }, + { + "table_fee_log_id": 3032601787796549, + "ods_hash": "1f8fcda24ead52c1bf3d8840e57830e3", + "dwd_hash": "6a47aa474e11434c0062aca37dd2e381" + }, + { + "table_fee_log_id": 3032603778223173, + "ods_hash": "49670be5aade3987ab50baab457ca59a", + "dwd_hash": "5bf9b72b1d81cd789beba2c8613e1912" + }, + { + "table_fee_log_id": 3032608238963845, + "ods_hash": "1070364996f7c22ddfb76aa427af5927", + "dwd_hash": "7f55a88ced1b05b280546c56d080fa2e" + }, + { + "table_fee_log_id": 3032608727223429, + "ods_hash": "21b2b472e1152b31441ad0697a96ccbd", + "dwd_hash": "648bb9589543c7d98c6b4c075a3987a4" + }, + { + "table_fee_log_id": 3032626777984133, + "ods_hash": "62813b542d701218de0b95b7429979c4", + "dwd_hash": "dc6e0a46732f5b3779ab94d1de3cde5b" + }, + { + "table_fee_log_id": 3032632194124613, + "ods_hash": "679988e002f47bd79a713581aa13d290", + "dwd_hash": "e34d37ff20bdab4a671e331137cd45d1" + }, + { + "table_fee_log_id": 3032632254565509, + "ods_hash": "31dd30a4d771bde5f52bdcd9b638798d", + "dwd_hash": "fbfe553fe78d8cc98fa0f40b0efffda8" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_log_ex", + "ods_table": "billiards_ods.table_fee_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 18618, + "ods": 18951, + "diff": -333 + }, + "amounts": [ + { + "column": "fee_total", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "mgmt_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "used_card_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 18618, + "mismatch_samples": [ + { + "table_fee_log_id": 2800050345363077, + "ods_hash": "47ce626b250aef81e02b41114d24a4c1", + "dwd_hash": "38672ade980b6241840806920c41f415" + }, + { + "table_fee_log_id": 2800144144582277, + "ods_hash": "136a9045d6b350c483960339f3724ced", + "dwd_hash": "8d25769acf592ba8042c8fe9efde47fb" + }, + { + "table_fee_log_id": 2800144212365957, + "ods_hash": "b9fb721997b3d99b5a77b628c955d9d6", + "dwd_hash": "51ab9da8276a4c586d3d9b5e24009306" + }, + { + "table_fee_log_id": 2800144334426757, + "ods_hash": "f655dac5adcc6e93f08aeb3fbc5eaca4", + "dwd_hash": "acc461199c027a1764bb119c2661ce7f" + }, + { + "table_fee_log_id": 2800169001878981, + "ods_hash": "1a3c02265bbba94c8c8e34733ef96efd", + "dwd_hash": "fb17863cdab37b22be4386da87739ce4" + }, + { + "table_fee_log_id": 2800169065157253, + "ods_hash": "616d9be9439c26b05e9643313ddeeb8e", + "dwd_hash": "7e84e0066add9c63ed5b0b4f06dbf240" + }, + { + "table_fee_log_id": 2800194314323909, + "ods_hash": "8f4654f10b97217039ff6fd3408225df", + "dwd_hash": "756a32e7dbdd025417d7b606856862c1" + }, + { + "table_fee_log_id": 2800229441783621, + "ods_hash": "badaf26a125cf99fc0419d535ad3a9f6", + "dwd_hash": "fa78f83711b5f7088d436c31dc467aaa" + }, + { + "table_fee_log_id": 2800239124563973, + "ods_hash": "ef7c2d7c6362910260fbe231e9c55750", + "dwd_hash": "426cdceb2dc42885f6c25f6a8c3821ff" + }, + { + "table_fee_log_id": 2800239192983557, + "ods_hash": "016a95729665967fce80d973d8dd8df7", + "dwd_hash": "f2a3c50fd0165edb429acd6e058649d6" + }, + { + "table_fee_log_id": 2800259335767877, + "ods_hash": "f3aea9164f544f4499c1f5e6c6714bdb", + "dwd_hash": "cb799571b0f5af75fc456b15c7f37785" + }, + { + "table_fee_log_id": 2800262083528709, + "ods_hash": "a0b784efb02b6acb3c15cf9d5ab08f36", + "dwd_hash": "9f2040128e8005ea8ebbf2b480b74ed9" + }, + { + "table_fee_log_id": 2800265380710277, + "ods_hash": "465e54ccee1ad29b3d89063f8159362c", + "dwd_hash": "542ead549d0626985a2460c531dfc2f4" + }, + { + "table_fee_log_id": 2800272211904389, + "ods_hash": "164c02c1180dd943b452633d3c9e9d55", + "dwd_hash": "dc86aeb9825c6df92de2a5f184ada3a1" + }, + { + "table_fee_log_id": 2800301298436101, + "ods_hash": "adc175d4b20332475e5a0ecbade27acf", + "dwd_hash": "7d5f73abf3862a3635946a0d1666ce5b" + }, + { + "table_fee_log_id": 2800317000124293, + "ods_hash": "3aee8e81e163d51d03c4b33ba275aa97", + "dwd_hash": "b37974d1ebfe1533b12b85a76977c8f3" + }, + { + "table_fee_log_id": 2800328512047045, + "ods_hash": "830da782c33a7bbdaeb13b79c91e4991", + "dwd_hash": "ba6334ae8b8ba36249ca9dfe72b3dc97" + }, + { + "table_fee_log_id": 2800348915828613, + "ods_hash": "e67e73531f604cd93cc41a768e3b20e8", + "dwd_hash": "10853107c95e4517be1d3a1740d88d17" + }, + { + "table_fee_log_id": 2800378705070149, + "ods_hash": "e15216e589ee15a3e42821c53ed44848", + "dwd_hash": "7081e18f8d35213d3c9580074c88f3a7" + }, + { + "table_fee_log_id": 2800378804275205, + "ods_hash": "216ecff62d831d46d322b95ac863a691", + "dwd_hash": "ac50479e19203a55f39ccf75101fb59d" + }, + { + "table_fee_log_id": 2800379696531397, + "ods_hash": "f88957894607a0300be5858f2b92c7b8", + "dwd_hash": "2d09487a05ee820c0aa3ebef2c5b9dee" + }, + { + "table_fee_log_id": 2800379779762245, + "ods_hash": "b8c6771e1e30d614e06cc3074b1c2e5d", + "dwd_hash": "ddadf8beeb038e2da762876c134c2f27" + }, + { + "table_fee_log_id": 2800379849459590, + "ods_hash": "c4772af62ea801aaa70712e68d50d1e9", + "dwd_hash": "ba79aae7156d5858fd32a12f37536566" + }, + { + "table_fee_log_id": 2800410254477253, + "ods_hash": "7af5b7fcf244913566ae2d50ada9671e", + "dwd_hash": "dd6ce09652767e1a6aaa31006e1cdd29" + }, + { + "table_fee_log_id": 2800420129949637, + "ods_hash": "5a7ef4cff18fe7c6b0ca2d24a59145f4", + "dwd_hash": "869124d9028f261dde371a8b0e1ca78b" + }, + { + "table_fee_log_id": 2800421760534533, + "ods_hash": "16d01d4b5ec1b37994d8beee8e23a12f", + "dwd_hash": "ad3470cf928b23a0ae63eb945dbdbce4" + }, + { + "table_fee_log_id": 2800421760550917, + "ods_hash": "f5709c5fc6250b3c35ab296cd379502e", + "dwd_hash": "102fdbad7e50a3714b40afb3cd87f833" + }, + { + "table_fee_log_id": 2800428881152069, + "ods_hash": "97602e43e9dabaf776da66ce839592a1", + "dwd_hash": "7ec605344eb3fbdbcde2aef1475cd236" + }, + { + "table_fee_log_id": 2800430752009285, + "ods_hash": "b878ad11f86a4bc9f9ba3b5c3c57ca05", + "dwd_hash": "8929a931496cc52b63b5861f2e36a6bb" + }, + { + "table_fee_log_id": 2800433691674629, + "ods_hash": "6545714780b37cd3d07dcc5a3613c115", + "dwd_hash": "7d1a2ea45c890a0c43b926f0d959907d" + }, + { + "table_fee_log_id": 2800442629179461, + "ods_hash": "c06070e67db50888d9fb1e24e616a2bb", + "dwd_hash": "5f9d5dbb1f0a1c48c5c67a8511c36b1b" + }, + { + "table_fee_log_id": 2800460253743109, + "ods_hash": "0d068392900448544fc93b53f2b189b7", + "dwd_hash": "6c735b6e7711861c12c4431f168f8548" + }, + { + "table_fee_log_id": 2800462786250693, + "ods_hash": "c6ca40121782a877111379c57499348d", + "dwd_hash": "fd8758d496a4cdee7f776354d016c380" + }, + { + "table_fee_log_id": 2800477851207685, + "ods_hash": "507b1ee4ddd65345cd7e11846c6e91e3", + "dwd_hash": "c4715c0ed2a34756cf75b9fc191b619c" + }, + { + "table_fee_log_id": 2800479196071877, + "ods_hash": "c80f08bcb7e6fb9942e50b821c1afd5e", + "dwd_hash": "f129ec3f7c96c3cc5e7c1208e1d9cb21" + }, + { + "table_fee_log_id": 2800479978391557, + "ods_hash": "2386de6219d16e2a430b6216971f1ddb", + "dwd_hash": "56c91e6fc524007e8f520bf575cdeb09" + }, + { + "table_fee_log_id": 2800486211405829, + "ods_hash": "f7569e1a80780122ce0d75d1edb0789a", + "dwd_hash": "aad50e3673f4e7b999a2d7e13833528d" + }, + { + "table_fee_log_id": 2800486385715269, + "ods_hash": "f4a7d5d399e19ca0d515c8af976d0b12", + "dwd_hash": "c08df4c2f2bb4ccf4c2180c47d1d2db3" + }, + { + "table_fee_log_id": 2800488017709061, + "ods_hash": "05074b545fe665407bf0a72d5d7498fa", + "dwd_hash": "90b82da599eed200ecf4289ac882747a" + }, + { + "table_fee_log_id": 2800488101906373, + "ods_hash": "e33a7cdf7879e2174d05b14fa86a5692", + "dwd_hash": "3c6e3a52c7ccaf065cc38e7309093ad4" + }, + { + "table_fee_log_id": 2800489992832965, + "ods_hash": "7c6a54089430f76a9a777814ca7dde20", + "dwd_hash": "9abf78df9e6c0f51df5f34b551ea2356" + }, + { + "table_fee_log_id": 2800520188495941, + "ods_hash": "802b0fbf6d182a8e73678dd7f1b2c055", + "dwd_hash": "56bc5f14d1529adc104cdc021a90eaf6" + }, + { + "table_fee_log_id": 2800524097538053, + "ods_hash": "ed88809a14fe10522385c4735f4049da", + "dwd_hash": "8efb6a6db5717ef778367eaae4cf7bca" + }, + { + "table_fee_log_id": 2800526171457541, + "ods_hash": "e1b5e73435f0f28836ffe66e45b51ed3", + "dwd_hash": "f66f0133d83624d8e366fc08f03682b2" + }, + { + "table_fee_log_id": 2800526171473925, + "ods_hash": "a2e932fdd6b2a725db64031033a400b8", + "dwd_hash": "baede70388e816a33facc59d7be6a8b4" + }, + { + "table_fee_log_id": 2800531896108997, + "ods_hash": "67bf1e085aa4f79300941d8112921b57", + "dwd_hash": "adebb08dbcd049ad8b0292d5e1d605f5" + }, + { + "table_fee_log_id": 2800542169483205, + "ods_hash": "001dd13e1e5852c2032acfe18ed018dd", + "dwd_hash": "b33fe8b0921f09a153dd762d1184a972" + }, + { + "table_fee_log_id": 2800565625866245, + "ods_hash": "487894d7532ed63578cac8cf29f68dde", + "dwd_hash": "361932c0b88e9bfaca492232bc929843" + }, + { + "table_fee_log_id": 2800565739636805, + "ods_hash": "5d6a52d59ae33ad29336508e69d29870", + "dwd_hash": "ecf57b570f9a06f88ec3976b2b839e07" + }, + { + "table_fee_log_id": 2800569032705925, + "ods_hash": "725983246f1149fbf516e5069853e604", + "dwd_hash": "a1a734aac91c36377c2620f18ee6ab9d" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [ + { + "column": "ledger_amount", + "dwd_sum": 334347.43, + "ods_sum": 349113.46, + "diff": -14766.030000000028 + } + ], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "7ce2d6d66d5dc2e0b9d51d0b6adbd2aa", + "dwd_hash": "832a33580bf287ab01e77d5b67d5f6b0" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "40c82f58503546ae308955e63b8062de", + "dwd_hash": "6500f879c5f4046789060378005e1cde" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "4a441625678ad50f1522af395838262e", + "dwd_hash": "40751ee89b22668e955c882adfda4b5c" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "80108dbed450bdc34ebf4985e39f545d", + "dwd_hash": "034693ebade908b5b0a2c690433a5a2b" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "52dc8859f828b0855e2a551b476c7fd9", + "dwd_hash": "f5763afc7c39986d3ee62962ba379f96" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "602e802e6f9b05d6123b315715fea93e", + "dwd_hash": "fa601a7e414946bf31a21d1480bda326" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "cdb048876ca30a4cfa6868126fac1340", + "dwd_hash": "85a4c5a0a725da7f10eedb29cc8e0334" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f612cf48ce594eea51ef3d5a3e9c301b", + "dwd_hash": "de055594d98238c00b7f4e43b77512eb" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f78c4c1ff6955a531d7f1ec863416963", + "dwd_hash": "fe4e273fe1f3a14f10244df0847d8bbd" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "1f29584e1375acfd83935870f1bf2e07", + "dwd_hash": "cd2f8a44338fe00de9bf47d0577d3b73" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "fdb6d69f3ba1ff45467249b6816c9127", + "dwd_hash": "afc9e50ea1a37abb912207b921a654f2" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "309daefc3c358dc7aafa393d00cc49b3", + "dwd_hash": "5a8547815b5b1cf74995c8982c083c22" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "62c67b6b13f8bc6449ced05113507a39", + "dwd_hash": "b3fbf383c768353f592a8f9c915d5de7" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "b5470881813e190bc8353082a3bd83a5", + "dwd_hash": "cc306e0fa329586d194d34e35a28ebbf" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "8e5c5de8ec0924c0a7ef36194905f8ef", + "dwd_hash": "ee0948f9a28e382bef5b29c231afe555" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "a4841562c846266fd1c57838542fa0f3", + "dwd_hash": "24654d6046a1116afbde95ede1caf6ab" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f33a4ccd9cb88c9f740d28cbcbb80e53", + "dwd_hash": "faffe5b110689337bb8cca805ef55b52" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "056962c198518f282e06b01ecfde69ab", + "dwd_hash": "582a0f6382c9382dcb792d1605a8f3e9" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "82aacecabf0a82779842887979946e85", + "dwd_hash": "7943fcf3dfbb99287c94035a5a7cc924" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "78cbe372ec302661099b40da6aa97aba", + "dwd_hash": "47780e2ee4616eb035644e79c06f13c0" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "1009fa765e1febae65defa47932b0d52", + "dwd_hash": "127896dc74aac46e4ddfe89d302e63f8" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "062d351f9a426d938528100e83f5ddd7", + "dwd_hash": "443f21c06e37de4b6cd70c9986677fe9" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "c9fd03849f7eb9e32688266535b0df4c", + "dwd_hash": "ec638951722b3924dd3522a669ba3093" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "d2b196faa4cbfffba1f3ed03b7fa9f6d", + "dwd_hash": "59bc1948976028bf2c0d82eacaf09895" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "6d0aa054cdd3ca4dc573f390310eabc1", + "dwd_hash": "08836968ec4c83cbaf2671adeb02dc6b" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "4ce46d0e14169b19cdbc54b7c43003af", + "dwd_hash": "033fdcbe0fec06a95b00846a4e65fc28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "726ba7d60cbc08f386130ba9325ba8d7", + "dwd_hash": "a45d01a3b05bb635abd3e7f4fabe892f" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "91f8016239868f640217778dd2c696fe", + "dwd_hash": "3dd4b64260cff013282cf2c4782d8cc3" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "52a1cae89e96710f9581eff0db4df617", + "dwd_hash": "2a76f4b465eaad31a6d791317a67938e" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "5f63f4def7021cf549b8424646a1ea8f", + "dwd_hash": "388553fc3d4b9e84581517d64a9d2fe3" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "2bd1b2981ed7b1163248601536b6db6a", + "dwd_hash": "9a4069cf6c1f2629c6301a4b46cd3966" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "2ff87542bd2a0078920e8d823350f0f0", + "dwd_hash": "45e2441999c431746420cbd195a9a93e" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "813c665f5f7beca488d998fd523f55ad", + "dwd_hash": "521875c5f5336eea973764667749a4cb" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "a57a704b660f7ab109a5ff8fd76648bc", + "dwd_hash": "2947a65d3f000c9b6705e698944575e0" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "91cbe0fc2a9e686d8f809f5e4cfcb665", + "dwd_hash": "bc1cd39bdb142528f9d14707f1048a32" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "6df20e5867d98bfc683471c0820825f7", + "dwd_hash": "4fd1d241b33a00b88ebd8cda18379377" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "c4ec71958e6ad1559959ae6833d01dfe", + "dwd_hash": "583571e114f9fee29eec698bded72e37" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "ddac22a3aab7a9b0ccb5641f48a2e08f", + "dwd_hash": "abb9af232663e6a6b7a9743c81586128" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "5751bdbf8a61c5acf391aa1758a67d34", + "dwd_hash": "99af713c44d7f5d009a334732ee6c765" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "6d20e2a598fe72f9422c469e321cb812", + "dwd_hash": "d129d527d90867be29c635890b0c72da" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "d4a44fc025ec328b355b6df8ec5238ce", + "dwd_hash": "fe52d82a449191416515ef1b81ea730f" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "33d57ae9e77239f96fb4b7c34629cfa7", + "dwd_hash": "ed8cfb951e43b26509a279b6e8aa60e4" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "9e7e67907c2e83352c72ace760a03c1b", + "dwd_hash": "1995db2f86e725571a031a5bfc09f9e6" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "d56646fc379a005caf426a0d80ce2252", + "dwd_hash": "21c12c15597e8750c2286a0d6ca0b19e" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "e8fec15703f98ee080f2db5bcb4da0f0", + "dwd_hash": "9d4a388e322bc48934d496ebf3d9a72e" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "036500cea7376f1aa8d73c3fb3149d98", + "dwd_hash": "7bfef906ca79bc59e1cabb67312c0fbe" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "2fa825b8a4ee9879ceae0000c372b6a4", + "dwd_hash": "2199feb05cb530006b11028452523c7f" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "1824ba40dc33f39c7bddb6ad3f4c8c61", + "dwd_hash": "403560afc9c23cf9558c32ae3530a9d8" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "bdbab81356d037b611561cb1211e16d6", + "dwd_hash": "0a7dc623b3429f374c08b42432082eac" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "814d549e24af4845f4ac0dce0b89f153", + "dwd_hash": "ba485749618c1d998e2c0bb6af5279fb" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_table_fee_adjust_ex", + "ods_table": "billiards_ods.table_fee_discount_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 2889, + "ods": 2948, + "diff": -59 + }, + "amounts": [], + "mismatch": 2889, + "mismatch_samples": [ + { + "table_fee_adjust_id": 2800379696809925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800421760862213, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479196448709, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800479978670085, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800486211717125, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800706253834245, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800711390840837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800770325694533, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800825635522629, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800843724834949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800876785502405, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800889951897605, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2800896786892997, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801005953304837, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801760805128261, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801783841146949, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801790309910789, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801929481078853, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2801967422589189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802022786484485, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802053355587653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802054934628549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802075486898373, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906217349, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906266501, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906315653, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906397573, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802093906446725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802163714017541, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802278049646661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802280012680389, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004449925, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802327004499077, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802363812186181, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802365271018693, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802368170134725, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802399883036741, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2802534808143941, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803270381127749, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803405096963269, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803448049797189, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020213509, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803523020262661, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803525167892549, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803556074342469, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803564671732933, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803648600329413, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803669730823365, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803701662108869, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + }, + { + "table_fee_adjust_id": 2803712975703301, + "ods_hash": "f083d4ada814a00a5c71b9b18c05e923", + "dwd_hash": "590215a8afbc4c47cabb5f010977fa28" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 0, + "ods": 0, + "diff": 0 + }, + "amounts": [ + { + "column": "cost_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "real_goods_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_store_goods_sale_ex", + "ods_table": "billiards_ods.store_goods_sales_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17563, + "ods": 17563, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "discount_money", + "dwd_sum": 21673.2, + "ods_sum": 21673.2, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_coupon_deduct_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "option_member_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "point_discount_money_cost", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "push_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 785, + "ods": 785, + "diff": 0 + }, + "amounts": [ + { + "column": "coupon_deduct_money", + "dwd_sum": 381.93, + "ods_sum": 381.93, + "diff": 0.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 243794.62, + "ods_sum": 243794.62, + "diff": 0.0 + } + ], + "mismatch": 785, + "mismatch_samples": [ + { + "assistant_service_id": 3072782522025349, + "ods_hash": "92f8f06d89cc9322d212d3d50974b360", + "dwd_hash": "316b22f5e68437e0d7f8d300671ef151" + }, + { + "assistant_service_id": 3072782521533829, + "ods_hash": "66901ec2f4b92840451f2f6f9d61020a", + "dwd_hash": "c0491e8d81b501bf79bed96458c563a7" + }, + { + "assistant_service_id": 3072782521058693, + "ods_hash": "55b9117781bba609f4d9888c1dee842f", + "dwd_hash": "d548c2ab92071ab35c49cf56784ec482" + }, + { + "assistant_service_id": 3072782520583557, + "ods_hash": "359a923faef8ec60105e0f8741f55760", + "dwd_hash": "96672c8307fbcbbd721d792a991fc6b3" + }, + { + "assistant_service_id": 3072782520124805, + "ods_hash": "3605f2f624907b4323b1e911fe7246db", + "dwd_hash": "5724574df530e1d93386130b30ee5ef7" + }, + { + "assistant_service_id": 3072766253548933, + "ods_hash": "8243195bfa3783ee71e427576576d447", + "dwd_hash": "922321181db892235577a0b8a6a057c9" + }, + { + "assistant_service_id": 3072766253090181, + "ods_hash": "ff8b0ad981fd655db2e0a25cef5f0c8f", + "dwd_hash": "253d5631805e20ca380e9d071ef48898" + }, + { + "assistant_service_id": 3072754586699205, + "ods_hash": "55f03025313406489a6595ecb2dc3cc8", + "dwd_hash": "59770428de21b65dbab7abd2865326eb" + }, + { + "assistant_service_id": 3072754586060229, + "ods_hash": "c60a17f3f6ece99faf245c2ce0e94d33", + "dwd_hash": "3f84ce96d4f2648ee4bde6a7e0eeec03" + }, + { + "assistant_service_id": 3072748095505989, + "ods_hash": "ca4701a4bdf7e775db4150c674a97f89", + "dwd_hash": "6ddbf9bf862e4096b3c4cebc1b311f79" + }, + { + "assistant_service_id": 3072705243612805, + "ods_hash": "98729c30befc9d25a0d9db4127fea3fa", + "dwd_hash": "0a32f6a974b81d5a3279340c34520041" + }, + { + "assistant_service_id": 3072705243154053, + "ods_hash": "97be4a8e5a6b384759daf4b39ca984bd", + "dwd_hash": "0905c290a3c88c225992445730476d36" + }, + { + "assistant_service_id": 3072705242711685, + "ods_hash": "df7dfbceb4caac3eaedc20d7581abd22", + "dwd_hash": "1ddbf8261afb7ad1059439ede2465c7f" + }, + { + "assistant_service_id": 3072683521443461, + "ods_hash": "49f71c326f60b7ff388ab1aceebb1703", + "dwd_hash": "edab1bae23022d463eb4a34eb26ac895" + }, + { + "assistant_service_id": 3072672975783493, + "ods_hash": "142812e473c1f54c9443ae3660a2f16e", + "dwd_hash": "0b2d6795336fb755653b30b21f0fef3d" + }, + { + "assistant_service_id": 3072608047695493, + "ods_hash": "b40a9f96136f018ec9645675e768d24e", + "dwd_hash": "74bdcb5aa042c257e8210f55bfe4a5fa" + }, + { + "assistant_service_id": 3031647113857925, + "ods_hash": "f1e2708a2721e0cbdf787d4fceadd0b6", + "dwd_hash": "a423b576523a3c113543a15f7b218800" + }, + { + "assistant_service_id": 3032586921134981, + "ods_hash": "07ed88b395961692bd926998a3e266b9", + "dwd_hash": "6699701f52c5d1ca67f6dda0e6ee1fc1" + }, + { + "assistant_service_id": 3032616943061893, + "ods_hash": "d4a8b03fa531699e10265dda59fc25be", + "dwd_hash": "e5e309b1013c41988c91c1666557bff2" + }, + { + "assistant_service_id": 3032705702579333, + "ods_hash": "443587ba69ca2a2c6c1faac7780b4444", + "dwd_hash": "99ea9a0c241f2a7a9b99cf059b181552" + }, + { + "assistant_service_id": 3032752214559813, + "ods_hash": "5d2866baafed012becdc480a30f38174", + "dwd_hash": "38bd6219def38a363ec9e54e1085661d" + }, + { + "assistant_service_id": 3032784447064903, + "ods_hash": "78dfa9a8c3a5de6e97990feaa01807b3", + "dwd_hash": "83ee47c42c466f3425565f7e5f5329ef" + }, + { + "assistant_service_id": 3032784934783877, + "ods_hash": "d00943612933a43919471188eee78d0e", + "dwd_hash": "ffd2c8154de7a52cea4c9affa5b115b1" + }, + { + "assistant_service_id": 3032800838175557, + "ods_hash": "ea8d15f56368eeb3493eb24ec52872a9", + "dwd_hash": "3b76e4d4371bcf7b3e08c49702e5d741" + }, + { + "assistant_service_id": 3032832541150085, + "ods_hash": "2b22c461eca2a6aaebc2daa4524998ee", + "dwd_hash": "c02adff2d044f371fdd1bf12bd7bb19a" + }, + { + "assistant_service_id": 3032961529236613, + "ods_hash": "80dc15fb09dfdeb7a88854872839798a", + "dwd_hash": "a49478f3e9bd4b78021a59e24adbb177" + }, + { + "assistant_service_id": 3032984261888837, + "ods_hash": "8f704fa75e381e4a043f259734da1e93", + "dwd_hash": "72acc8ba05ff710d06d0177f9259483a" + }, + { + "assistant_service_id": 3032992040815685, + "ods_hash": "ce8bac9f066e7f82732538f4e1fd4ecd", + "dwd_hash": "29c49eaf8316feea66b7b44759d09120" + }, + { + "assistant_service_id": 3032992041225285, + "ods_hash": "4099b129c64e77be22d4c2c61bb8ca99", + "dwd_hash": "7268c5900ab95f7bfe895a9f6cd583f2" + }, + { + "assistant_service_id": 3033035276454789, + "ods_hash": "ff65bf56b437ce80e65ab2d1a6d53b1d", + "dwd_hash": "d1df8cb1d17734f9be975fcf5626ce9f" + }, + { + "assistant_service_id": 3033036460723333, + "ods_hash": "e362e387b89d2efa318a61f99be26bb5", + "dwd_hash": "7f79310e014d395fc6997dc4eeea43bc" + }, + { + "assistant_service_id": 3033059689581637, + "ods_hash": "ebdc5c0eb80b916238094361289bcd39", + "dwd_hash": "fac55aa6b96da1559d71bebea6fb3032" + }, + { + "assistant_service_id": 3033075316296837, + "ods_hash": "dcbdcf3566b5260dd29aad560297861e", + "dwd_hash": "2c1f11ffc297623876456d13f73ada53" + }, + { + "assistant_service_id": 3033151343856773, + "ods_hash": "7743bf02b82869664d88cea5deb6b582", + "dwd_hash": "93fa71d80c10fa11d888e94232188db3" + }, + { + "assistant_service_id": 3033151344282757, + "ods_hash": "0a63c5dddef0f9bf784d6e2edf81d8cb", + "dwd_hash": "a3e04d9c82481709d50b2c4bf59d0b4b" + }, + { + "assistant_service_id": 3033153312410501, + "ods_hash": "babb12eb3e1181b18c8f753f2eb1a127", + "dwd_hash": "03edd8e8df9423f6086f2143e27ff753" + }, + { + "assistant_service_id": 3033216557583493, + "ods_hash": "fe0f61fc86f86ed1a33ca244bed02116", + "dwd_hash": "9438baf7cd03531f45364736cf4ab7cc" + }, + { + "assistant_service_id": 3033216557993093, + "ods_hash": "2cd528edd393f80fd2b1128816261118", + "dwd_hash": "cd07f215eff345fc5630d797e5b9f4ac" + }, + { + "assistant_service_id": 3033994724952965, + "ods_hash": "ff4e832664a85097c72fa71ce096f7bc", + "dwd_hash": "ea50c10d2677936165a3eb14d3f98d42" + }, + { + "assistant_service_id": 3034136732207941, + "ods_hash": "facaefd5fca52ab13f05609dcb85106d", + "dwd_hash": "e85ee9ec0a91d5a0e49990a605cc3e0d" + }, + { + "assistant_service_id": 3034136732617541, + "ods_hash": "f89451d15afcc2365cd117e98b30b428", + "dwd_hash": "a88b976225db0e23954f30df51bb2007" + }, + { + "assistant_service_id": 3034167772171077, + "ods_hash": "2974a41e96ec9af5136e76762e10e639", + "dwd_hash": "8b06b19007d66b3e91fca4b9e599fce0" + }, + { + "assistant_service_id": 3034293330824325, + "ods_hash": "cd643ef9dec95959162d0048753422d3", + "dwd_hash": "3b26bcee0e10f6986d05372d53c7d7c9" + }, + { + "assistant_service_id": 3034301979495301, + "ods_hash": "c6254f9287a35d97e91fa7907fcb8f9b", + "dwd_hash": "49d30627dacf878b8883677a4404f283" + }, + { + "assistant_service_id": 3034387344018309, + "ods_hash": "b70c152f2ecb0b91e8e9f54546dbc7e4", + "dwd_hash": "0f53a11b08e0f1ca83d2d7d71cf421e7" + }, + { + "assistant_service_id": 3034392506305605, + "ods_hash": "0a020086563807ddfe0674dd41a3ae5e", + "dwd_hash": "c222dc096d1c6164c8c406e350205d80" + }, + { + "assistant_service_id": 3034424323247173, + "ods_hash": "6a041f02ecc8dee729d1b027fc8ef152", + "dwd_hash": "fa51ab5608179291a794a46ef0b3c283" + }, + { + "assistant_service_id": 3034503749291141, + "ods_hash": "df5cf4fa828c4cc2fffcc34b3bc2737a", + "dwd_hash": "db3c2cf3d19a05c1b2d3caf65f2505d0" + }, + { + "assistant_service_id": 3034510282181445, + "ods_hash": "64f62a918461b99d43a2cbdae7621982", + "dwd_hash": "370fda095843f99ab3f6ca813a1c4129" + }, + { + "assistant_service_id": 3034510282607429, + "ods_hash": "c60aca8533cdb010a0c5472e501d984f", + "dwd_hash": "a2d867835186af109e0339b744c0224b" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_service_log_ex", + "ods_table": "billiards_ods.assistant_service_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 5050, + "ods": 5081, + "diff": -31 + }, + "amounts": [ + { + "column": "manual_discount_amount", + "dwd_sum": 414.17, + "ods_sum": 414.17, + "diff": 0.0 + }, + { + "column": "member_discount_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "service_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 5050, + "mismatch_samples": [ + { + "assistant_service_id": 2800311971268549, + "ods_hash": "fe36621f6570a296c3e26f2aa565d29a", + "dwd_hash": "690bb89865a22799ce4f5ecad6c8522a" + }, + { + "assistant_service_id": 2800464769091525, + "ods_hash": "ec841097507660af2c2049d22b3f9791", + "dwd_hash": "ae4a1dc2e5e39cfab525df10bd4d34b7" + }, + { + "assistant_service_id": 2800524097669125, + "ods_hash": "1deb68b6c3e5cf52590d8c689a839d96", + "dwd_hash": "365325fe3e1c5bbfca02f566715c49eb" + }, + { + "assistant_service_id": 2800770325219397, + "ods_hash": "7365f19af578aa318a401c6f8b43d995", + "dwd_hash": "0a2664633b9b2394a48722e6a966d578" + }, + { + "assistant_service_id": 2800772217931845, + "ods_hash": "913e870648ed15c791c4ddcd5b0192d5", + "dwd_hash": "841e2c6625ae7737c77bd017bf25a966" + }, + { + "assistant_service_id": 2800772218161221, + "ods_hash": "773ef83a0e5dbd473173d96135e32476", + "dwd_hash": "b4abc7019e2b64896821a6e4aa3e7f32" + }, + { + "assistant_service_id": 2800772218390597, + "ods_hash": "9a250d7f507279cdd3443b2cb0605e8a", + "dwd_hash": "4cf2d67f530f618ee902923d10ef0be3" + }, + { + "assistant_service_id": 2800772218619973, + "ods_hash": "964f1528de5b9fa42c424e11fd64cc99", + "dwd_hash": "5410137b214b09e9aa401a859bd92b69" + }, + { + "assistant_service_id": 2800772218849349, + "ods_hash": "7a0eb9b32afedba7ccb7789cc2ee829f", + "dwd_hash": "45a144f045f01c52329e06d19e5a0045" + }, + { + "assistant_service_id": 2800825635047493, + "ods_hash": "994dc219037df24d6ee8c97a14cf986b", + "dwd_hash": "188ea3b0284ebfd9d641918bfa9bf75c" + }, + { + "assistant_service_id": 2800843723868293, + "ods_hash": "343407bb90d5c34dc6919d440d765b2d", + "dwd_hash": "3dd7f844988be4895247ad5bf94cefff" + }, + { + "assistant_service_id": 2800843724359813, + "ods_hash": "dfa806ddb102a82dd97f808fc49351b5", + "dwd_hash": "d8bc9a8fcef10c60744911be21e884c6" + }, + { + "assistant_service_id": 2800864103942341, + "ods_hash": "130588d0bf03272efbe25316f2974031", + "dwd_hash": "bc8ce8c1681bc96bb49662c6ff3a80d5" + }, + { + "assistant_service_id": 2800889950226437, + "ods_hash": "57d79050902ad1e484e99be219459f70", + "dwd_hash": "baefdc55356661621a07ec9f11e53f71" + }, + { + "assistant_service_id": 2800889950455813, + "ods_hash": "c53b6b571c3c9ba45801cdb4ae2ab7b1", + "dwd_hash": "7d8883b2300a12df7b5192bb02cf924e" + }, + { + "assistant_service_id": 2800889950685189, + "ods_hash": "b0c2bf723ea1d8213b652d53b2e783a9", + "dwd_hash": "5e38bd233f265002c0671264fe1e1316" + }, + { + "assistant_service_id": 2800889950898181, + "ods_hash": "90d02c53466f070d12571c6fc56b578a", + "dwd_hash": "d4c8bc189ff9b01ba93417d40301227e" + }, + { + "assistant_service_id": 2800890473597125, + "ods_hash": "c0dc511009354fcd87425d32a6116180", + "dwd_hash": "96456f1c3e8c3b410b47d4432e14db3c" + }, + { + "assistant_service_id": 2800955647002693, + "ods_hash": "8fe5e3525d56c8edb04017c283a59201", + "dwd_hash": "53804b7b5c439c9e0cf0e11de43c8bdd" + }, + { + "assistant_service_id": 2801005951912197, + "ods_hash": "3e2fe2c5663c8b47f4440872d5d6ccf1", + "dwd_hash": "cc52f3c8d7198b39c7dba04a5577b897" + }, + { + "assistant_service_id": 2801005952141573, + "ods_hash": "e1a19fde396de07fa38ff71497d4f7d8", + "dwd_hash": "e1628def4f068831b116758e6361399e" + }, + { + "assistant_service_id": 2801005952354565, + "ods_hash": "bc8c68d8b4c8b71d84a107493aec8317", + "dwd_hash": "1cb8fd25f87f08c9a340f6e83bf18052" + }, + { + "assistant_service_id": 2801005952567557, + "ods_hash": "d9b5740e4da818a12c4b7ec3e829be1e", + "dwd_hash": "5fae6887d30bab22ceafda4119cdeeca" + }, + { + "assistant_service_id": 2801005952796933, + "ods_hash": "09a2edef9eab4cc1d3daea3c6fb95602", + "dwd_hash": "0eb479185918ea93c2383907a8a66441" + }, + { + "assistant_service_id": 2801034757752901, + "ods_hash": "ed495e6af83c8eba2851a2d4a9abd3a5", + "dwd_hash": "849ca6cc2d9f7a8ebc464e688f2cdd50" + }, + { + "assistant_service_id": 2801731033909509, + "ods_hash": "102c18cfad0a6fd88c2823b90f68f4f4", + "dwd_hash": "05c8dc33224ab9c8b44a16e561b9ea0f" + }, + { + "assistant_service_id": 2801857536854213, + "ods_hash": "052722aa64bb7e2a21b5ce2e55394421", + "dwd_hash": "be248a75a214f32935c9cbfbe308db8c" + }, + { + "assistant_service_id": 2801871998060805, + "ods_hash": "d9a88de124257b11e4768de6a41d44b9", + "dwd_hash": "82e6d02f3721d867e4225becefd1d52e" + }, + { + "assistant_service_id": 2801878221768773, + "ods_hash": "ec7fc4d5f54255aea3f3aa43c3f2ae72", + "dwd_hash": "c1264a9e612c51e361c2b9fbe811b114" + }, + { + "assistant_service_id": 2801880522705157, + "ods_hash": "a50d3a4df9548029fbc6a1a1bab96a52", + "dwd_hash": "c113962e0643d3d1f4097e706937aa55" + }, + { + "assistant_service_id": 2801967422032133, + "ods_hash": "9c0546322fac768ef27004854eba6810", + "dwd_hash": "1bbd57981d1d39ae12c66d1779d565f4" + }, + { + "assistant_service_id": 2801986785806533, + "ods_hash": "14734317668d26465d6635b6975704b0", + "dwd_hash": "b5cd1beba3ece4b23f4fec92750d3e68" + }, + { + "assistant_service_id": 2802022786009349, + "ods_hash": "098f0ba69cc142d5a1494ab0dddcacb3", + "dwd_hash": "605073b30b680539f3fa851b54e2b1ab" + }, + { + "assistant_service_id": 2802057516501253, + "ods_hash": "829e53d629e35a631e75092682a7e983", + "dwd_hash": "c009f6787e1ad1acf4d09c552bde3a9a" + }, + { + "assistant_service_id": 2802067209062469, + "ods_hash": "e4df0c1da0a12a12959ce4f022762f4f", + "dwd_hash": "e61072581a8bb91315bc9335be677fd7" + }, + { + "assistant_service_id": 2802067209291845, + "ods_hash": "4db4293e655b1fd41edda6e0a7b66318", + "dwd_hash": "a23e2b3514a22623d563efe2a3b37370" + }, + { + "assistant_service_id": 2802116511680901, + "ods_hash": "22a1879a1eb48f31d4073d81a6e0b581", + "dwd_hash": "e91dee3ad07c491c34fc699cf84f015e" + }, + { + "assistant_service_id": 2802116511910277, + "ods_hash": "3b2c7482716c5fe8eed600c49afddbf6", + "dwd_hash": "a6a8695e52ce2b3b02dccd096154341d" + }, + { + "assistant_service_id": 2802122102753669, + "ods_hash": "d7da09df55067d6355912633074f5eaf", + "dwd_hash": "0cf34adad2a5fb68ae783030dbbdfb4a" + }, + { + "assistant_service_id": 2802145474185477, + "ods_hash": "9f2c58fcdfca48f4f96ff53bab5649fe", + "dwd_hash": "ca49b54ee6fb3e640f1a87a316246699" + }, + { + "assistant_service_id": 2802163712411909, + "ods_hash": "2f9f5aaa18554d14f2ff8fef4e98eabd", + "dwd_hash": "62754fb16bf6a8262b1a1b2447436fc9" + }, + { + "assistant_service_id": 2802163712641285, + "ods_hash": "b98f0ce8a688cce15795d9632ced008f", + "dwd_hash": "fcfe813db0dfb34347ea17ef205ae130" + }, + { + "assistant_service_id": 2802163712919813, + "ods_hash": "574f9ca2de4284ab91a7750b2a4d584e", + "dwd_hash": "794b81c1afd5643e568fe9fe5dc56971" + }, + { + "assistant_service_id": 2802163713165573, + "ods_hash": "d72581de46f6ec86e11746776700ecf2", + "dwd_hash": "bc2bb3718d33f4c56407ffcec21b58a2" + }, + { + "assistant_service_id": 2802163713394949, + "ods_hash": "41b980d15e06b054d2dc21b5e41e48aa", + "dwd_hash": "69c0cc32103a310e9ec1236355556dd2" + }, + { + "assistant_service_id": 2802173013723525, + "ods_hash": "f84df7c99f06b6a812382d086c443f0f", + "dwd_hash": "2c4cbeabadfdddbc7c9abf9c9f41d76f" + }, + { + "assistant_service_id": 2802237353527365, + "ods_hash": "fc9b40a1c9590aa6023a62f0d7fa78af", + "dwd_hash": "3cbabdfaceb2d257d75449e2b25434f4" + }, + { + "assistant_service_id": 2802246307810437, + "ods_hash": "7d7095fb140ba875b0b4aca3a29092a4", + "dwd_hash": "92f6226c3a63cfdbdad11ca5fc461d3d" + }, + { + "assistant_service_id": 2802246308056197, + "ods_hash": "3e0143f533ac01414f575286cc1f9a2f", + "dwd_hash": "25ec255442b40313b8646b42decfe5c8" + }, + { + "assistant_service_id": 2802327003925637, + "ods_hash": "a23495b8737bd1e4b401a8ad9f3ad6d8", + "dwd_hash": "99dcb3d3924e8ccd7017429f405bdbf1" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 99, + "mismatch_samples": [ + { + "assistant_trash_event_id": 2979152118564997, + "ods_hash": "10847649cdf60fb423ee0dab3652f593", + "dwd_hash": "2ce63688b52a11ab216b5a20259d62c8" + }, + { + "assistant_trash_event_id": 2980595948766661, + "ods_hash": "e7c685006e67a7d0d3957d98ee8c2976", + "dwd_hash": "089b33f49b483f6ed1f58a7238530859" + }, + { + "assistant_trash_event_id": 2980663519594501, + "ods_hash": "44ddbd8ac38fc8b5be7c73375918e3b4", + "dwd_hash": "9cfba38b5abf8b2779885eba98a63e73" + }, + { + "assistant_trash_event_id": 2983505146384965, + "ods_hash": "4820b86814512ffe5ae77ddafa636699", + "dwd_hash": "8d1ed519cceff51fd75c6e2a8e8d3645" + }, + { + "assistant_trash_event_id": 2983505146745413, + "ods_hash": "584b03e6365f93abe490924aebbd8f44", + "dwd_hash": "e29df42167db91e25053aa7d640a7cfc" + }, + { + "assistant_trash_event_id": 2988030897195653, + "ods_hash": "f6e619140e04025fe67c3ac1cc1fce47", + "dwd_hash": "191a37f4ae04e077d671f54064af0c99" + }, + { + "assistant_trash_event_id": 2990633993343557, + "ods_hash": "0a39000d7a89b3017d741f14356b0c72", + "dwd_hash": "16321be205fe3945f62c07929355e465" + }, + { + "assistant_trash_event_id": 2990834178871877, + "ods_hash": "d6e4014f9af15d75c1cb410ccc9f38ef", + "dwd_hash": "e6fb4ec60850eecd83e39332e637ebb3" + }, + { + "assistant_trash_event_id": 2991820437967429, + "ods_hash": "222e38869053d87900274cc8e3054bea", + "dwd_hash": "76e1374595f55f6cbe6f4b3569699580" + }, + { + "assistant_trash_event_id": 2991991404466757, + "ods_hash": "80a0f06776883056677489c4ce8d55d3", + "dwd_hash": "8bc9cd42d7221150d6e4baad2e99558d" + }, + { + "assistant_trash_event_id": 2997598464608773, + "ods_hash": "b79e3bc31a0f79f3eff59cc9d7074835", + "dwd_hash": "19708e797f08c52a6dea0f4a4894a90c" + }, + { + "assistant_trash_event_id": 2997598724524613, + "ods_hash": "07ea4cce3a8bb4d47929e6c41e7a593e", + "dwd_hash": "f709fc929fec842abb7466a4b9ec1594" + }, + { + "assistant_trash_event_id": 2998795100097029, + "ods_hash": "2df2d31d51b8785971459870696a1cb7", + "dwd_hash": "d0fe0aad7608fbb7a8942e3ff589fb68" + }, + { + "assistant_trash_event_id": 3000445737830981, + "ods_hash": "80b499288980b9c795ec9daa68b6584e", + "dwd_hash": "9a7024cad4e39b9add9ec98d3232dcc8" + }, + { + "assistant_trash_event_id": 3001591407299397, + "ods_hash": "0e2e33a1a794d72f5bbf7ce3dd8e0419", + "dwd_hash": "8b99c1e2d087dab61e3e5b783a7cbe5d" + }, + { + "assistant_trash_event_id": 3001591407823685, + "ods_hash": "163b3ec0d2ab30c7e6902e61061f0dba", + "dwd_hash": "c4fee95f7df3294d23abc9f2ed346f9b" + }, + { + "assistant_trash_event_id": 3001592236264453, + "ods_hash": "ffffd0423e6ba4bf8c26a88261073c0e", + "dwd_hash": "af9340d0f4bd7674ee98ff9776880f0d" + }, + { + "assistant_trash_event_id": 3001592236641285, + "ods_hash": "74805dd225b112095c686dfab1a817b5", + "dwd_hash": "8e2b27ee100b61bcff2e3e72c94bbd7b" + }, + { + "assistant_trash_event_id": 3030103311108037, + "ods_hash": "c7dd0f9bd65a8bc93d139c9d6286c55b", + "dwd_hash": "7a30f1d0e1bd890cdff6f4dc633c4d5d" + }, + { + "assistant_trash_event_id": 3030103311501253, + "ods_hash": "ddd1d78ac5277832f0311345d7af11ba", + "dwd_hash": "c98c4c5f02fea838a8c7d0cebdaaeec4" + }, + { + "assistant_trash_event_id": 3030231223846981, + "ods_hash": "8de9ce091b5fe63481eda1df36723886", + "dwd_hash": "8632f02aa9b0f7a2af92f346f963e322" + }, + { + "assistant_trash_event_id": 3030231224371269, + "ods_hash": "dd40442d7b2e7d0b215ae57ed3b24443", + "dwd_hash": "87d7b90637f1fb215e2acb2aaac14ad9" + }, + { + "assistant_trash_event_id": 3030234610993157, + "ods_hash": "3298e571a63c3c97668291b5abf05c3b", + "dwd_hash": "891f43be7092373a73ff970901f013d3" + }, + { + "assistant_trash_event_id": 3030234611386373, + "ods_hash": "a77287a42332ab45ea88e657c37ff526", + "dwd_hash": "18f86c0e0527169d832aff9171c64d36" + }, + { + "assistant_trash_event_id": 3030234611779589, + "ods_hash": "1e0fe063e4eacda0bc91d099637a701e", + "dwd_hash": "85ebd198a6fc2bcfdfa0cb9190286485" + }, + { + "assistant_trash_event_id": 3037228553014469, + "ods_hash": "3c50ca34d4c6fda0d3038dcea8d82ddf", + "dwd_hash": "68c3012a20b1f15af23d656ee445657a" + }, + { + "assistant_trash_event_id": 3037302029585541, + "ods_hash": "2fafac5e2b2f800c36e0291e96309616", + "dwd_hash": "297c9f356fa118fda1dc1957acd87fc5" + }, + { + "assistant_trash_event_id": 3041469621225221, + "ods_hash": "e74496e10d9ae95ed4461a559cac38cb", + "dwd_hash": "6a7b6f5aecba30b9a5abb66a8634781b" + }, + { + "assistant_trash_event_id": 3041480269170565, + "ods_hash": "82e1ce51489b55a93d9136b6ad94c040", + "dwd_hash": "4e58061a1eeafabaacac81702d668851" + }, + { + "assistant_trash_event_id": 3041480269760389, + "ods_hash": "9d4b2e7a8301a79a29572684cecf5d37", + "dwd_hash": "dfdddebd7da0b17844954234c25f2093" + }, + { + "assistant_trash_event_id": 3041480270497669, + "ods_hash": "fc1dbe569a622ca8c2457a469815987d", + "dwd_hash": "7d6703c19e8f7c02e0284820baeb9c36" + }, + { + "assistant_trash_event_id": 3041542387304325, + "ods_hash": "ef3b83e3603d284cd565f7e91d76634f", + "dwd_hash": "902f38c74368489e133baabf767e3181" + }, + { + "assistant_trash_event_id": 3041542387828614, + "ods_hash": "e6377a93b95d8fef3bc78e8a0a2beda2", + "dwd_hash": "8b7f25ac917d0016ad4279fb5f462012" + }, + { + "assistant_trash_event_id": 3041542388385669, + "ods_hash": "60a571e5ae41244c51cd8b6a55e384ee", + "dwd_hash": "05950d1a1b725d288b17718b3b5e6222" + }, + { + "assistant_trash_event_id": 3041555860424581, + "ods_hash": "e05cd0176b6b38fa6fdde188abe3f51f", + "dwd_hash": "596b706a1bf16fcac92e2d375708e89a" + }, + { + "assistant_trash_event_id": 3041809077602053, + "ods_hash": "74da242f68b8d2e078ac6ffee84a4511", + "dwd_hash": "692cdbed9df03c945207a70d2c5c3160" + }, + { + "assistant_trash_event_id": 2959363180793541, + "ods_hash": "6eee23318de94442259837424ef92e6f", + "dwd_hash": "1290dea2b5cea7f3b9c32235095e1309" + }, + { + "assistant_trash_event_id": 2964115283857093, + "ods_hash": "48fd1dd5da04b6522284c7ea2380101d", + "dwd_hash": "5abd842c4af737085dd6854d33f0c46a" + }, + { + "assistant_trash_event_id": 2969416950123717, + "ods_hash": "8964a5ad3b87f736021fd14577d93960", + "dwd_hash": "8304571b73c2bddd9db7527fde1b029e" + }, + { + "assistant_trash_event_id": 2975809439713221, + "ods_hash": "26ae47c0a853c385680aa182df09a599", + "dwd_hash": "d4a3123a980f9660942ea32f1725107c" + }, + { + "assistant_trash_event_id": 3001592237018117, + "ods_hash": "c522c2fc115a415cdd2620d96cb3afe1", + "dwd_hash": "3323271bc1aff39976b1e92382568cf2" + }, + { + "assistant_trash_event_id": 3003160811246469, + "ods_hash": "e11a2756b26117d45036aefecccc9ca6", + "dwd_hash": "9f1bc9b1d1db77fd24b12c876e1805a3" + }, + { + "assistant_trash_event_id": 3003233571771077, + "ods_hash": "b42a7e1ef6150791a51157d712639276", + "dwd_hash": "c4fc50b07b8c0ae4fa6a074206a2452c" + }, + { + "assistant_trash_event_id": 3006335394924613, + "ods_hash": "9bf6ade10ed46043bd1e5d74e808b589", + "dwd_hash": "66be6e9383cdd1d9a4b29c83f51d941b" + }, + { + "assistant_trash_event_id": 3007372846598405, + "ods_hash": "8a146bc9fae0abf97684aecdd896fef5", + "dwd_hash": "8faa1d504d601f7855a1de2fac12a048" + }, + { + "assistant_trash_event_id": 3021513785477189, + "ods_hash": "d86cfbaa5bb2615a2730542669e56330", + "dwd_hash": "b4ef80d9277bdbac14c01bacfb059a6a" + }, + { + "assistant_trash_event_id": 3022560812795909, + "ods_hash": "2d6c94a69b034ea8b18610378f8fec29", + "dwd_hash": "9f472a8d281701d5f19aee1f011b15d4" + }, + { + "assistant_trash_event_id": 3042676057442181, + "ods_hash": "6f06613346e378a8fa325db9d0a5d132", + "dwd_hash": "d5da8ecc058ae7842d5c5837172b032b" + }, + { + "assistant_trash_event_id": 3042676057786245, + "ods_hash": "a719a408a578d9abe2a4721ec3a2b839", + "dwd_hash": "3fc07c3f00bb8fbaf61194accff08dbe" + }, + { + "assistant_trash_event_id": 3042676058179461, + "ods_hash": "f78a8a0f09584930221e3499e94b843d", + "dwd_hash": "80e4b5828919f00f16b3755cf6fcce52" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_assistant_trash_event_ex", + "ods_table": "billiards_ods.assistant_cancellation_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 99, + "ods": 100, + "diff": -1 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [], + "mismatch": 4802, + "mismatch_samples": [ + { + "balance_change_id": 2800328071170949, + "ods_hash": "9034c1cd33d79da3d6d251cddc3eb8ae", + "dwd_hash": "53e2e58ba11b17821d75db3267fbdb5a" + }, + { + "balance_change_id": 2800328508984197, + "ods_hash": "dc2bfeae84c77252d26ee9cedfb2df60", + "dwd_hash": "eec043444254388629df780085b3a8c9" + }, + { + "balance_change_id": 2800329356315525, + "ods_hash": "992f0527c2f39dde8ef89d003e32b7f4", + "dwd_hash": "ba8df6ed4ca863e0668ea4281109aef4" + }, + { + "balance_change_id": 2800330000272261, + "ods_hash": "76d4eae5118378bdad1438b560f66b46", + "dwd_hash": "6868e74b299e9319cff0619e7a3fdb6f" + }, + { + "balance_change_id": 2800331271129989, + "ods_hash": "5cdf6bc9c4dd8ed4aa928a6c01bcab55", + "dwd_hash": "a3efc1b6b5ae725fd38b9dd4fc613a85" + }, + { + "balance_change_id": 2800331954736005, + "ods_hash": "7d78595c2640c0d0be6c84b459f7f63f", + "dwd_hash": "d1d4796f4ef47a98c4074e350bd24309" + }, + { + "balance_change_id": 2800332515314565, + "ods_hash": "638f4ef75cafaba06e48f76c3940422b", + "dwd_hash": "54030f825ad259f187fe23e3aee361fc" + }, + { + "balance_change_id": 2800332996627333, + "ods_hash": "3fe798dedfd9d3b6ba2219e8a99dbf75", + "dwd_hash": "846de13bf33e0c9946e60b226327eae1" + }, + { + "balance_change_id": 2800333602179973, + "ods_hash": "acf651585eb042f3355dab747d1f1305", + "dwd_hash": "38be2620eeb5adf6fa39d6088eb69991" + }, + { + "balance_change_id": 2800334284934021, + "ods_hash": "ce367f279d48c37f0d065e502f0e6c32", + "dwd_hash": "834b8f434649d993db9e43b58356ff65" + }, + { + "balance_change_id": 2800335026670469, + "ods_hash": "e3cce05718b5202a15cbe420ccb88d25", + "dwd_hash": "0fb0b589995e0eb53fa30526613fedb8" + }, + { + "balance_change_id": 2800336313338757, + "ods_hash": "1f1886e7067d299a342fe0450f7e0f49", + "dwd_hash": "9f1abd98cc4ff87642d8388e5f45951c" + }, + { + "balance_change_id": 2800336793930629, + "ods_hash": "b04c28f1b6e602d8da44d011026f57c8", + "dwd_hash": "8c7a7ae9c6d99869397e027856ead299" + }, + { + "balance_change_id": 2800337681140613, + "ods_hash": "de55e6710502b1851dcfa6f588235a23", + "dwd_hash": "2dc9405c1cd02a3377d9b1fe54089923" + }, + { + "balance_change_id": 2800338335697797, + "ods_hash": "9ecf26f88f40a151ddea78d91a6e2036", + "dwd_hash": "db93c3703c3377c7e50536b35e779758" + }, + { + "balance_change_id": 2800338703584133, + "ods_hash": "1b1e79bbc33955e312b3a3025b3cbc58", + "dwd_hash": "89e5d9c031a784bd0b4166380274adb8" + }, + { + "balance_change_id": 2800343012068229, + "ods_hash": "07275047a81764b582e7686a24eda5eb", + "dwd_hash": "129b6dbc7b6fce8f39309cc9d5a61299" + }, + { + "balance_change_id": 2800348154579013, + "ods_hash": "2f2cf55cbea82e857dd63fe7e96459b4", + "dwd_hash": "d451bb6e7348dd0ea7a0c0c51f08803a" + }, + { + "balance_change_id": 2800360635942917, + "ods_hash": "1538c857717009ba8d0cfbc36c9dfc12", + "dwd_hash": "a518f3238db7f4bfb300b0770898c2bd" + }, + { + "balance_change_id": 2800392615004101, + "ods_hash": "a25f139a4b7c5e76b8aa4fb73aa04332", + "dwd_hash": "5b20234d1b8a69ac4a32a640a4d6e8da" + }, + { + "balance_change_id": 2800404348963717, + "ods_hash": "54542096785a8b5fd61dd63449140355", + "dwd_hash": "ecd1bf18d252e7b99b56071c61e7c292" + }, + { + "balance_change_id": 2800534985656325, + "ods_hash": "3a247cf987653b96eb29b58e7ce58383", + "dwd_hash": "f24ee87fc14e6f22876abf97b8d6e191" + }, + { + "balance_change_id": 2800535382460293, + "ods_hash": "21db7efe43c9ac6a9a70f918a453466d", + "dwd_hash": "c92363d2bdcaf8be1c1131d9ec7988db" + }, + { + "balance_change_id": 2800574477469765, + "ods_hash": "e99af947e24434b03c89d88b54c4750f", + "dwd_hash": "85e58c03da14b08ec1e5fc0cbd09ac58" + }, + { + "balance_change_id": 2800677354735493, + "ods_hash": "caab4bc89885127c9a173f23b9234a5c", + "dwd_hash": "c95cbd95f3868032175b426b560efc27" + }, + { + "balance_change_id": 2800706251425797, + "ods_hash": "880ecbf4fcff954b1e8f7ccd595e2a78", + "dwd_hash": "3bee38552104eb1539af7cdd37cc4552" + }, + { + "balance_change_id": 2800753410148421, + "ods_hash": "9175e3fe40d0fdb2e0ff62548b3cb30d", + "dwd_hash": "de561ea966362e00a9ba10fb0fd7ed74" + }, + { + "balance_change_id": 2800763350779909, + "ods_hash": "0f21d8dfda370593391d6c4a9b8ab0ec", + "dwd_hash": "a5c403650dc58152af72b68d1e6ee82c" + }, + { + "balance_change_id": 2800765195537413, + "ods_hash": "a3825af64ad86ba3d4c74f8fe545f74c", + "dwd_hash": "aef964c59371a594d31abbe43aef6fb2" + }, + { + "balance_change_id": 2800765804300357, + "ods_hash": "822b8a53f0ee9d33afca87b201e37c61", + "dwd_hash": "1650d2db2f8f7686a2bce01dcea8b2cf" + }, + { + "balance_change_id": 2800770322679877, + "ods_hash": "042235220e43e1b162d47ab9ad8bf713", + "dwd_hash": "c3786a45ebfcfa09fc789dbddd7a655e" + }, + { + "balance_change_id": 2800770322827333, + "ods_hash": "4a8b8ac76453434fb3ccdf2ea6aab39b", + "dwd_hash": "ae9ad87cbf3a84adbc8a30bf0c86b361" + }, + { + "balance_change_id": 2800772214982725, + "ods_hash": "462155312448c718b7c2d93dc2c3bc34", + "dwd_hash": "7117a70daaba083537cde26d7293ee6f" + }, + { + "balance_change_id": 2800772215146565, + "ods_hash": "1fbe46f44d11f131ac18de905d3f4fd3", + "dwd_hash": "086df6a020c4ff18ab6af3225f7110e8" + }, + { + "balance_change_id": 2800824059775045, + "ods_hash": "c2d78f0c7982869cf311567866249574", + "dwd_hash": "60d3860505dc1043f1c039fa31025a0b" + }, + { + "balance_change_id": 2800825633032261, + "ods_hash": "abdc4620812e6b0abf56d7b90b2d5a9f", + "dwd_hash": "7ccc1abd9cd6eb1621eaf655442bc0b9" + }, + { + "balance_change_id": 2800829539863621, + "ods_hash": "7777fc1944a3b62fac1db3831277fcb1", + "dwd_hash": "be8ff79b5f340b2bbf65cb6a472843d1" + }, + { + "balance_change_id": 2800844153292997, + "ods_hash": "b822133e0d60cf6539e3183dbc4ac980", + "dwd_hash": "bc9caa730821ac2f91dd94e4885315b4" + }, + { + "balance_change_id": 2800889946458117, + "ods_hash": "ecb1a468e549d1063343c8676df0ec19", + "dwd_hash": "7a6734d9036e31d3761d7039248e089b" + }, + { + "balance_change_id": 2801646213892485, + "ods_hash": "54704865890898decea6fd40358a762a", + "dwd_hash": "9f38585c822d801d6b28007c2d5d61db" + }, + { + "balance_change_id": 2801784546658501, + "ods_hash": "c4d3a96fd681d3529a40efcd365af1db", + "dwd_hash": "7b321f34beda87bc7e0ba645a9697f4b" + }, + { + "balance_change_id": 2801857534658757, + "ods_hash": "bd12f4aa1f66dbab22401bda8d0b5985", + "dwd_hash": "02cf00a49e983f1cdba8411cb0cc801a" + }, + { + "balance_change_id": 2801878220818501, + "ods_hash": "cb9174ad970189742bb618963875fada", + "dwd_hash": "2fc581f9d16a0e4675ad04d96daec282" + }, + { + "balance_change_id": 2801879401302405, + "ods_hash": "e795eed83f5f88250c63092187f2bacc", + "dwd_hash": "7d47cf10e72d55218dcaf84b746c7e23" + }, + { + "balance_change_id": 2801880313809989, + "ods_hash": "595b335d781c140cf40174d5c022cb7d", + "dwd_hash": "d26bba9e54610ef0175ccaf73ee0b058" + }, + { + "balance_change_id": 2801880520182021, + "ods_hash": "98632168f4e25e8e22d77747f442a6d7", + "dwd_hash": "437c3a4ec4f8af12816298a2d1acda5e" + }, + { + "balance_change_id": 2801880520345861, + "ods_hash": "ae5e5fdf78f8f62940206c91812cdbe0", + "dwd_hash": "34da0511efd582303b4afc7162fee098" + }, + { + "balance_change_id": 2801894886148357, + "ods_hash": "417dc44336a422d43321a453f4cbb971", + "dwd_hash": "5d50c5c0e6291e1cd8e4a8a75a2f714e" + }, + { + "balance_change_id": 2801947958970437, + "ods_hash": "3d2ef1222da7554ef964e00daa9efb9c", + "dwd_hash": "f094efbf03e410b6b61410d8ddb5bf56" + }, + { + "balance_change_id": 2801968103704773, + "ods_hash": "527935f4b15497c372e8c1bec66d0eaa", + "dwd_hash": "8ed1a12c04f92b785419e378b97803cc" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_member_balance_change_ex", + "ods_table": "billiards_ods.member_balance_changes", + "windowed": false, + "window_col": null, + "count": { + "dwd": 4802, + "ods": 4869, + "diff": -67 + }, + "amounts": [ + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2272, + "ods": 2349, + "diff": -77 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 150912.0, + "ods_sum": 155904.0, + "diff": -4992.0 + }, + { + "column": "ledger_amount", + "dwd_sum": 144481.47, + "ods_sum": 149206.84, + "diff": -4725.369999999995 + } + ], + "mismatch": 2272, + "mismatch_samples": [ + { + "redemption_id": 3031559794101317, + "ods_hash": "d3b6a010b5606dad4d4f591400e2de9a", + "dwd_hash": "721637552736d25012ae3438f75cb277" + }, + { + "redemption_id": 3031559794101318, + "ods_hash": "3c38dd63fb29195e2f0491ac30a216a7", + "dwd_hash": "ba9c2a2104dbdd31b3e927af5677dca6" + }, + { + "redemption_id": 3031580141112389, + "ods_hash": "2ddf2b0b14bece86caa237387ed74314", + "dwd_hash": "7a7c5c2afdeac4bee1d858f9072e4e26" + }, + { + "redemption_id": 3031580141112390, + "ods_hash": "566c4dad317e4b6537067429da758e6d", + "dwd_hash": "f17f6514d3314decc5e7d1ad817d188b" + }, + { + "redemption_id": 3031591026478149, + "ods_hash": "ae98eea0e5b63ee944f721bc7c14f031", + "dwd_hash": "b7b289faf0f54730980ee5793b025825" + }, + { + "redemption_id": 3031591026478150, + "ods_hash": "2026be819bce666e517ee4e7527800bb", + "dwd_hash": "cc84848e4793284a6e9341601b1b621a" + }, + { + "redemption_id": 3031604945914757, + "ods_hash": "e94dd06ccbf0250886d79fc0b03d90db", + "dwd_hash": "43f9acfa3890b393114c09f835af798b" + }, + { + "redemption_id": 3031646428629893, + "ods_hash": "7d9e8d149c603c3b21bf65bccdc7fde8", + "dwd_hash": "74a8a8e2294d8659e8693b719807a559" + }, + { + "redemption_id": 3031646483352645, + "ods_hash": "5ca028125cb4a43cb2fc0d22f71ecbe9", + "dwd_hash": "b8b224ca0d4bdce819147f52655dee54" + }, + { + "redemption_id": 3031653086219141, + "ods_hash": "f78c01e5c5a076b2fb02ebadf6555cff", + "dwd_hash": "24dc2a3afa400ab989be59f52d26b531" + }, + { + "redemption_id": 3031700026379141, + "ods_hash": "2e113c88276083b1211227d2953e01ca", + "dwd_hash": "ec9b7dd3a44f54576124a2a9a622bf59" + }, + { + "redemption_id": 3031742588881733, + "ods_hash": "d0d6ef61213ba3870561b30ab7cdc14a", + "dwd_hash": "4a79e4e3876e763de8765625e9ff8ed0" + }, + { + "redemption_id": 3032262315560069, + "ods_hash": "6eb9ebe384c7f511f22ade1298491ca9", + "dwd_hash": "f5681ab06b5c5a88cbaf29c7546420c7" + }, + { + "redemption_id": 3032291882159173, + "ods_hash": "11eea89b8c28480039e3b84cc1441d4e", + "dwd_hash": "66ee2cf53879da3bb5deaed40e11971a" + }, + { + "redemption_id": 3032388007038085, + "ods_hash": "88dd3531c3dbd2fa18c2e712f04e831b", + "dwd_hash": "8e86d9502f066b421cf8e4e1decd2699" + }, + { + "redemption_id": 3032388076342405, + "ods_hash": "b3135bd8e5892d044a381564eef17027", + "dwd_hash": "e7801130d8c7bf31d4c79ecf90be2072" + }, + { + "redemption_id": 3032388340599685, + "ods_hash": "3bb409664ff552e370e9cf012addf285", + "dwd_hash": "0feb620370471eadc48512f63cbbc88c" + }, + { + "redemption_id": 3032388340599686, + "ods_hash": "10c72a985d7c0c44c5715d835ea153a6", + "dwd_hash": "4b447a6794b5917f24d7311bbb955b04" + }, + { + "redemption_id": 3032390343035973, + "ods_hash": "53344df20c7a35e385fa5a06c93ae465", + "dwd_hash": "ef633f1ca14c14bc042dfd0bf33f8c2d" + }, + { + "redemption_id": 3032467841453125, + "ods_hash": "5557882541cc33349b54ffaf2d589e63", + "dwd_hash": "18c4c74d84382595a2e198f3f1a19e39" + }, + { + "redemption_id": 3032476574026821, + "ods_hash": "2ff498c6a7c3711c1c964b85d48f2736", + "dwd_hash": "811271ef5a6f3036f211b3b6df745913" + }, + { + "redemption_id": 3032476649540485, + "ods_hash": "ef1ab340e34683d101e0f44afd5e30f3", + "dwd_hash": "9637bbad93d886cd41ed1a914e71b9fc" + }, + { + "redemption_id": 3032509393685573, + "ods_hash": "498a3ea7de7dc676946c8b07f408a01f", + "dwd_hash": "168efdf7b6d212c3346f606d03029921" + }, + { + "redemption_id": 3032514937097093, + "ods_hash": "d8ac8bdbac4a2366fdde90f78b7d5ea4", + "dwd_hash": "87e560e76b5d120fc6f8b5e3a58beedb" + }, + { + "redemption_id": 3032530124278853, + "ods_hash": "6bfcbf08790d94de4a46e155695b778d", + "dwd_hash": "9b13199760f1d356799b273a72e04656" + }, + { + "redemption_id": 3032531255970885, + "ods_hash": "25c25b78c316b6c96e8965f1c68aef6d", + "dwd_hash": "0c1ecee67df45c08c450993796620cea" + }, + { + "redemption_id": 3032536349821829, + "ods_hash": "d6ae1277be5ea755a3e674052b79f0f0", + "dwd_hash": "03584f6d330d2fee4f8b333757491c5d" + }, + { + "redemption_id": 3032538555501445, + "ods_hash": "ba4c149634d6a4df59ab2d2a479c0386", + "dwd_hash": "5d0b2d23f2995e5e2e74c724987d200a" + }, + { + "redemption_id": 3032538555501446, + "ods_hash": "e34652a07055b2d16dee9d3f8391a9e3", + "dwd_hash": "88c08edba509e526942afa6b70939b83" + }, + { + "redemption_id": 3032538606079045, + "ods_hash": "3c7601a03613d754a14eecfd6624fd5b", + "dwd_hash": "fbb4d77b4ad131b62296cb93df5dd8af" + }, + { + "redemption_id": 3032538606079046, + "ods_hash": "8e9b05f74ba8161404025c3f69ae9450", + "dwd_hash": "96646945f5fdd5520d58e913fb51601c" + }, + { + "redemption_id": 3032547976235845, + "ods_hash": "392a9a62371fa368c5668d22fb765e73", + "dwd_hash": "8134b556070d15a3f82363076710290d" + }, + { + "redemption_id": 3032548021472069, + "ods_hash": "5d1f38d6101d981c80b698d72df6567e", + "dwd_hash": "f4ecd361f33185faf5b8d242319b9ea6" + }, + { + "redemption_id": 3032569594252357, + "ods_hash": "5f415838a4974346365186f4bbeac834", + "dwd_hash": "ffa85cbcf47b6a38aa48e32a9bcf4a23" + }, + { + "redemption_id": 3032569594252358, + "ods_hash": "1286e48bbdbc96517ae36bb070ce918c", + "dwd_hash": "2196f4fcfd18a563b0ab8d604bbdd999" + }, + { + "redemption_id": 3032573211348037, + "ods_hash": "8c29a5b745c650fe654f270ccf18eef9", + "dwd_hash": "79642e1b529d16223cb513f8e42cd803" + }, + { + "redemption_id": 3032573211348038, + "ods_hash": "6c88a46a34b4542305c996b5c120431a", + "dwd_hash": "9c51ffdd3fbb6b2bc3d1ac44b6024b41" + }, + { + "redemption_id": 3032573211348039, + "ods_hash": "1510c6bf52b5ee0ec3802c1e35f80703", + "dwd_hash": "5b34b18b636f227fe7857fb69e3c03b2" + }, + { + "redemption_id": 3032582393482373, + "ods_hash": "97edcb7b79d97402d26dc34cdd646bfc", + "dwd_hash": "9ccd610f2b91f312ae9525db9b4e2f53" + }, + { + "redemption_id": 3032582393482374, + "ods_hash": "e7e633368674872090a82c6b6a48d8f4", + "dwd_hash": "109d31bdcd33f2309562c9c6601ff247" + }, + { + "redemption_id": 3032582393482375, + "ods_hash": "0fc16db85a0413562c36cf52ae6f924a", + "dwd_hash": "75afa67d6887c52a32ac2d8cfabbac57" + }, + { + "redemption_id": 3032589577718853, + "ods_hash": "6b37e8ad126d96a6141685942327c395", + "dwd_hash": "7d299b9a398d61f2b7ffe07bd70c1990" + }, + { + "redemption_id": 3032591297186949, + "ods_hash": "4c6687338673be8419fd4df460e292a6", + "dwd_hash": "4da5547b6862e0a8a1daf4ba897aa6a3" + }, + { + "redemption_id": 3032596137151621, + "ods_hash": "34e8856d54b6683d6211744b886a5b65", + "dwd_hash": "1b5088e03e938f496bb5ee809a55b0dc" + }, + { + "redemption_id": 3032598310898757, + "ods_hash": "09e23717dfdef1240413acaa4a3db93d", + "dwd_hash": "c210b35a9baefa5be2fcafdc7bc33d1a" + }, + { + "redemption_id": 3032600070884485, + "ods_hash": "7a56df3ded69608ef6844c4fe8e3fa9c", + "dwd_hash": "0c54cb115a07fea8e1554418767771aa" + }, + { + "redemption_id": 3032601788353605, + "ods_hash": "90927160ac0765c4ab0e2e6088f6ed1a", + "dwd_hash": "8b76fc23a1abbe1ac16b688a4a8adbfa" + }, + { + "redemption_id": 3032601788353606, + "ods_hash": "4bf9d9bf464f26e20d3a26836e79da1f", + "dwd_hash": "c3374a683281fa884431ac0db1749786" + }, + { + "redemption_id": 3032603778796613, + "ods_hash": "837cd030444a3a506c6219b9bbcd57db", + "dwd_hash": "ae7b62ca2b432a33f6f2e87c2300b6ed" + }, + { + "redemption_id": 3032608239488133, + "ods_hash": "9ea786371c01d784c393e6f9e14905ad", + "dwd_hash": "9e514139559313d5ccf07e19ee1530e5" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_groupbuy_redemption_ex", + "ods_table": "billiards_ods.group_buy_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 11589, + "ods": 11821, + "diff": -232 + }, + "amounts": [ + { + "column": "assistant_promotion_money", + "dwd_sum": 7544.8, + "ods_sum": 7544.8, + "diff": 0.0 + }, + { + "column": "assistant_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "goods_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "recharge_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "reward_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "table_service_promotion_money", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": true, + "window_col": "create_time", + "count": { + "dwd": 2273, + "ods": 2343, + "diff": -70 + }, + "amounts": [ + { + "column": "coupon_money", + "dwd_sum": 151190.0, + "ods_sum": 155480.0, + "diff": -4290.0 + } + ], + "mismatch": 2273, + "mismatch_samples": [ + { + "platform_coupon_redemption_id": 3031566334823557, + "ods_hash": "ae5861d8c8307280630a49f3146473b0", + "dwd_hash": "da63472d135efffdbbf6b1290b065950" + }, + { + "platform_coupon_redemption_id": 3031571380046725, + "ods_hash": "f482cf8d4b638e360da0f87db09d790b", + "dwd_hash": "fb0afbb69714227d48b1307869138ceb" + }, + { + "platform_coupon_redemption_id": 3031582234463365, + "ods_hash": "883860f548576479ff4975b1a597015e", + "dwd_hash": "dd5647d92cdf02d1ea9e42e46f3aab8b" + }, + { + "platform_coupon_redemption_id": 3031592727219013, + "ods_hash": "85bca9a0b0e5c93a7f5392a99bbaa44a", + "dwd_hash": "b3888cafc63a9e7236df50cffa5eca87" + }, + { + "platform_coupon_redemption_id": 3031624320945285, + "ods_hash": "1662f56d7a5f4c46ce5b54e03b22d01c", + "dwd_hash": "1560c8035feaba295bb246fb66356895" + }, + { + "platform_coupon_redemption_id": 3032172310170437, + "ods_hash": "afad7ca4f527af3ed13e89f36900c7d6", + "dwd_hash": "c61f609f2bae185975442d6eeaa96a06" + }, + { + "platform_coupon_redemption_id": 3032178624793477, + "ods_hash": "3c88ae5df9e3d0cddf9e1c411b65a76b", + "dwd_hash": "b5e63afa912314b2ddeb5c8457cdea76" + }, + { + "platform_coupon_redemption_id": 3032178624793478, + "ods_hash": "6bde5d3ca6ec46a639e0bc27d9273386", + "dwd_hash": "2e0d69124b5329c90a1c1bcad8742e6b" + }, + { + "platform_coupon_redemption_id": 3032185400380229, + "ods_hash": "c4d42107be7dbf85de23ac1363e19aec", + "dwd_hash": "25560f4e216a24ee24ee97b941d8e1a4" + }, + { + "platform_coupon_redemption_id": 3032269820840773, + "ods_hash": "00897227ee829d4a4ea1c2b746d4e34c", + "dwd_hash": "6bcf9118c83639230c919572dfbb401d" + }, + { + "platform_coupon_redemption_id": 3032323186822277, + "ods_hash": "503f8f89b4f03a636762189bcdf043d5", + "dwd_hash": "29b7d4e4da6877ecd24abae4c52d3fb5" + }, + { + "platform_coupon_redemption_id": 3032337653041989, + "ods_hash": "db93f739c5fb68927e22a6455321beb9", + "dwd_hash": "f71e330cb3861637a2bb9b3567004a13" + }, + { + "platform_coupon_redemption_id": 3032396589386821, + "ods_hash": "8db02614fa30daa8be2be3824bf01d4e", + "dwd_hash": "1b44d0d0b6fab3da57abbf63893f5a02" + }, + { + "platform_coupon_redemption_id": 3032405477034885, + "ods_hash": "b543e50697c3d1b1e116fced7e17e00c", + "dwd_hash": "f39ddac58017529ce37f5fba1d53b8bf" + }, + { + "platform_coupon_redemption_id": 3032405609090181, + "ods_hash": "a01873a652def5102c05fce3b3d8ec5e", + "dwd_hash": "f3f45ee9601aedb35091294b9eced8ec" + }, + { + "platform_coupon_redemption_id": 3032406297791365, + "ods_hash": "636ca360c66a23d7878c8b9f67e70e21", + "dwd_hash": "d68811847668f2e703ef9ae28ba2d74e" + }, + { + "platform_coupon_redemption_id": 3032417371704133, + "ods_hash": "243482831bd9e8098633450e9fbd5791", + "dwd_hash": "d9ebe7c64a1e4af12e02ec562a98645a" + }, + { + "platform_coupon_redemption_id": 3032417612893253, + "ods_hash": "c505e505c39b52b22c3f52a848a91db2", + "dwd_hash": "a5fbf2276dc82431009d0042d78cbe8f" + }, + { + "platform_coupon_redemption_id": 3032420373433157, + "ods_hash": "145ab430f52513bced3dffff390f3a2a", + "dwd_hash": "d58949f0dda678b28fc18174e2519ad0" + }, + { + "platform_coupon_redemption_id": 3032420525739077, + "ods_hash": "ebc627e3643c10498f917b089f6983a0", + "dwd_hash": "88d24aef108c652378e7d5ba9d100a68" + }, + { + "platform_coupon_redemption_id": 3032424348830853, + "ods_hash": "8053f8a95e368a5b8a7ebbdea0909a63", + "dwd_hash": "f2e8c8fddb8f855b4c16505397b82dd5" + }, + { + "platform_coupon_redemption_id": 3032425854290821, + "ods_hash": "72df081110b04e8436a0afe691c9c79d", + "dwd_hash": "f15c9be48b9b2a73b32ff8c60e46b5a5" + }, + { + "platform_coupon_redemption_id": 3032425854290822, + "ods_hash": "f4a28a6ed34c38d3928f737067ff5a14", + "dwd_hash": "b41b0a4860c4d7bf0fd6e15b0159517b" + }, + { + "platform_coupon_redemption_id": 3032426090515525, + "ods_hash": "0bb7c9c02efd9e372c2e53287604731c", + "dwd_hash": "5d49929125f20ace7a68065e2a59fa37" + }, + { + "platform_coupon_redemption_id": 3032429216893765, + "ods_hash": "de6554c0d6b77304559dedfdba30be52", + "dwd_hash": "19e3a2b099064b1a28e163b1d9205635" + }, + { + "platform_coupon_redemption_id": 3032445562260357, + "ods_hash": "9493caf6d98bf2fb8198930ec52ee0f0", + "dwd_hash": "6fa5c081a13557d8b53b7cfe466699d3" + }, + { + "platform_coupon_redemption_id": 3032450343259013, + "ods_hash": "0423c831824dfbab1392ff211dc6c590", + "dwd_hash": "81f941d66e09bb0fb0d5ed78f8e050ce" + }, + { + "platform_coupon_redemption_id": 3032451254537349, + "ods_hash": "1b7a1fd74e2691366ea2e8a6c07f2e9a", + "dwd_hash": "533ab3905f88368034b9c006ce4a9103" + }, + { + "platform_coupon_redemption_id": 3032451886779269, + "ods_hash": "1f4032209fae06d05277d9a889aeb15d", + "dwd_hash": "cc17d4c4fd26766722c5df05fbc63982" + }, + { + "platform_coupon_redemption_id": 3032467741543493, + "ods_hash": "150a66a40b750caecb093712704eb19b", + "dwd_hash": "134ffc89f0aa5fc0534b6ff655dbf72b" + }, + { + "platform_coupon_redemption_id": 3032468863568965, + "ods_hash": "773c718c1ab1e0c8f5db01a5506fd0a5", + "dwd_hash": "a9743b58610f0e811e4486e2bc55f7d6" + }, + { + "platform_coupon_redemption_id": 3032469377485957, + "ods_hash": "2389f7026681a12fd164740136f00542", + "dwd_hash": "056e9bf8ad8f242ffc17a5eefc050e1f" + }, + { + "platform_coupon_redemption_id": 3032472322100293, + "ods_hash": "018213a602969b9bec744079f130f4ee", + "dwd_hash": "b346d68947fce5deaac13ca862aae80b" + }, + { + "platform_coupon_redemption_id": 3032473337252997, + "ods_hash": "599a500a19f7ee4f6a3efccb13a60966", + "dwd_hash": "659546913402b7d3c7a3d9b36fa4f67e" + }, + { + "platform_coupon_redemption_id": 3032475223575365, + "ods_hash": "6616c2f51c486c898e59cc25ac8b3dc4", + "dwd_hash": "c5db32c6644d6fa86a11ad3eb0e9138c" + }, + { + "platform_coupon_redemption_id": 3032475372292933, + "ods_hash": "6192fdddad693e6b830de56e00d1ae03", + "dwd_hash": "2855b6d29d6369102e50a0284e7180f0" + }, + { + "platform_coupon_redemption_id": 3032477129886597, + "ods_hash": "d31372d994f924ed0aab652bd7927830", + "dwd_hash": "b67178e393562ac2339de4cb73826868" + }, + { + "platform_coupon_redemption_id": 3032478156491589, + "ods_hash": "ec10e4590356cc2001002b113a3983eb", + "dwd_hash": "2993d843f8d69ce29f24c5190dc4cf21" + }, + { + "platform_coupon_redemption_id": 3032479225351045, + "ods_hash": "b86a9f98227bdeac1764a74f01b17879", + "dwd_hash": "c20e2f34707b2d264773e0ae23032f5b" + }, + { + "platform_coupon_redemption_id": 3032485824564293, + "ods_hash": "57f5d07dca5bd07a1b53954ab293304c", + "dwd_hash": "e0f3b055396d07172654e13847ebd686" + }, + { + "platform_coupon_redemption_id": 3032487075646277, + "ods_hash": "82daff37a6627cd225e074858e9e0766", + "dwd_hash": "7490b7f1e472b989886217626d59c736" + }, + { + "platform_coupon_redemption_id": 3032502695480197, + "ods_hash": "5287bb370a679da53e9cfbf2259e8c86", + "dwd_hash": "03e7c4f9e1f5819091767bc21a499398" + }, + { + "platform_coupon_redemption_id": 3032503077292869, + "ods_hash": "f1b1930fe1381ab47694974ad27adb11", + "dwd_hash": "555ff8475fb2e4384240fb2b8e9889e6" + }, + { + "platform_coupon_redemption_id": 3032512750996549, + "ods_hash": "6ed120c0db6f3be773d51f4d0b08c9cc", + "dwd_hash": "a47cd663914c02ca01c18cf9b56ce3a7" + }, + { + "platform_coupon_redemption_id": 3032513693092677, + "ods_hash": "e219cd2c6df3adfcb49254a7ee7b49e0", + "dwd_hash": "aa89eb9506448a9163f7284ea5423dd3" + }, + { + "platform_coupon_redemption_id": 3032532181863301, + "ods_hash": "90d8c127090692de212431ab2e018aeb", + "dwd_hash": "bfcc7e15776a14b4c9ae6ba0c3f3db9e" + }, + { + "platform_coupon_redemption_id": 3032532565429381, + "ods_hash": "931c8d2c49719a5a07f285021c8037ff", + "dwd_hash": "8a028eab855ed366fc673b4ad10c8253" + }, + { + "platform_coupon_redemption_id": 3032532664470597, + "ods_hash": "3d824180d46382ef8bdc899d161abf13", + "dwd_hash": "e09bdc55674f89a41b135e793f227ed3" + }, + { + "platform_coupon_redemption_id": 3032538489785413, + "ods_hash": "a872a53844ca922ce5eac90849f79a6c", + "dwd_hash": "2c4f470ed97a31ea007f49cfb840a56c" + }, + { + "platform_coupon_redemption_id": 3032539059047301, + "ods_hash": "a6e9829bf80c02e4178a7edc5a964a31", + "dwd_hash": "e46444f45e79023a1f14f7b5fce5e7cf" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_platform_coupon_redemption_ex", + "ods_table": "billiards_ods.platform_coupon_redemption_records", + "windowed": false, + "window_col": null, + "count": { + "dwd": 17138, + "ods": 17370, + "diff": -232 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_recharge_order_ex", + "ods_table": "billiards_ods.recharge_settlements", + "windowed": false, + "window_col": null, + "count": { + "dwd": 460, + "ods": 466, + "diff": -6 + }, + "amounts": [], + "mismatch": 374, + "mismatch_samples": [ + { + "recharge_order_id": 3008954535365125, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3009051792902469, + "ods_hash": "d71738d33068bc367ce1a2e672620433", + "dwd_hash": "29d501ee5a23bc20d17dc4196409899e" + }, + { + "recharge_order_id": 3009303890233861, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3010829303007749, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3011659321821317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3011875070085061, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3012857868848581, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013155050950085, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3013266134732549, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3013579609099909, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3014723179712133, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 3015147654729541, + "ods_hash": "095beee12a068d11e3bf4884af8cd092", + "dwd_hash": "1cb453332b4ad2687bef7e3a354d9e76" + }, + { + "recharge_order_id": 3015999356667333, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3017481236006405, + "ods_hash": "ac5ba16bbd095132ee5031f1088dd28c", + "dwd_hash": "bb553270f2496ba2ebde899ca21992de" + }, + { + "recharge_order_id": 3017679641134597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3021269617313861, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021353085454405, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 3021371351320645, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021499004766021, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3021815358605317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022566422382661, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022919499270213, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 3022926054164485, + "ods_hash": "5fde061d0e7fdeb527b792673e7868a9", + "dwd_hash": "0120825e080abb6bba01cc1434d13229" + }, + { + "recharge_order_id": 3022926742456261, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 3023433559394373, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2808923174783109, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2803666932010565, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2803710575593541, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2804767340973317, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805070136823365, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2805111552117957, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805121951074373, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2805188835477573, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806244951017285, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806371278325381, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2806426635208517, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809187656829061, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2809392429549765, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2809471788321221, + "ods_hash": "9db66867692d43b13e5021a3a857b369", + "dwd_hash": "a63c0430b600982339395422b04560d6" + }, + { + "recharge_order_id": 2809504839059909, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810371281799621, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810412839373574, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810546930207237, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2810563362048453, + "ods_hash": "722a8fceef05f408a59c89602a9816bc", + "dwd_hash": "4fc2acb3e844fa5b756c01cef4aed5e1" + }, + { + "recharge_order_id": 2810800364193989, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2810801124133381, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2811829130856901, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812160863095557, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + }, + { + "recharge_order_id": 2812164953934597, + "ods_hash": "06d652b60b4c5ff484a9ec769a352590", + "dwd_hash": "75eba29be6aae972e87fc47a1f86329c" + }, + { + "recharge_order_id": 2812352420645317, + "ods_hash": "b33f92dfed8c833829a0ea54c6875f5d", + "dwd_hash": "98117ec72bf6ee42b312835252cf7d72" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_payment", + "ods_table": "billiards_ods.payment_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 3327, + "ods": 3460, + "diff": -133 + }, + "amounts": [ + { + "column": "pay_amount", + "dwd_sum": 377823.0, + "ods_sum": 408957.0, + "diff": -31134.0 + } + ], + "mismatch": 3327, + "mismatch_samples": [ + { + "payment_id": 3031559651576965, + "ods_hash": "4ced7f3c79c478fd2e39311ac26bd1d1", + "dwd_hash": "918854dbb3ed9e47d3fa8be767a8ef94" + }, + { + "payment_id": 3031559791479877, + "ods_hash": "c33f4c968c36c045fe27c5dac7a36fa9", + "dwd_hash": "6f505b04cebeee84d1d2d6ceddca817b" + }, + { + "payment_id": 3031580137622597, + "ods_hash": "a6996a8ad524e13ea90e4b01c814e9e8", + "dwd_hash": "d52aa1811ad27cc6eed1802d758ac250" + }, + { + "payment_id": 3031591023610949, + "ods_hash": "887ee97530f861952835641816e81294", + "dwd_hash": "6fec69fa0bbb1c3a6aa471734749ec79" + }, + { + "payment_id": 3031604208847749, + "ods_hash": "03b427294627273812cd64ee019d1da8", + "dwd_hash": "df41fb225fa4159577ebbbc2716ea46f" + }, + { + "payment_id": 3031604942982022, + "ods_hash": "9aa7b299abaa47385f87d54b61220588", + "dwd_hash": "708514880d545fee4c3316d847763458" + }, + { + "payment_id": 3031610632621125, + "ods_hash": "e7262fb8a1c678298c92b047248bea69", + "dwd_hash": "33bd17f9216f7809552e20129066e79b" + }, + { + "payment_id": 3031646425893765, + "ods_hash": "f8151734b915899e20227405044bda41", + "dwd_hash": "cb7c87075da05bb6ebc609b93296f4ce" + }, + { + "payment_id": 3031646480878661, + "ods_hash": "816620c41d30d521efc2751160d2d73e", + "dwd_hash": "7d73f8ac50236a1c7c29753c014630b7" + }, + { + "payment_id": 3031647109942149, + "ods_hash": "54e65fa1d8e984329dacc5739f5131fb", + "dwd_hash": "3ffbce0e28cec58cfdbaa9110d39b222" + }, + { + "payment_id": 3031653081467781, + "ods_hash": "e8713ce3d63ab21c528f1ac7eafdf0c6", + "dwd_hash": "00e1cc3afd7df7bcbf3dee7b818d3b92" + }, + { + "payment_id": 3031700023708549, + "ods_hash": "dae1e620171439059e1ad53e082d4d95", + "dwd_hash": "5b3f94f2ad5e908ddd8a9f702dc707ca" + }, + { + "payment_id": 3031742585817925, + "ods_hash": "beca4f96297e8635c51eda185c6dc6e1", + "dwd_hash": "0faf2ef54714b0fba73d9a58c35ec9f0" + }, + { + "payment_id": 3031896026073925, + "ods_hash": "56a2b3a10862628d2e9b3a685606787c", + "dwd_hash": "037ec8cea5c0bbc776f516cf70abeb56" + }, + { + "payment_id": 3032139308223365, + "ods_hash": "516d638f963cb1d46ccc928db7494538", + "dwd_hash": "48c362eadfdda2a53bebbfc46b8e18ed" + }, + { + "payment_id": 3032262312545413, + "ods_hash": "91f8848ed6ff3d00862b0409d7377c24", + "dwd_hash": "44c6078d24e95f8826364aec126fc378" + }, + { + "payment_id": 3032291879341125, + "ods_hash": "7bfed360999a0868b2dc355e3361e659", + "dwd_hash": "b9d539abffdc9d6251cc5419db6982d5" + }, + { + "payment_id": 3032346301270917, + "ods_hash": "2f99b1844a028a64085f4a8202bfc955", + "dwd_hash": "440f021106a87d8b36d5810324573ec7" + }, + { + "payment_id": 3032386576796549, + "ods_hash": "80f02a9cd2a937a9443d2aaf13a79ce5", + "dwd_hash": "18cd2213a5dc6c77b1ccd96cc4c2ef6d" + }, + { + "payment_id": 3032388004400261, + "ods_hash": "8b84cfc9553cfa3b5f69d2ba4f95a2a5", + "dwd_hash": "d26f4f3d6612a374492cfd8d89631d0c" + }, + { + "payment_id": 3032388073573509, + "ods_hash": "db04895e512287533819ed25c4095d16", + "dwd_hash": "485d7c31c8c8892dd8c43d3b2c5b2891" + }, + { + "payment_id": 3032388337109893, + "ods_hash": "7bda329477f028f81f2cb93b02ad4ccd", + "dwd_hash": "bc1e200319bb51e01f5627d927b92ce9" + }, + { + "payment_id": 3032390340365381, + "ods_hash": "5d37a665aff58e8578cf6644cc98dee8", + "dwd_hash": "81f178683b1e1152c6eb916cee47144c" + }, + { + "payment_id": 3032455170378629, + "ods_hash": "94734928709786d31010613b42c4a33a", + "dwd_hash": "7ea6cc4b19de175374d4b88fd11234c7" + }, + { + "payment_id": 3032463726283589, + "ods_hash": "2c4a63008373938cde980cb327402657", + "dwd_hash": "8682da46640d227ffe9bdf023185cbf3" + }, + { + "payment_id": 3032467838585925, + "ods_hash": "6157bc429a95ba31691502df02eff4ad", + "dwd_hash": "3fb1312af27b220b09bd6e6115c1a78a" + }, + { + "payment_id": 3032473028955205, + "ods_hash": "84e2e961964af31be3e25a3e1d3d0a36", + "dwd_hash": "e57dd08f65cf7a2acd80fcf333f55266" + }, + { + "payment_id": 3032476571552837, + "ods_hash": "631ebaeb603a0092a195fcfda72de6ed", + "dwd_hash": "81900c740ee338bfe70bd56dfa16d83c" + }, + { + "payment_id": 3032476646411141, + "ods_hash": "e53bafbdc5319917ca463d9c9a45276c", + "dwd_hash": "3acf561dd6b1f63a62da8b70a59deb8a" + }, + { + "payment_id": 3032490419719045, + "ods_hash": "91054d96271815777c4861ccea8d1424", + "dwd_hash": "b2c4a5e03e8bb44ac5b2605f61ef7156" + }, + { + "payment_id": 3032499555765061, + "ods_hash": "100d3cd73e7221d8f4821997415d6ad8", + "dwd_hash": "2ceb2d51f7702de5fcabbf85784bf438" + }, + { + "payment_id": 3032509391080517, + "ods_hash": "706ecd51f4d51ba3f77dc488e1250311", + "dwd_hash": "f009eb3c08023e7345cf36f4248c5c9f" + }, + { + "payment_id": 3032514145766213, + "ods_hash": "09f424040e8033657fb3322e278802b0", + "dwd_hash": "f28f431afae481130b65824a3f67ab93" + }, + { + "payment_id": 3032514934295429, + "ods_hash": "6136c67d552535812c9973192745636f", + "dwd_hash": "b0ca057779e94b718b2fcc24d1ddc8fd" + }, + { + "payment_id": 3032522596600709, + "ods_hash": "1fc3bebd163defec3198415146b54895", + "dwd_hash": "a418de66933f44544379b82b4cadf622" + }, + { + "payment_id": 3032530121657413, + "ods_hash": "2edd4a13b39b12021bbd120398d27dda", + "dwd_hash": "82bf518495efc13cf592b5b4e80c3c13" + }, + { + "payment_id": 3032531253447749, + "ods_hash": "c8e7c839630211ebf29efed201a64098", + "dwd_hash": "340691fd9498b774341ad4b8c8573e3e" + }, + { + "payment_id": 3032536346971013, + "ods_hash": "ca18a5545ea88ba815cfc8a6f075b948", + "dwd_hash": "6e60b1ed8666b207752d917c376d92b0" + }, + { + "payment_id": 3032538552470405, + "ods_hash": "3b4c10c5f024b4c464a9bc601c5d849c", + "dwd_hash": "760e7379889ba425b1a30e43f5514e84" + }, + { + "payment_id": 3032538603064389, + "ods_hash": "8ceab7c02769b0e1e86cdc22be6c71c7", + "dwd_hash": "dc2f135a454b6ba50874a4d283cb3dc0" + }, + { + "payment_id": 3032547973483333, + "ods_hash": "24606c1407bbc2577b2fcb810c9235aa", + "dwd_hash": "7248b485428a3540578931c17da02085" + }, + { + "payment_id": 3032548018654021, + "ods_hash": "fc74532f993e8847896fcdf01d02dc36", + "dwd_hash": "6547d1b86378b2a090d289ed14f7ba0a" + }, + { + "payment_id": 3032565368097925, + "ods_hash": "3ffadeb218b68e275e1c8dff0aade992", + "dwd_hash": "4b6630fffa95608bd733c62d7169c07b" + }, + { + "payment_id": 3032569591188549, + "ods_hash": "b0c1e363e6ec1566d6dd17ddccb6f145", + "dwd_hash": "39d6e94ecedfe9d86b56304c345e70d9" + }, + { + "payment_id": 3032573206596677, + "ods_hash": "6e6e4251a50ef44da26d44299c0a6c61", + "dwd_hash": "8c5013a018cec8832ca4134ecc87b02e" + }, + { + "payment_id": 3032573647080325, + "ods_hash": "13e9470db08df53881cf7c42189e8592", + "dwd_hash": "181a25586a7bfbfaa26c6bf6d3af7814" + }, + { + "payment_id": 3032582390746245, + "ods_hash": "fab5b5b5d64c6859c5ad36d0733777c7", + "dwd_hash": "23badcf1633f915d0677880fc2006940" + }, + { + "payment_id": 3032586918038405, + "ods_hash": "1cb671ae34b1bf3340ad8dd9d6898063", + "dwd_hash": "aeb6628341ca9434865d835fe1afe727" + }, + { + "payment_id": 3032589574622277, + "ods_hash": "ae3a2d44e6c891c7e0a0a041d5e70c21", + "dwd_hash": "6baaeb4dd1276dcbe64ed6fb4ca8b6ee" + }, + { + "payment_id": 3032591293402245, + "ods_hash": "90e54c9540220110d7b8a9ec39424c2f", + "dwd_hash": "6008307ddbba90687af7d01bb7bb9847" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund", + "ods_table": "billiards_ods.refund_transactions", + "windowed": true, + "window_col": "pay_time", + "count": { + "dwd": 7, + "ods": 8, + "diff": -1 + }, + "amounts": [ + { + "column": "channel_fee", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "pay_amount", + "dwd_sum": -87.0, + "ods_sum": -10087.0, + "diff": 10000.0 + } + ], + "mismatch": 7, + "mismatch_samples": [ + { + "refund_id": 3047989151893189, + "ods_hash": "28013ee1207d7d207730ead0a110281a", + "dwd_hash": "1a86acdb32e96b530c11cfbb1d02bcfc" + }, + { + "refund_id": 3053789949006597, + "ods_hash": "62790dd0c1ab8ad3341313b8dac6bd52", + "dwd_hash": "5e43809fc4f28a4fe513f20e2eae8f61" + }, + { + "refund_id": 3062207845584517, + "ods_hash": "4109aa5f528ce37ef084b6cd2278ee42", + "dwd_hash": "568e00202c4b6df783aaf4350ab3f224" + }, + { + "refund_id": 3063816474921925, + "ods_hash": "893f70f54c5d950469c238ed7fb17a9f", + "dwd_hash": "e4671a2f3f262732dfda9476c3616659" + }, + { + "refund_id": 3038756832234821, + "ods_hash": "845a68e984fe9de20bd3ed4177781787", + "dwd_hash": "99c11ee4dd031bd65fcd7b4554e89885" + }, + { + "refund_id": 3042871700817797, + "ods_hash": "bf638919eb64aee1f7b09bf0fcb59548", + "dwd_hash": "894dc2081f8c64681bd6f4f1184d587e" + }, + { + "refund_id": 3046955701765829, + "ods_hash": "92166cd5a20642df0c8676200ee70402", + "dwd_hash": "e1a05e3e768be97a7eb32e1cea7bf43f" + } + ], + "mismatch_error": null + }, + { + "dwd_table": "billiards_dwd.dwd_refund_ex", + "ods_table": "billiards_ods.refund_transactions", + "windowed": false, + "window_col": null, + "count": { + "dwd": 45, + "ods": 47, + "diff": -2 + }, + "amounts": [ + { + "column": "balance_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "card_frozen_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "refund_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + }, + { + "column": "round_amount", + "dwd_sum": 0.0, + "ods_sum": 0.0, + "diff": 0.0 + } + ], + "mismatch": 0, + "mismatch_samples": [], + "mismatch_error": null + } + ], + "total_count_diff": -23676, + "total_mismatch": 47841 + }, + "generated_at": "2026-01-31T23:59:28.620265+08:00" + } + ], + "api_to_ods": { + "total_missing": 237, + "total_mismatch": 326, + "total_errors": 0 + }, + "total_missing": 237, + "total_mismatch": 326, + "total_errors": 0, + "generated_at": "2026-01-31T23:59:28.620296+08:00" +} diff --git a/etl_billiards/scripts/Untitled b/etl_billiards/scripts/Untitled new file mode 100644 index 0000000..4782c59 --- /dev/null +++ b/etl_billiards/scripts/Untitled @@ -0,0 +1 @@ +check_data_integrity.py \ No newline at end of file diff --git a/etl_billiards/scripts/backfill_missing_data.py b/etl_billiards/scripts/backfill_missing_data.py index cdc60c5..1963e6f 100644 --- a/etl_billiards/scripts/backfill_missing_data.py +++ b/etl_billiards/scripts/backfill_missing_data.py @@ -32,9 +32,15 @@ from api.client import APIClient from config.settings import AppConfig from database.connection import DatabaseConnection from models.parsers import TypeParser -from tasks.ods_tasks import ENABLED_ODS_CODES, ODS_TASK_SPECS, OdsTaskSpec +from tasks.ods_tasks import BaseOdsTask, ENABLED_ODS_CODES, ODS_TASK_SPECS, OdsTaskSpec from scripts.check_ods_gaps import run_gap_check from utils.logging_utils import build_log_path, configure_logging +from utils.ods_record_utils import ( + get_value_case_insensitive, + merge_record_layers, + normalize_pk_value, + pk_tuple_from_record, +) def _reconfigure_stdout_utf8() -> None: @@ -74,56 +80,26 @@ def _get_spec(code: str) -> Optional[OdsTaskSpec]: def _merge_record_layers(record: dict) -> dict: - """展开嵌套的 data 层""" - merged = record - data_part = merged.get("data") - while isinstance(data_part, dict): - merged = {**data_part, **merged} - data_part = data_part.get("data") - settle_inner = merged.get("settleList") - if isinstance(settle_inner, dict): - merged = {**settle_inner, **merged} - return merged + """Flatten nested data layers into a single dict.""" + return merge_record_layers(record) def _get_value_case_insensitive(record: dict | None, col: str | None): - """不区分大小写地获取值""" - if record is None or col is None: - return None - if col in record: - return record.get(col) - col_lower = col.lower() - for k, v in record.items(): - if isinstance(k, str) and k.lower() == col_lower: - return v - return None + """Fetch value without case sensitivity.""" + return get_value_case_insensitive(record, col) def _normalize_pk_value(value): - """规范化 PK 值""" - if value is None: - return None - if isinstance(value, str) and value.isdigit(): - try: - return int(value) - except Exception: - return value - return value + """Normalize PK value.""" + return normalize_pk_value(value) def _pk_tuple_from_record(record: dict, pk_cols: List[str]) -> Optional[Tuple]: - """从记录中提取 PK 元组""" - merged = _merge_record_layers(record) - values = [] - for col in pk_cols: - val = _normalize_pk_value(_get_value_case_insensitive(merged, col)) - if val is None or val == "": - return None - values.append(val) - return tuple(values) + """Extract PK tuple from record.""" + return pk_tuple_from_record(record, pk_cols) -def _get_table_pk_columns(conn, table: str) -> List[str]: +def _get_table_pk_columns(conn, table: str, *, include_content_hash: bool = False) -> List[str]: """获取表的主键列""" if "." in table: schema, name = table.split(".", 1) @@ -142,7 +118,10 @@ def _get_table_pk_columns(conn, table: str) -> List[str]: """ with conn.cursor() as cur: cur.execute(sql, (schema, name)) - return [r[0] for r in cur.fetchall()] + cols = [r[0] for r in cur.fetchall()] + if include_content_hash: + return cols + return [c for c in cols if c.lower() != "content_hash"] def _get_table_columns(conn, table: str) -> List[Tuple[str, str, str]]: @@ -247,6 +226,13 @@ class MissingDataBackfiller: """关闭连接""" if self.db: self.db.close() + + def _ensure_db(self): + """确保数据库连接可用""" + if self.db and getattr(self.db, "conn", None) is not None: + if getattr(self.db.conn, "closed", 0) == 0: + return + self.db = DatabaseConnection(dsn=self.cfg["db"]["dsn"], session=self.cfg["db"].get("session")) def backfill_from_gap_check( self, @@ -254,8 +240,10 @@ class MissingDataBackfiller: start: datetime, end: datetime, task_codes: Optional[str] = None, + include_mismatch: bool = False, page_size: int = 200, chunk_size: int = 500, + content_sample_limit: int | None = None, ) -> Dict[str, Any]: """ 运行 gap check 并补全丢失数据 @@ -292,16 +280,21 @@ class MissingDataBackfiller: cutoff_overlap_hours=24, allow_small_window=True, logger=self.logger, + compare_content=include_mismatch, + content_sample_limit=content_sample_limit or 10000, ) total_missing = gap_result.get("total_missing", 0) - if total_missing == 0: - self.logger.info("数据完整,无缺失记录") + total_mismatch = gap_result.get("total_mismatch", 0) + if total_missing == 0 and (not include_mismatch or total_mismatch == 0): + self.logger.info("Data complete: no missing/mismatch records") return {"backfilled": 0, "errors": 0, "details": []} - self.logger.info("缺失检查完成 总缺失=%s", total_missing) + if include_mismatch: + self.logger.info("Missing/mismatch check done missing=%s mismatch=%s", total_missing, total_mismatch) + else: + self.logger.info("Missing check done missing=%s", total_missing) - # 补全每个任务的丢失数据 results = [] total_backfilled = 0 total_errors = 0 @@ -310,13 +303,16 @@ class MissingDataBackfiller: task_code = task_result.get("task_code") missing = task_result.get("missing", 0) missing_samples = task_result.get("missing_samples", []) + mismatch = task_result.get("mismatch", 0) if include_mismatch else 0 + mismatch_samples = task_result.get("mismatch_samples", []) if include_mismatch else [] + target_samples = list(missing_samples) + list(mismatch_samples) - if missing == 0: + if missing == 0 and mismatch == 0: continue self.logger.info( - "开始补全任务 任务=%s 缺失=%s 样本数=%s", - task_code, missing, len(missing_samples) + "Start backfill task task=%s missing=%s mismatch=%s samples=%s", + task_code, missing, mismatch, len(target_samples) ) try: @@ -324,7 +320,7 @@ class MissingDataBackfiller: task_code=task_code, table=task_result.get("table"), pk_columns=task_result.get("pk_columns", []), - missing_samples=missing_samples, + pk_samples=target_samples, start=start, end=end, page_size=page_size, @@ -333,6 +329,7 @@ class MissingDataBackfiller: results.append({ "task_code": task_code, "missing": missing, + "mismatch": mismatch, "backfilled": backfilled, "error": None, }) @@ -342,6 +339,7 @@ class MissingDataBackfiller: results.append({ "task_code": task_code, "missing": missing, + "mismatch": mismatch, "backfilled": 0, "error": str(exc), }) @@ -354,6 +352,7 @@ class MissingDataBackfiller: return { "total_missing": total_missing, + "total_mismatch": total_mismatch, "backfilled": total_backfilled, "errors": total_errors, "details": results, @@ -365,20 +364,25 @@ class MissingDataBackfiller: task_code: str, table: str, pk_columns: List[str], - missing_samples: List[Dict], + pk_samples: List[Dict], start: datetime, end: datetime, page_size: int, chunk_size: int, ) -> int: """补全单个任务的丢失数据""" + self._ensure_db() spec = _get_spec(task_code) if not spec: self.logger.warning("未找到任务规格 任务=%s", task_code) return 0 if not pk_columns: - pk_columns = _get_table_pk_columns(self.db.conn, table) + pk_columns = _get_table_pk_columns(self.db.conn, table, include_content_hash=False) + + conflict_columns = _get_table_pk_columns(self.db.conn, table, include_content_hash=True) + if not conflict_columns: + conflict_columns = pk_columns if not pk_columns: self.logger.warning("未找到主键列 任务=%s 表=%s", task_code, table) @@ -386,7 +390,7 @@ class MissingDataBackfiller: # 提取丢失的 PK 值 missing_pks: Set[Tuple] = set() - for sample in missing_samples: + for sample in pk_samples: pk_tuple = tuple(sample.get(col) for col in pk_columns) if all(v is not None for v in pk_tuple): missing_pks.add(pk_tuple) @@ -410,6 +414,12 @@ class MissingDataBackfiller: if c[1] in ("json", "jsonb") or c[2] in ("json", "jsonb") } col_names = [c[0] for c in cols_info] + + # 结束只读事务,避免长时间 API 拉取导致 idle_in_tx 超时 + try: + self.db.conn.commit() + except Exception: + self.db.conn.rollback() try: for page_no, records, _, response_payload in self.api.iter_paginated( @@ -444,9 +454,12 @@ class MissingDataBackfiller: records=records_to_insert, cols_info=cols_info, pk_columns=pk_columns, + conflict_columns=conflict_columns, db_json_cols_lower=db_json_cols_lower, ) backfilled += inserted + # 避免长事务阻塞与 idle_in_tx 超时 + self.db.conn.commit() self.logger.info( "已插入 任务=%s 页=%s 数量=%s", task_code, page_no, inserted @@ -498,6 +511,7 @@ class MissingDataBackfiller: records: List[Dict], cols_info: List[Tuple[str, str, str]], pk_columns: List[str], + conflict_columns: List[str], db_json_cols_lower: Set[str], ) -> int: """插入记录到数据库""" @@ -505,10 +519,12 @@ class MissingDataBackfiller: return 0 col_names = [c[0] for c in cols_info] + needs_content_hash = any(c[0].lower() == "content_hash" for c in cols_info) quoted_cols = ", ".join(f'"{c}"' for c in col_names) sql = f"INSERT INTO {table} ({quoted_cols}) VALUES %s" - if pk_columns: - pk_clause = ", ".join(f'"{c}"' for c in pk_columns) + conflict_cols = conflict_columns or pk_columns + if conflict_cols: + pk_clause = ", ".join(f'"{c}"' for c in conflict_cols) sql += f" ON CONFLICT ({pk_clause}) DO NOTHING" now = datetime.now(self.tz) @@ -522,12 +538,20 @@ class MissingDataBackfiller: if pk_columns: missing_pk = False for pk in pk_columns: + if str(pk).lower() == "content_hash": + continue pk_val = _get_value_case_insensitive(merged_rec, pk) if pk_val is None or pk_val == "": missing_pk = True break if missing_pk: continue + + content_hash = None + if needs_content_hash: + hash_record = dict(merged_rec) + hash_record["fetched_at"] = now + content_hash = BaseOdsTask._compute_content_hash(hash_record, include_fetched_at=True) row_vals: List[Any] = [] for (col_name, data_type, _udt) in cols_info: @@ -544,6 +568,9 @@ class MissingDataBackfiller: if col_lower == "fetched_at": row_vals.append(now) continue + if col_lower == "content_hash": + row_vals.append(content_hash) + continue value = _normalize_scalar(_get_value_case_insensitive(merged_rec, col_name)) if col_lower in db_json_cols_lower: @@ -574,9 +601,11 @@ def run_backfill( start: datetime, end: datetime, task_codes: Optional[str] = None, + include_mismatch: bool = False, dry_run: bool = False, page_size: int = 200, chunk_size: int = 500, + content_sample_limit: int | None = None, logger: logging.Logger, ) -> Dict[str, Any]: """ @@ -601,8 +630,10 @@ def run_backfill( start=start, end=end, task_codes=task_codes, + include_mismatch=include_mismatch, page_size=page_size, chunk_size=chunk_size, + content_sample_limit=content_sample_limit, ) finally: backfiller.close() @@ -615,6 +646,8 @@ def main() -> int: ap.add_argument("--start", default="2025-07-01", help="开始日期 (默认: 2025-07-01)") ap.add_argument("--end", default="", help="结束日期 (默认: 当前时间)") ap.add_argument("--task-codes", default="", help="指定任务代码(逗号分隔,留空=全部)") + ap.add_argument("--include-mismatch", action="store_true", help="同时补全内容不一致的记录") + ap.add_argument("--content-sample-limit", type=int, default=None, help="不一致样本上限 (默认: 10000)") ap.add_argument("--dry-run", action="store_true", help="仅预览,不实际写入") ap.add_argument("--page-size", type=int, default=200, help="API 分页大小 (默认: 200)") ap.add_argument("--chunk-size", type=int, default=500, help="数据库批量大小 (默认: 500)") @@ -646,15 +679,19 @@ def main() -> int: start=start, end=end, task_codes=args.task_codes or None, + include_mismatch=args.include_mismatch, dry_run=args.dry_run, page_size=args.page_size, chunk_size=args.chunk_size, + content_sample_limit=args.content_sample_limit, logger=logger, ) logger.info("=" * 60) logger.info("补全完成!") logger.info(" 总丢失: %s", result.get("total_missing", 0)) + if args.include_mismatch: + logger.info(" 总不一致: %s", result.get("total_mismatch", 0)) logger.info(" 已补全: %s", result.get("backfilled", 0)) logger.info(" 错误数: %s", result.get("errors", 0)) logger.info("=" * 60) @@ -663,17 +700,19 @@ def main() -> int: for detail in result.get("details", []): if detail.get("error"): logger.error( - " %s: 丢失=%s 补全=%s 错误=%s", + " %s: 丢失=%s 不一致=%s 补全=%s 错误=%s", detail.get("task_code"), detail.get("missing"), + detail.get("mismatch", 0), detail.get("backfilled"), detail.get("error"), ) elif detail.get("backfilled", 0) > 0: logger.info( - " %s: 丢失=%s 补全=%s", + " %s: 丢失=%s 不一致=%s 补全=%s", detail.get("task_code"), detail.get("missing"), + detail.get("mismatch", 0), detail.get("backfilled"), ) diff --git a/etl_billiards/scripts/check_data_integrity.py b/etl_billiards/scripts/check_data_integrity.py index ffe34f7..333cb1c 100644 --- a/etl_billiards/scripts/check_data_integrity.py +++ b/etl_billiards/scripts/check_data_integrity.py @@ -3,7 +3,6 @@ from __future__ import annotations import argparse -import json import sys from datetime import datetime from pathlib import Path @@ -12,12 +11,7 @@ from zoneinfo import ZoneInfo from dateutil import parser as dtparser from config.settings import AppConfig -from quality.integrity_checker import ( - IntegrityWindow, - compute_last_etl_end, - run_integrity_history, - run_integrity_window, -) +from quality.integrity_service import run_history_flow, run_window_flow, write_report from utils.logging_utils import build_log_path, configure_logging from utils.windowing import split_window @@ -38,14 +32,37 @@ def main() -> int: ap = argparse.ArgumentParser(description="Data integrity checks (API -> ODS -> DWD)") ap.add_argument("--mode", choices=["history", "window"], default="history") + ap.add_argument( + "--flow", + choices=["verify", "update_and_verify"], + default="verify", + help="verify only or update+verify (auto backfill then optional recheck)", + ) ap.add_argument("--start", default="2025-07-01", help="history start date (default: 2025-07-01)") ap.add_argument("--end", default="", help="history end datetime (default: last ETL end)") ap.add_argument("--window-start", default="", help="window start datetime (mode=window)") ap.add_argument("--window-end", default="", help="window end datetime (mode=window)") ap.add_argument("--window-split-unit", default="", help="split unit (month/none), default from config") ap.add_argument("--window-compensation-hours", type=int, default=None, help="window compensation hours, default from config") - ap.add_argument("--include-dimensions", action="store_true", help="include dimension tables in ODS->DWD checks") + ap.add_argument( + "--include-dimensions", + action="store_true", + default=None, + help="include dimension tables in ODS->DWD checks", + ) + ap.add_argument( + "--no-include-dimensions", + action="store_true", + help="exclude dimension tables in ODS->DWD checks", + ) ap.add_argument("--ods-task-codes", default="", help="comma-separated ODS task codes for API checks") + ap.add_argument("--compare-content", action="store_true", help="compare API vs ODS content hash") + ap.add_argument("--no-compare-content", action="store_true", help="disable content comparison even if enabled in config") + ap.add_argument("--include-mismatch", action="store_true", help="backfill mismatch records as well") + ap.add_argument("--no-include-mismatch", action="store_true", help="disable mismatch backfill") + ap.add_argument("--recheck", action="store_true", help="re-run checks after backfill") + ap.add_argument("--no-recheck", action="store_true", help="skip recheck after backfill") + ap.add_argument("--content-sample-limit", type=int, default=None, help="max mismatch samples per table") ap.add_argument("--out", default="", help="output JSON path") ap.add_argument("--log-file", default="", help="log file path") ap.add_argument("--log-dir", default="", help="log directory") @@ -68,6 +85,39 @@ def main() -> int: tz = ZoneInfo(cfg.get("app.timezone", "Asia/Taipei")) report_path = Path(args.out) if args.out else None + if args.recheck and args.no_recheck: + raise SystemExit("cannot set both --recheck and --no-recheck") + if args.include_mismatch and args.no_include_mismatch: + raise SystemExit("cannot set both --include-mismatch and --no-include-mismatch") + if args.include_dimensions and args.no_include_dimensions: + raise SystemExit("cannot set both --include-dimensions and --no-include-dimensions") + + compare_content = None + if args.compare_content and args.no_compare_content: + raise SystemExit("cannot set both --compare-content and --no-compare-content") + if args.compare_content: + compare_content = True + elif args.no_compare_content: + compare_content = False + + include_mismatch = cfg.get("integrity.backfill_mismatch", True) + if args.include_mismatch: + include_mismatch = True + elif args.no_include_mismatch: + include_mismatch = False + + recheck_after_backfill = cfg.get("integrity.recheck_after_backfill", True) + if args.recheck: + recheck_after_backfill = True + elif args.no_recheck: + recheck_after_backfill = False + + include_dimensions = cfg.get("integrity.include_dimensions", True) + if args.include_dimensions: + include_dimensions = True + elif args.no_include_dimensions: + include_dimensions = False + if args.mode == "window": if not args.window_start or not args.window_end: raise SystemExit("window-start and window-end are required for mode=window") @@ -88,78 +138,52 @@ def main() -> int: if not windows: windows = [(start_dt, end_dt)] - window_reports = [] - total_missing = 0 - total_errors = 0 - for idx, (seg_start, seg_end) in enumerate(windows, start=1): - window = IntegrityWindow( - start=seg_start, - end=seg_end, - label=f"segment_{idx}", - granularity="window", - ) - payload = run_integrity_window( - cfg=cfg, - window=window, - include_dimensions=args.include_dimensions, - task_codes=args.ods_task_codes, - logger=logger, - write_report=False, - report_path=None, - window_split_unit="none", - window_compensation_hours=0, - ) - window_reports.append(payload) - total_missing += int(payload.get("api_to_ods", {}).get("total_missing") or 0) - total_errors += int(payload.get("api_to_ods", {}).get("total_errors") or 0) - - overall_start = windows[0][0] - overall_end = windows[-1][1] - report = { - "mode": "window", - "window": { - "start": overall_start.isoformat(), - "end": overall_end.isoformat(), - "segments": len(windows), - }, - "windows": window_reports, - "api_to_ods": { - "total_missing": total_missing, - "total_errors": total_errors, - }, - "total_missing": total_missing, - "total_errors": total_errors, - "generated_at": datetime.now(tz).isoformat(), - } - if report_path is None: - root = Path(__file__).resolve().parents[1] - stamp = datetime.now(tz).strftime("%Y%m%d_%H%M%S") - report_path = root / "reports" / f"data_integrity_window_{stamp}.json" - report_path.parent.mkdir(parents=True, exist_ok=True) - report_path.write_text(json.dumps(report, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") - report["report_path"] = str(report_path) + report, counts = run_window_flow( + cfg=cfg, + windows=windows, + include_dimensions=bool(include_dimensions), + task_codes=args.ods_task_codes, + logger=logger, + compare_content=compare_content, + content_sample_limit=args.content_sample_limit, + do_backfill=args.flow == "update_and_verify", + include_mismatch=bool(include_mismatch), + recheck_after_backfill=bool(recheck_after_backfill), + page_size=int(cfg.get("api.page_size") or 200), + chunk_size=500, + ) + report_path = write_report(report, prefix="data_integrity_window", tz=tz, report_path=report_path) + report["report_path"] = report_path logger.info("REPORT_WRITTEN path=%s", report.get("report_path")) else: start_dt = _parse_dt(args.start, tz) if args.end: end_dt = _parse_dt(args.end, tz) else: - end_dt = compute_last_etl_end(cfg) or datetime.now(tz) - report = run_integrity_history( + end_dt = None + report, counts = run_history_flow( cfg=cfg, start_dt=start_dt, end_dt=end_dt, - include_dimensions=args.include_dimensions, + include_dimensions=bool(include_dimensions), task_codes=args.ods_task_codes, logger=logger, - write_report=True, - report_path=report_path, + compare_content=compare_content, + content_sample_limit=args.content_sample_limit, + do_backfill=args.flow == "update_and_verify", + include_mismatch=bool(include_mismatch), + recheck_after_backfill=bool(recheck_after_backfill), + page_size=int(cfg.get("api.page_size") or 200), + chunk_size=500, ) + report_path = write_report(report, prefix="data_integrity_history", tz=tz, report_path=report_path) + report["report_path"] = report_path logger.info("REPORT_WRITTEN path=%s", report.get("report_path")) logger.info( - "SUMMARY missing=%s errors=%s", - report.get("total_missing"), - report.get("total_errors"), + "SUMMARY missing=%s mismatch=%s errors=%s", + counts.get("missing"), + counts.get("mismatch"), + counts.get("errors"), ) return 0 diff --git a/etl_billiards/scripts/check_ods_gaps.py b/etl_billiards/scripts/check_ods_gaps.py index 58df520..cfbb716 100644 --- a/etl_billiards/scripts/check_ods_gaps.py +++ b/etl_billiards/scripts/check_ods_gaps.py @@ -22,6 +22,7 @@ from typing import Iterable, Sequence from zoneinfo import ZoneInfo from dateutil import parser as dtparser +from psycopg2 import InterfaceError, OperationalError from psycopg2.extras import execute_values PROJECT_ROOT = Path(__file__).resolve().parents[1] @@ -32,8 +33,14 @@ from api.client import APIClient from config.settings import AppConfig from database.connection import DatabaseConnection from models.parsers import TypeParser -from tasks.ods_tasks import ENABLED_ODS_CODES, ODS_TASK_SPECS +from tasks.ods_tasks import BaseOdsTask, ENABLED_ODS_CODES, ODS_TASK_SPECS from utils.logging_utils import build_log_path, configure_logging +from utils.ods_record_utils import ( + get_value_case_insensitive, + merge_record_layers, + normalize_pk_value, + pk_tuple_from_record, +) from utils.windowing import split_window DEFAULT_START = "2025-07-01" @@ -74,38 +81,7 @@ def _iter_windows(start: datetime, end: datetime, window_size: timedelta) -> Ite def _merge_record_layers(record: dict) -> dict: - merged = record - data_part = merged.get("data") - while isinstance(data_part, dict): - merged = {**data_part, **merged} - data_part = data_part.get("data") - settle_inner = merged.get("settleList") - if isinstance(settle_inner, dict): - merged = {**settle_inner, **merged} - return merged - - -def _get_value_case_insensitive(record: dict | None, col: str | None): - if record is None or col is None: - return None - if col in record: - return record.get(col) - col_lower = col.lower() - for k, v in record.items(): - if isinstance(k, str) and k.lower() == col_lower: - return v - return None - - -def _normalize_pk_value(value): - if value is None: - return None - if isinstance(value, str) and value.isdigit(): - try: - return int(value) - except Exception: - return value - return value + return merge_record_layers(record) def _chunked(seq: Sequence, size: int) -> Iterable[Sequence]: @@ -133,7 +109,24 @@ def _get_table_pk_columns(conn, table: str) -> list[str]: """ with conn.cursor() as cur: cur.execute(sql, (schema, name)) - return [r[0] for r in cur.fetchall()] + cols = [r[0] for r in cur.fetchall()] + return [c for c in cols if c.lower() != "content_hash"] + + +def _table_has_column(conn, table: str, column: str) -> bool: + if "." in table: + schema, name = table.split(".", 1) + else: + schema, name = "public", table + sql = """ + SELECT 1 + FROM information_schema.columns + WHERE table_schema = %s AND table_name = %s AND column_name = %s + LIMIT 1 + """ + with conn.cursor() as cur: + cur.execute(sql, (schema, name, column)) + return cur.fetchone() is not None def _fetch_existing_pk_set(conn, table: str, pk_cols: Sequence[str], pk_values: list[tuple], chunk_size: int) -> set[tuple]: @@ -155,6 +148,54 @@ def _fetch_existing_pk_set(conn, table: str, pk_cols: Sequence[str], pk_values: return existing +def _fetch_existing_pk_hash_set( + conn, table: str, pk_cols: Sequence[str], pk_hash_values: list[tuple], chunk_size: int +) -> set[tuple]: + if not pk_hash_values: + return set() + select_cols = ", ".join([*(f't.\"{c}\"' for c in pk_cols), 't.\"content_hash\"']) + value_cols = ", ".join([*(f'\"{c}\"' for c in pk_cols), '\"content_hash\"']) + join_cond = " AND ".join([*(f't.\"{c}\" = v.\"{c}\"' for c in pk_cols), 't.\"content_hash\" = v.\"content_hash\"']) + sql = ( + f"SELECT {select_cols} FROM {table} t " + f"JOIN (VALUES %s) AS v({value_cols}) ON {join_cond}" + ) + existing: set[tuple] = set() + with conn.cursor() as cur: + for chunk in _chunked(pk_hash_values, chunk_size): + execute_values(cur, sql, chunk, page_size=len(chunk)) + for row in cur.fetchall(): + existing.add(tuple(row)) + return existing + + +def _init_db_state(cfg: AppConfig) -> dict: + db_conn = DatabaseConnection(dsn=cfg["db"]["dsn"], session=cfg["db"].get("session")) + try: + db_conn.conn.rollback() + except Exception: + pass + db_conn.conn.autocommit = True + return {"db": db_conn, "conn": db_conn.conn} + + +def _reconnect_db(db_state: dict, cfg: AppConfig, logger: logging.Logger): + try: + db_state.get("db").close() + except Exception: + pass + db_state.update(_init_db_state(cfg)) + logger.warning("DB connection reset/reconnected") + return db_state["conn"] + + +def _ensure_db_conn(db_state: dict, cfg: AppConfig, logger: logging.Logger): + conn = db_state.get("conn") + if conn is None or getattr(conn, "closed", 0): + return _reconnect_db(db_state, cfg, logger) + return conn + + def _merge_common_params(cfg: AppConfig, task_code: str, base: dict) -> dict: merged: dict = {} common = cfg.get("api.params", {}) or {} @@ -182,19 +223,22 @@ def _build_params(cfg: AppConfig, spec, store_id: int, window_start: datetime | return _merge_common_params(cfg, spec.code, base) -def _pk_tuple_from_record(record: dict, pk_cols: Sequence[str]) -> tuple | None: - merged = _merge_record_layers(record) +def _pk_tuple_from_merged(merged: dict, pk_cols: Sequence[str]) -> tuple | None: values = [] for col in pk_cols: - val = _normalize_pk_value(_get_value_case_insensitive(merged, col)) + val = normalize_pk_value(get_value_case_insensitive(merged, col)) if val is None or val == "": return None values.append(val) return tuple(values) +def _pk_tuple_from_record(record: dict, pk_cols: Sequence[str]) -> tuple | None: + return pk_tuple_from_record(record, pk_cols) + + def _pk_tuple_from_ticket_candidate(value) -> tuple | None: - val = _normalize_pk_value(value) + val = normalize_pk_value(value) if val is None or val == "": return None return (val,) @@ -204,10 +248,17 @@ def _format_missing_sample(pk_cols: Sequence[str], pk_tuple: tuple) -> dict: return {col: pk_tuple[idx] for idx, col in enumerate(pk_cols)} +def _format_mismatch_sample(pk_cols: Sequence[str], pk_tuple: tuple, content_hash: str | None) -> dict: + sample = _format_missing_sample(pk_cols, pk_tuple) + if content_hash: + sample["content_hash"] = content_hash + return sample + + def _check_spec( *, client: APIClient, - db_conn, + db_state: dict, cfg: AppConfig, tz: ZoneInfo, logger: logging.Logger, @@ -219,6 +270,8 @@ def _check_spec( page_size: int, chunk_size: int, sample_limit: int, + compare_content: bool, + content_sample_limit: int, sleep_per_window: float, sleep_per_page: float, ) -> dict: @@ -231,19 +284,34 @@ def _check_spec( "records_with_pk": 0, "missing": 0, "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], "pages": 0, "skipped_missing_pk": 0, "errors": 0, "error_detail": None, } - pk_cols = _get_table_pk_columns(db_conn, spec.table_name) + db_conn = _ensure_db_conn(db_state, cfg, logger) + try: + pk_cols = _get_table_pk_columns(db_conn, spec.table_name) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + pk_cols = _get_table_pk_columns(db_conn, spec.table_name) result["pk_columns"] = pk_cols if not pk_cols: result["errors"] = 1 result["error_detail"] = "no primary key columns found" return result + try: + has_content_hash = bool(compare_content and _table_has_column(db_conn, spec.table_name, "content_hash")) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + has_content_hash = bool(compare_content and _table_has_column(db_conn, spec.table_name, "content_hash")) + result["compare_content"] = bool(compare_content) + result["content_hash_supported"] = has_content_hash + if spec.requires_window and spec.time_fields: if not start or not end: result["errors"] = 1 @@ -293,24 +361,33 @@ def _check_spec( result["pages"] += 1 result["records"] += len(records) pk_tuples: list[tuple] = [] + pk_hash_tuples: list[tuple] = [] for rec in records: if not isinstance(rec, dict): result["skipped_missing_pk"] += 1 window_skipped += 1 continue - pk_tuple = _pk_tuple_from_record(rec, pk_cols) + merged = _merge_record_layers(rec) + pk_tuple = _pk_tuple_from_merged(merged, pk_cols) if not pk_tuple: result["skipped_missing_pk"] += 1 window_skipped += 1 continue pk_tuples.append(pk_tuple) + if has_content_hash: + content_hash = BaseOdsTask._compute_content_hash(merged, include_fetched_at=False) + pk_hash_tuples.append((*pk_tuple, content_hash)) if not pk_tuples: continue result["records_with_pk"] += len(pk_tuples) pk_unique = list(dict.fromkeys(pk_tuples)) - existing = _fetch_existing_pk_set(db_conn, spec.table_name, pk_cols, pk_unique, chunk_size) + try: + existing = _fetch_existing_pk_set(db_conn, spec.table_name, pk_cols, pk_unique, chunk_size) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + existing = _fetch_existing_pk_set(db_conn, spec.table_name, pk_cols, pk_unique, chunk_size) for pk_tuple in pk_unique: if pk_tuple in existing: continue @@ -321,6 +398,29 @@ def _check_spec( window_missing += 1 if len(result["missing_samples"]) < sample_limit: result["missing_samples"].append(_format_missing_sample(pk_cols, pk_tuple)) + + if has_content_hash and pk_hash_tuples: + pk_hash_unique = list(dict.fromkeys(pk_hash_tuples)) + try: + existing_hash = _fetch_existing_pk_hash_set( + db_conn, spec.table_name, pk_cols, pk_hash_unique, chunk_size + ) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + existing_hash = _fetch_existing_pk_hash_set( + db_conn, spec.table_name, pk_cols, pk_hash_unique, chunk_size + ) + for pk_hash_tuple in pk_hash_unique: + pk_tuple = pk_hash_tuple[:-1] + if pk_tuple not in existing: + continue + if pk_hash_tuple in existing_hash: + continue + result["mismatch"] += 1 + if len(result["mismatch_samples"]) < content_sample_limit: + result["mismatch_samples"].append( + _format_mismatch_sample(pk_cols, pk_tuple, pk_hash_tuple[-1]) + ) if logger.isEnabledFor(logging.DEBUG): logger.debug( "PAGE task=%s idx=%s page=%s records=%s missing=%s skipped=%s", @@ -369,7 +469,7 @@ def _check_spec( def _check_settlement_tickets( *, client: APIClient, - db_conn, + db_state: dict, cfg: AppConfig, tz: ZoneInfo, logger: logging.Logger, @@ -380,11 +480,18 @@ def _check_settlement_tickets( page_size: int, chunk_size: int, sample_limit: int, + compare_content: bool, + content_sample_limit: int, sleep_per_window: float, sleep_per_page: float, ) -> dict: table_name = "billiards_ods.settlement_ticket_details" - pk_cols = _get_table_pk_columns(db_conn, table_name) + db_conn = _ensure_db_conn(db_state, cfg, logger) + try: + pk_cols = _get_table_pk_columns(db_conn, table_name) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + pk_cols = _get_table_pk_columns(db_conn, table_name) result = { "task_code": "ODS_SETTLEMENT_TICKET", "table": table_name, @@ -394,6 +501,8 @@ def _check_settlement_tickets( "records_with_pk": 0, "missing": 0, "missing_samples": [], + "mismatch": 0, + "mismatch_samples": [], "pages": 0, "skipped_missing_pk": 0, "errors": 0, @@ -476,7 +585,11 @@ def _check_settlement_tickets( result["records_with_pk"] += len(pk_tuples) pk_unique = list(dict.fromkeys(pk_tuples)) - existing = _fetch_existing_pk_set(db_conn, table_name, pk_cols, pk_unique, chunk_size) + try: + existing = _fetch_existing_pk_set(db_conn, table_name, pk_cols, pk_unique, chunk_size) + except (OperationalError, InterfaceError): + db_conn = _reconnect_db(db_state, cfg, logger) + existing = _fetch_existing_pk_set(db_conn, table_name, pk_cols, pk_unique, chunk_size) for pk_tuple in pk_unique: if pk_tuple in existing: continue @@ -585,6 +698,8 @@ def run_gap_check( cutoff_overlap_hours: int, allow_small_window: bool, logger: logging.Logger, + compare_content: bool = False, + content_sample_limit: int | None = None, window_split_unit: str | None = None, window_compensation_hours: int | None = None, ) -> dict: @@ -668,6 +783,9 @@ def run_gap_check( if windows: start, end = windows[0][0], windows[-1][1] + if content_sample_limit is None: + content_sample_limit = sample_limit + logger.info( "START range=%s~%s window_days=%s window_hours=%s split_unit=%s comp_hours=%s page_size=%s chunk_size=%s", start.isoformat() if isinstance(start, datetime) else None, @@ -690,12 +808,7 @@ def run_gap_check( headers_extra=cfg["api"].get("headers_extra") or {}, ) - db_conn = DatabaseConnection(dsn=cfg["db"]["dsn"], session=cfg["db"].get("session")) - try: - db_conn.conn.rollback() - except Exception: - pass - db_conn.conn.autocommit = True + db_state = _init_db_state(cfg) try: task_filter = {t.strip().upper() for t in (task_codes or "").split(",") if t.strip()} specs = [s for s in ODS_TASK_SPECS if s.code in ENABLED_ODS_CODES] @@ -708,7 +821,7 @@ def run_gap_check( continue result = _check_spec( client=client, - db_conn=db_conn.conn, + db_state=db_state, cfg=cfg, tz=tz, logger=logger, @@ -720,6 +833,8 @@ def run_gap_check( page_size=page_size, chunk_size=chunk_size, sample_limit=sample_limit, + compare_content=compare_content, + content_sample_limit=content_sample_limit, sleep_per_window=sleep_per_window, sleep_per_page=sleep_per_page, ) @@ -735,7 +850,7 @@ def run_gap_check( if (not task_filter) or ("ODS_SETTLEMENT_TICKET" in task_filter): ticket_result = _check_settlement_tickets( client=client, - db_conn=db_conn.conn, + db_state=db_state, cfg=cfg, tz=tz, logger=logger, @@ -746,6 +861,8 @@ def run_gap_check( page_size=page_size, chunk_size=chunk_size, sample_limit=sample_limit, + compare_content=compare_content, + content_sample_limit=content_sample_limit, sleep_per_window=sleep_per_window, sleep_per_page=sleep_per_page, ) @@ -759,6 +876,7 @@ def run_gap_check( ) total_missing = sum(int(r.get("missing") or 0) for r in results) + total_mismatch = sum(int(r.get("mismatch") or 0) for r in results) total_errors = sum(int(r.get("errors") or 0) for r in results) payload = { @@ -772,16 +890,22 @@ def run_gap_check( "page_size": page_size, "chunk_size": chunk_size, "sample_limit": sample_limit, + "compare_content": compare_content, + "content_sample_limit": content_sample_limit, "store_id": store_id, "base_url": cfg.get("api.base_url"), "results": results, "total_missing": total_missing, + "total_mismatch": total_mismatch, "total_errors": total_errors, "generated_at": datetime.now(tz).isoformat(), } return payload finally: - db_conn.close() + try: + db_state.get("db").close() + except Exception: + pass def main() -> int: @@ -796,6 +920,13 @@ def main() -> int: ap.add_argument("--page-size", type=int, default=200, help="API page size (default: 200)") ap.add_argument("--chunk-size", type=int, default=500, help="DB query chunk size (default: 500)") ap.add_argument("--sample-limit", type=int, default=50, help="max missing PK samples per table") + ap.add_argument("--compare-content", action="store_true", help="compare record content hash (mismatch detection)") + ap.add_argument( + "--content-sample-limit", + type=int, + default=None, + help="max mismatch samples per table (default: same as --sample-limit)", + ) ap.add_argument("--sleep-per-window-seconds", type=float, default=0, help="sleep seconds after each window") ap.add_argument("--sleep-per-page-seconds", type=float, default=0, help="sleep seconds after each page") ap.add_argument("--task-codes", default="", help="comma-separated task codes to check (optional)") @@ -847,6 +978,8 @@ def main() -> int: cutoff_overlap_hours=args.cutoff_overlap_hours, allow_small_window=args.allow_small_window, logger=logger, + compare_content=args.compare_content, + content_sample_limit=args.content_sample_limit, window_split_unit=args.window_split_unit or None, window_compensation_hours=args.window_compensation_hours, ) @@ -862,8 +995,9 @@ def main() -> int: out_path.write_text(json.dumps(payload, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") logger.info("REPORT_WRITTEN path=%s", out_path) logger.info( - "SUMMARY missing=%s errors=%s", + "SUMMARY missing=%s mismatch=%s errors=%s", payload.get("total_missing"), + payload.get("total_mismatch"), payload.get("total_errors"), ) diff --git a/etl_billiards/scripts/migrate_snapshot_ods.py b/etl_billiards/scripts/migrate_snapshot_ods.py new file mode 100644 index 0000000..fed58d6 --- /dev/null +++ b/etl_billiards/scripts/migrate_snapshot_ods.py @@ -0,0 +1,324 @@ +# -*- coding: utf-8 -*- +""" +迁移到“快照型 ODS + DWD SCD2”: +1) 为所有 ODS 表补充 content_hash,并以 (业务主键, content_hash) 作为新主键; +2) 基于 payload 计算 content_hash,避免重复快照; +3) 为所有 DWD 维度表补齐 SCD2 字段,并调整主键为 (业务主键, scd2_start_time)。 + +用法: + PYTHONPATH=. python -m etl_billiards.scripts.migrate_snapshot_ods --dsn "postgresql://..." + +可选参数: + --only-ods / --only-dwd + --dry-run + --batch-size 500 +""" +from __future__ import annotations + +import argparse +import hashlib +import json +import os +from typing import Any, Iterable, List, Sequence + +import psycopg2 +from psycopg2.extras import execute_batch, RealDictCursor + + +def _hash_default(value): + return value.isoformat() if hasattr(value, "isoformat") else str(value) + + +def _sanitize_record_for_hash(record: Any) -> Any: + exclude = { + "data", + "payload", + "source_file", + "source_endpoint", + "fetched_at", + "content_hash", + "record_index", + } + + def _strip(value): + if isinstance(value, dict): + cleaned = {} + for k, v in value.items(): + if isinstance(k, str) and k.lower() in exclude: + continue + cleaned[k] = _strip(v) + return cleaned + if isinstance(value, list): + return [_strip(v) for v in value] + return value + + return _strip(record or {}) + + +def _compute_content_hash(record: Any) -> str: + cleaned = _sanitize_record_for_hash(record) + payload = json.dumps( + cleaned, + ensure_ascii=False, + sort_keys=True, + separators=(",", ":"), + default=_hash_default, + ) + return hashlib.sha256(payload.encode("utf-8")).hexdigest() + + +def _fetch_tables(cur, schema: str) -> List[str]: + cur.execute( + """ + SELECT table_name + FROM information_schema.tables + WHERE table_schema = %s AND table_type = 'BASE TABLE' + ORDER BY table_name + """, + (schema,), + ) + return [r[0] for r in cur.fetchall()] + + +def _fetch_columns(cur, schema: str, table: str) -> List[str]: + cur.execute( + """ + SELECT column_name + FROM information_schema.columns + WHERE table_schema = %s AND table_name = %s + ORDER BY ordinal_position + """, + (schema, table), + ) + cols = [] + for row in cur.fetchall(): + if isinstance(row, dict): + cols.append(row.get("column_name")) + else: + cols.append(row[0]) + return [c for c in cols if c] + + +def _fetch_pk_constraint(cur, schema: str, table: str) -> tuple[str | None, list[str]]: + cur.execute( + """ + SELECT tc.constraint_name, kcu.column_name, kcu.ordinal_position + FROM information_schema.table_constraints tc + JOIN information_schema.key_column_usage kcu + ON tc.constraint_name = kcu.constraint_name + AND tc.table_schema = kcu.table_schema + WHERE tc.constraint_type = 'PRIMARY KEY' + AND tc.table_schema = %s + AND tc.table_name = %s + ORDER BY kcu.ordinal_position + """, + (schema, table), + ) + rows = cur.fetchall() + if not rows: + return None, [] + if isinstance(rows[0], dict): + name = rows[0].get("constraint_name") + cols = [r.get("column_name") for r in rows] + else: + name = rows[0][0] + cols = [r[1] for r in rows] + return name, [c for c in cols if c] + + +def _ensure_content_hash_column(cur, schema: str, table: str, dry_run: bool) -> None: + cols = _fetch_columns(cur, schema, table) + if any(c.lower() == "content_hash" for c in cols): + return + sql = f'ALTER TABLE "{schema}"."{table}" ADD COLUMN content_hash TEXT' + if dry_run: + print(f"[DRY] {sql}") + return + print(f"[ODS] 添加 content_hash: {schema}.{table}") + cur.execute(sql) + + +def _backfill_content_hash(conn, schema: str, table: str, batch_size: int, dry_run: bool) -> int: + updated = 0 + with conn.cursor(cursor_factory=RealDictCursor) as cur: + cols = _fetch_columns(cur, schema, table) + if "content_hash" not in [c.lower() for c in cols]: + return 0 + pk_name, pk_cols = _fetch_pk_constraint(cur, schema, table) + if not pk_cols: + return 0 + # 过滤 content_hash + pk_cols = [c for c in pk_cols if c.lower() != "content_hash"] + select_cols = [*pk_cols] + if any(c.lower() == "payload" for c in cols): + select_cols.append("payload") + else: + select_cols.extend([c for c in cols if c.lower() not in {"content_hash"}]) + select_cols_sql = ", ".join(f'"{c}"' for c in select_cols) + sql = f'SELECT {select_cols_sql} FROM "{schema}"."{table}" WHERE content_hash IS NULL' + cur.execute(sql) + rows = cur.fetchall() + + if not rows: + return 0 + + def build_row(row: dict) -> tuple: + payload = row.get("payload") + if payload is None: + payload = {k: v for k, v in row.items() if k.lower() not in {"content_hash", "payload"}} + content_hash = _compute_content_hash(payload) + key_vals = [row.get(k) for k in pk_cols] + return (content_hash, *key_vals) + + updates = [build_row(r) for r in rows] + if dry_run: + print(f"[DRY] {schema}.{table}: 预计更新 {len(updates)} 行 content_hash") + return len(updates) + + where_clause = " AND ".join([f'"{c}" = %s' for c in pk_cols]) + update_sql = ( + f'UPDATE "{schema}"."{table}" SET content_hash = %s ' + f'WHERE {where_clause} AND content_hash IS NULL' + ) + with conn.cursor() as cur2: + execute_batch(cur2, update_sql, updates, page_size=batch_size) + updated = cur2.rowcount or len(updates) + print(f"[ODS] {schema}.{table}: 更新 content_hash {updated} 行") + return updated + + +def _ensure_ods_primary_key(cur, schema: str, table: str, dry_run: bool) -> None: + name, pk_cols = _fetch_pk_constraint(cur, schema, table) + if not pk_cols: + return + if any(c.lower() == "content_hash" for c in pk_cols): + return + new_pk = pk_cols + ["content_hash"] + drop_sql = f'ALTER TABLE "{schema}"."{table}" DROP CONSTRAINT "{name}"' + cols_sql = ", ".join([f'"{c}"' for c in new_pk]) + add_sql = f'ALTER TABLE "{schema}"."{table}" ADD PRIMARY KEY ({cols_sql})' + if dry_run: + print(f"[DRY] {drop_sql}") + print(f"[DRY] {add_sql}") + return + print(f"[ODS] 变更主键: {schema}.{table} -> ({', '.join(new_pk)})") + cur.execute(drop_sql) + cur.execute(add_sql) + + +def _migrate_ods(conn, schema: str, batch_size: int, dry_run: bool) -> None: + with conn.cursor() as cur: + tables = _fetch_tables(cur, schema) + for table in tables: + with conn.cursor() as cur: + _ensure_content_hash_column(cur, schema, table, dry_run) + conn.commit() + _backfill_content_hash(conn, schema, table, batch_size, dry_run) + with conn.cursor() as cur: + _ensure_ods_primary_key(cur, schema, table, dry_run) + conn.commit() + + +def _backfill_scd2_fields(cur, schema: str, table: str, columns: Sequence[str], dry_run: bool) -> None: + lower = {c.lower() for c in columns} + fallback_cols = [ + "updated_at", + "update_time", + "created_at", + "create_time", + "fetched_at", + ] + fallback = None + for col in fallback_cols: + if col in lower: + fallback = f'"{col}"' + break + if fallback is None: + fallback = "now()" + + sql = ( + f'UPDATE "{schema}"."{table}" ' + f'SET scd2_start_time = COALESCE(scd2_start_time, {fallback}), ' + f"scd2_end_time = COALESCE(scd2_end_time, TIMESTAMPTZ '9999-12-31'), " + f"scd2_is_current = COALESCE(scd2_is_current, 1), " + f"scd2_version = COALESCE(scd2_version, 1) " + f"WHERE scd2_start_time IS NULL OR scd2_end_time IS NULL OR scd2_is_current IS NULL OR scd2_version IS NULL" + ) + if dry_run: + print(f"[DRY] {sql}") + return + cur.execute(sql) + + +def _ensure_dwd_primary_key(cur, schema: str, table: str, dry_run: bool) -> None: + name, pk_cols = _fetch_pk_constraint(cur, schema, table) + if not pk_cols: + return + if any(c.lower() == "scd2_start_time" for c in pk_cols): + return + new_pk = pk_cols + ["scd2_start_time"] + drop_sql = f'ALTER TABLE "{schema}"."{table}" DROP CONSTRAINT "{name}"' + cols_sql = ", ".join([f'"{c}"' for c in new_pk]) + add_sql = f'ALTER TABLE "{schema}"."{table}" ADD PRIMARY KEY ({cols_sql})' + if dry_run: + print(f"[DRY] {drop_sql}") + print(f"[DRY] {add_sql}") + return + print(f"[DWD] 变更主键: {schema}.{table} -> ({', '.join(new_pk)})") + cur.execute(drop_sql) + cur.execute(add_sql) + + +def _migrate_dwd(conn, schema: str, dry_run: bool) -> None: + with conn.cursor() as cur: + cur.execute( + """ + SELECT DISTINCT table_name + FROM information_schema.columns + WHERE table_schema = %s AND column_name ILIKE 'scd2_start_time' + ORDER BY table_name + """, + (schema,), + ) + tables = [r[0] for r in cur.fetchall()] + + for table in tables: + with conn.cursor() as cur: + cols = _fetch_columns(cur, schema, table) + _backfill_scd2_fields(cur, schema, table, cols, dry_run) + conn.commit() + with conn.cursor() as cur: + _ensure_dwd_primary_key(cur, schema, table, dry_run) + conn.commit() + + +def main() -> int: + parser = argparse.ArgumentParser(description="迁移 ODS 快照 + DWD SCD2") + parser.add_argument("--dsn", dest="dsn", help="PostgreSQL DSN(也可用环境变量 PG_DSN)") + parser.add_argument("--schema-ods", dest="schema_ods", default="billiards_ods") + parser.add_argument("--schema-dwd", dest="schema_dwd", default="billiards_dwd") + parser.add_argument("--batch-size", dest="batch_size", type=int, default=500) + parser.add_argument("--only-ods", dest="only_ods", action="store_true") + parser.add_argument("--only-dwd", dest="only_dwd", action="store_true") + parser.add_argument("--dry-run", dest="dry_run", action="store_true") + args = parser.parse_args() + + dsn = args.dsn or os.environ.get("PG_DSN") + if not dsn: + print("缺少 DSN(--dsn 或环境变量 PG_DSN)") + return 2 + + conn = psycopg2.connect(dsn) + conn.autocommit = False + try: + if not args.only_dwd: + _migrate_ods(conn, args.schema_ods, args.batch_size, args.dry_run) + if not args.only_ods: + _migrate_dwd(conn, args.schema_dwd, args.dry_run) + return 0 + finally: + conn.close() + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/etl_billiards/tasks/data_integrity_task.py b/etl_billiards/tasks/data_integrity_task.py index bba9b1d..4f7a253 100644 --- a/etl_billiards/tasks/data_integrity_task.py +++ b/etl_billiards/tasks/data_integrity_task.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- """Data integrity task that checks API -> ODS -> DWD completeness.""" from __future__ import annotations @@ -7,16 +7,9 @@ from zoneinfo import ZoneInfo from dateutil import parser as dtparser -import json -from pathlib import Path from utils.windowing import build_window_segments, calc_window_minutes from .base_task import BaseTask -from quality.integrity_checker import ( - IntegrityWindow, - compute_last_etl_end, - run_integrity_history, - run_integrity_window, -) +from quality.integrity_service import run_history_flow, run_window_flow, write_report class DataIntegrityTask(BaseTask): @@ -31,15 +24,25 @@ class DataIntegrityTask(BaseTask): include_dimensions = bool(self.config.get("integrity.include_dimensions", False)) task_codes = str(self.config.get("integrity.ods_task_codes", "") or "").strip() auto_backfill = bool(self.config.get("integrity.auto_backfill", False)) + compare_content = self.config.get("integrity.compare_content") + if compare_content is None: + compare_content = True + content_sample_limit = self.config.get("integrity.content_sample_limit") + backfill_mismatch = self.config.get("integrity.backfill_mismatch") + if backfill_mismatch is None: + backfill_mismatch = True + recheck_after_backfill = self.config.get("integrity.recheck_after_backfill") + if recheck_after_backfill is None: + recheck_after_backfill = True - # 检测是否通过 CLI 传入了时间窗口参数(window_override) - # 如果有,自动切换到 window 模式 + # Switch to window mode when CLI override is provided. window_override_start = self.config.get("run.window_override.start") window_override_end = self.config.get("run.window_override.end") if window_override_start or window_override_end: self.logger.info( - "检测到 CLI 时间窗口参数,自动切换到 window 模式: %s ~ %s", - window_override_start, window_override_end + "Detected CLI window override. Switching to window mode: %s ~ %s", + window_override_start, + window_override_end, ) mode = "window" @@ -57,65 +60,28 @@ class DataIntegrityTask(BaseTask): total_segments = len(segments) if total_segments > 1: - self.logger.info("数据完整性检查: 分段执行 共%s段", total_segments) + self.logger.info("Data integrity check split into %s segments.", total_segments) - window_reports = [] - total_missing = 0 - total_errors = 0 - for idx, (seg_start, seg_end) in enumerate(segments, start=1): - window = IntegrityWindow( - start=seg_start, - end=seg_end, - label=f"segment_{idx}", - granularity="window", - ) - payload = run_integrity_window( - cfg=self.config, - window=window, - include_dimensions=include_dimensions, - task_codes=task_codes, - logger=self.logger, - write_report=False, - window_split_unit="none", - window_compensation_hours=0, - ) - window_reports.append(payload) - total_missing += int(payload.get("api_to_ods", {}).get("total_missing") or 0) - total_errors += int(payload.get("api_to_ods", {}).get("total_errors") or 0) + report, counts = run_window_flow( + cfg=self.config, + windows=segments, + include_dimensions=include_dimensions, + task_codes=task_codes, + logger=self.logger, + compare_content=bool(compare_content), + content_sample_limit=content_sample_limit, + do_backfill=bool(auto_backfill), + include_mismatch=bool(backfill_mismatch), + recheck_after_backfill=bool(recheck_after_backfill), + page_size=int(self.config.get("api.page_size") or 200), + chunk_size=500, + ) overall_start = segments[0][0] overall_end = segments[-1][1] - report = { - "mode": "window", - "window": { - "start": overall_start.isoformat(), - "end": overall_end.isoformat(), - "segments": total_segments, - }, - "windows": window_reports, - "api_to_ods": { - "total_missing": total_missing, - "total_errors": total_errors, - }, - "total_missing": total_missing, - "total_errors": total_errors, - "generated_at": datetime.now(tz).isoformat(), - } - report_path = self._write_report(report, "data_integrity_window") + report_path = write_report(report, prefix="data_integrity_window", tz=tz) report["report_path"] = report_path - missing_count = int(total_missing or 0) - counts = { - "missing": missing_count, - "errors": int(total_errors or 0), - } - - # ???? - backfill_result = None - if auto_backfill and missing_count > 0: - backfill_result = self._run_backfill(base_start, base_end, task_codes) - counts["backfilled"] = backfill_result.get("backfilled", 0) - return { "status": "SUCCESS", "counts": counts, @@ -125,7 +91,7 @@ class DataIntegrityTask(BaseTask): "minutes": calc_window_minutes(overall_start, overall_end), }, "report_path": report_path, - "backfill_result": backfill_result, + "backfill_result": report.get("backfill_result"), } history_start = str(self.config.get("integrity.history_start", "2025-07-01") or "2025-07-01") @@ -136,77 +102,52 @@ class DataIntegrityTask(BaseTask): else: start_dt = start_dt.astimezone(tz) + end_dt = None if history_end: end_dt = dtparser.parse(history_end) if end_dt.tzinfo is None: end_dt = end_dt.replace(tzinfo=tz) else: end_dt = end_dt.astimezone(tz) - else: - end_dt = compute_last_etl_end(self.config) or datetime.now(tz) - report = run_integrity_history( + report, counts = run_history_flow( cfg=self.config, start_dt=start_dt, end_dt=end_dt, include_dimensions=include_dimensions, task_codes=task_codes, logger=self.logger, - write_report=True, + compare_content=bool(compare_content), + content_sample_limit=content_sample_limit, + do_backfill=bool(auto_backfill), + include_mismatch=bool(backfill_mismatch), + recheck_after_backfill=bool(recheck_after_backfill), + page_size=int(self.config.get("api.page_size") or 200), + chunk_size=500, ) - missing_count = int(report.get("total_missing") or 0) - counts = { - "missing": missing_count, - "errors": int(report.get("total_errors") or 0), - } - - # 自动补全 - backfill_result = None - if auto_backfill and missing_count > 0: - backfill_result = self._run_backfill(start_dt, end_dt, task_codes) - counts["backfilled"] = backfill_result.get("backfilled", 0) - + report_path = write_report(report, prefix="data_integrity_history", tz=tz) + report["report_path"] = report_path + + end_dt_used = end_dt + if end_dt_used is None: + end_str = report.get("end") + if end_str: + parsed = dtparser.parse(end_str) + if parsed.tzinfo is None: + end_dt_used = parsed.replace(tzinfo=tz) + else: + end_dt_used = parsed.astimezone(tz) + if end_dt_used is None: + end_dt_used = start_dt + return { "status": "SUCCESS", "counts": counts, "window": { "start": start_dt, - "end": end_dt, - "minutes": int((end_dt - start_dt).total_seconds() // 60) if end_dt > start_dt else 0, + "end": end_dt_used, + "minutes": int((end_dt_used - start_dt).total_seconds() // 60) if end_dt_used > start_dt else 0, }, - "report_path": report.get("report_path"), - "backfill_result": backfill_result, + "report_path": report_path, + "backfill_result": report.get("backfill_result"), } - - def _write_report(self, report: dict, prefix: str) -> str: - root = Path(__file__).resolve().parents[1] - stamp = datetime.now(self.tz).strftime("%Y%m%d_%H%M%S") - path = root / "reports" / f"{prefix}_{stamp}.json" - path.parent.mkdir(parents=True, exist_ok=True) - path.write_text(json.dumps(report, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") - return str(path) - - def _run_backfill(self, start_dt: datetime, end_dt: datetime, task_codes: str) -> dict: - """运行数据补全""" - self.logger.info("自动补全开始 起始=%s 结束=%s", start_dt, end_dt) - try: - from scripts.backfill_missing_data import run_backfill - result = run_backfill( - cfg=self.config, - start=start_dt, - end=end_dt, - task_codes=task_codes or None, - dry_run=False, - page_size=200, - chunk_size=500, - logger=self.logger, - ) - self.logger.info( - "自动补全完成 已补全=%s 错误数=%s", - result.get("backfilled", 0), - result.get("errors", 0), - ) - return result - except Exception as exc: - self.logger.exception("自动补全失败") - return {"backfilled": 0, "errors": 1, "error": str(exc)} diff --git a/etl_billiards/tasks/dwd_load_task.py b/etl_billiards/tasks/dwd_load_task.py index f7e841c..62ca7e8 100644 --- a/etl_billiards/tasks/dwd_load_task.py +++ b/etl_billiards/tasks/dwd_load_task.py @@ -2,8 +2,10 @@ """DWD 装载任务:从 ODS 增量写入 DWD(维度 SCD2,事实按时间增量)。""" from __future__ import annotations +import re import time -from datetime import datetime +from datetime import date, datetime +from decimal import Decimal, InvalidOperation from typing import Any, Dict, Iterable, List, Sequence from psycopg2.extras import RealDictCursor, execute_batch, execute_values @@ -77,6 +79,37 @@ class DwdLoadTask(BaseTask): "billiards_dwd.dwd_assistant_service_log", } + _NUMERIC_RE = re.compile(r"^[+-]?\d+(?:\.\d+)?$") + _BOOL_STRINGS = {"true", "false", "1", "0", "yes", "no", "y", "n", "t", "f"} + + def _strip_scd2_keys(self, pk_cols: Sequence[str]) -> list[str]: + return [c for c in pk_cols if c.lower() not in self.SCD_COLS] + + @staticmethod + def _pick_snapshot_order_column(ods_cols: Sequence[str]) -> str | None: + lower_cols = {c.lower() for c in ods_cols} + for candidate in ("fetched_at", "update_time", "create_time"): + if candidate in lower_cols: + return candidate + return None + + @staticmethod + def _latest_snapshot_select_sql( + select_cols_sql: str, + ods_table_sql: str, + key_exprs: Sequence[str], + order_col: str | None, + where_sql: str = "", + ) -> str: + if key_exprs and order_col: + distinct_on = ", ".join(key_exprs) + order_by = ", ".join([*key_exprs, f'"{order_col}" DESC NULLS LAST']) + return ( + f"SELECT DISTINCT ON ({distinct_on}) {select_cols_sql} " + f"FROM {ods_table_sql} {where_sql} ORDER BY {order_by}" + ) + return f"SELECT {select_cols_sql} FROM {ods_table_sql} {where_sql}" + # 特殊列映射:dwd 列名 -> 源列表达式(可选 CAST) FACT_MAPPINGS: dict[str, list[tuple[str, str, str | None]]] = { # 维度表(补齐主键/字段差异) @@ -652,9 +685,8 @@ class DwdLoadTask(BaseTask): if not pk_cols: raise ValueError(f"{dwd_table} 未配置主键,无法执行维表合并") - pk_has_scd = any(pk.lower() in self.SCD_COLS for pk in pk_cols) scd_cols_present = any(c.lower() in self.SCD_COLS for c in dwd_cols) - if scd_cols_present and pk_has_scd: + if scd_cols_present: return self._merge_dim_scd2(cur, dwd_table, ods_table, dwd_cols, ods_cols, now) return self._merge_dim_type1_upsert(cur, dwd_table, ods_table, dwd_cols, ods_cols, pk_cols, now) @@ -701,12 +733,19 @@ class DwdLoadTask(BaseTask): if not select_exprs: return 0 - # 对于 dim_site 和 dim_site_ex,使用 DISTINCT ON 优化查询 - # 避免从大表 table_fee_transactions 全表扫描,只获取每个 site_id 的最新记录 - if dwd_table in ("billiards_dwd.dim_site", "billiards_dwd.dim_site_ex"): - sql = f"SELECT DISTINCT ON (site_id) {', '.join(select_exprs)} FROM {ods_table_sql} ORDER BY site_id, fetched_at DESC NULLS LAST" - else: - sql = f"SELECT {', '.join(select_exprs)} FROM {ods_table_sql}" + order_col = self._pick_snapshot_order_column(ods_cols) + business_keys = self._strip_scd2_keys(pk_cols) + key_exprs: list[str] = [] + for key in business_keys: + lc = key.lower() + if lc in mapping: + src, cast_type = mapping[lc] + key_exprs.append(self._cast_expr(src, cast_type)) + elif lc in ods_set: + key_exprs.append(f'"{lc}"') + + select_cols_sql = ", ".join(select_exprs) + sql = self._latest_snapshot_select_sql(select_cols_sql, ods_table_sql, key_exprs, order_col) cur.execute(sql) rows = [{k.lower(): v for k, v in r.items()} for r in cur.fetchall()] @@ -784,7 +823,11 @@ class DwdLoadTask(BaseTask): if not pk_cols: raise ValueError(f"{dwd_table} 未配置主键,无法执行 SCD2 合并") - mapping = self._build_column_mapping(dwd_table, pk_cols, ods_cols) + business_keys = self._strip_scd2_keys(pk_cols) + if not business_keys: + raise ValueError(f"{dwd_table} primary key only contains SCD2 columns; cannot merge") + + mapping = self._build_column_mapping(dwd_table, business_keys, ods_cols) ods_set = {c.lower() for c in ods_cols} table_sql = self._format_table(ods_table, "billiards_ods") # 构造 SELECT 表达式,支持 JSON/expression 映射 @@ -806,7 +849,7 @@ class DwdLoadTask(BaseTask): select_exprs.append('"categoryboxes" AS "categoryboxes"') added.add("categoryboxes") # 主键兜底确保被选出 - for pk in pk_cols: + for pk in business_keys: lc = pk.lower() if lc not in added: if lc in mapping: @@ -819,7 +862,18 @@ class DwdLoadTask(BaseTask): if not select_exprs: return 0 - sql = f"SELECT {', '.join(select_exprs)} FROM {table_sql}" + order_col = self._pick_snapshot_order_column(ods_cols) + key_exprs: list[str] = [] + for key in business_keys: + lc = key.lower() + if lc in mapping: + src, cast_type = mapping[lc] + key_exprs.append(self._cast_expr(src, cast_type)) + elif lc in ods_set: + key_exprs.append(f'"{lc}"') + + select_cols_sql = ", ".join(select_exprs) + sql = self._latest_snapshot_select_sql(select_cols_sql, table_sql, key_exprs, order_col) cur.execute(sql) rows = [{k.lower(): v for k, v in r.items()} for r in cur.fetchall()] @@ -842,11 +896,11 @@ class DwdLoadTask(BaseTask): value = row.get(src.lower()) mapped_row[lc] = value - pk_key = tuple(mapped_row.get(pk) for pk in pk_cols) + pk_key = tuple(mapped_row.get(pk) for pk in business_keys) if pk_key in seen_pk: continue if any(v is None for v in pk_key): - self.logger.warning("跳过 %s:主键缺失 %s", dwd_table, dict(zip(pk_cols, pk_key))) + self.logger.warning("跳过 %s:主键缺失 %s", dwd_table, dict(zip(business_keys, pk_key))) continue seen_pk.add(pk_key) src_rows_by_pk[pk_key] = mapped_row @@ -862,7 +916,7 @@ class DwdLoadTask(BaseTask): current_by_pk: dict[tuple[Any, ...], Dict[str, Any]] = {} for r in current_rows: rr = {k.lower(): v for k, v in r.items()} - pk_key = tuple(rr.get(pk) for pk in pk_cols) + pk_key = tuple(rr.get(pk) for pk in business_keys) current_by_pk[pk_key] = rr # 计算需要关闭/插入的主键集合 @@ -881,7 +935,7 @@ class DwdLoadTask(BaseTask): # 先关闭旧版本(同一批次统一 end_time) if to_close: - self._close_current_dim_bulk(cur, dwd_table, pk_cols, to_close, now) + self._close_current_dim_bulk(cur, dwd_table, business_keys, to_close, now) # 批量插入新版本 if to_insert: @@ -1031,10 +1085,105 @@ class DwdLoadTask(BaseTask): lc = col.lower() if lc in self.SCD_COLS: continue - if current.get(lc) != incoming.get(lc): + if not self._values_equal(current.get(lc), incoming.get(lc)): return True return False + def _values_equal(self, current_val: Any, incoming_val: Any) -> bool: + """Normalize common type mismatches (numeric/text, naive/aware datetime) before compare.""" + current_val = self._normalize_empty(current_val) + incoming_val = self._normalize_empty(incoming_val) + if current_val is None and incoming_val is None: + return True + + # Datetime normalization (naive vs aware) + if isinstance(current_val, (datetime, date)) or isinstance(incoming_val, (datetime, date)): + return self._normalize_datetime(current_val) == self._normalize_datetime(incoming_val) + + # Boolean normalization + if self._looks_bool(current_val) or self._looks_bool(incoming_val): + cur_bool = self._coerce_bool(current_val) + inc_bool = self._coerce_bool(incoming_val) + if cur_bool is not None and inc_bool is not None: + return cur_bool == inc_bool + + # Numeric normalization (string vs numeric) + if self._looks_numeric(current_val) or self._looks_numeric(incoming_val): + cur_num = self._coerce_numeric(current_val) + inc_num = self._coerce_numeric(incoming_val) + if cur_num is not None and inc_num is not None: + return cur_num == inc_num + + return current_val == incoming_val + + def _normalize_empty(self, value: Any) -> Any: + if isinstance(value, str): + stripped = value.strip() + return None if stripped == "" else stripped + return value + + def _normalize_datetime(self, value: Any) -> Any: + if value is None: + return None + if isinstance(value, date) and not isinstance(value, datetime): + value = datetime.combine(value, datetime.min.time()) + if not isinstance(value, datetime): + return value + if value.tzinfo is None: + return value.replace(tzinfo=self.tz) + return value.astimezone(self.tz) + + def _looks_numeric(self, value: Any) -> bool: + if isinstance(value, (int, float, Decimal)) and not isinstance(value, bool): + return True + if isinstance(value, str): + return bool(self._NUMERIC_RE.match(value.strip())) + return False + + def _coerce_numeric(self, value: Any) -> Decimal | None: + value = self._normalize_empty(value) + if value is None: + return None + if isinstance(value, bool): + return Decimal(int(value)) + if isinstance(value, (int, float, Decimal)): + try: + return Decimal(str(value)) + except InvalidOperation: + return None + if isinstance(value, str): + s = value.strip() + if not self._NUMERIC_RE.match(s): + return None + try: + return Decimal(s) + except InvalidOperation: + return None + return None + + def _looks_bool(self, value: Any) -> bool: + if isinstance(value, bool): + return True + if isinstance(value, str): + return value.strip().lower() in self._BOOL_STRINGS + return False + + def _coerce_bool(self, value: Any) -> bool | None: + value = self._normalize_empty(value) + if value is None: + return None + if isinstance(value, bool): + return value + if isinstance(value, (int, Decimal)) and not isinstance(value, bool): + return bool(int(value)) + if isinstance(value, str): + s = value.strip().lower() + if s in {"true", "1", "yes", "y", "t"}: + return True + if s in {"false", "0", "no", "n", "f"}: + return False + return None + def _merge_fact_increment( self, cur, @@ -1052,6 +1201,9 @@ class DwdLoadTask(BaseTask): mapping: Dict[str, tuple[str, str | None]] = { dst.lower(): (src, cast_type) for dst, src, cast_type in mapping_entries } + ods_set = {c.lower() for c in ods_cols} + snapshot_mode = "content_hash" in ods_set + fact_upsert = bool(self.config.get("dwd.fact_upsert", True)) mapping_dest = [dst for dst, _, _ in mapping_entries] insert_cols: List[str] = list(mapping_dest) @@ -1064,7 +1216,6 @@ class DwdLoadTask(BaseTask): insert_cols.append(col) pk_cols = self._get_primary_keys(cur, dwd_table) - ods_set = {c.lower() for c in ods_cols} existing_lower = [c.lower() for c in insert_cols] for pk in pk_cols: pk_lower = pk.lower() @@ -1092,7 +1243,11 @@ class DwdLoadTask(BaseTask): self.logger.warning("跳过 %s:未找到可插入的列", dwd_table) return 0 - order_col = self._pick_order_column(dwd_table, dwd_cols, ods_cols) + order_col = ( + self._pick_snapshot_order_column(ods_cols) + if snapshot_mode + else self._pick_order_column(dwd_table, dwd_cols, ods_cols) + ) where_sql = "" params: List[Any] = [] dwd_table_sql = self._format_table(dwd_table, "billiards_dwd") @@ -1122,12 +1277,40 @@ class DwdLoadTask(BaseTask): select_cols_sql = ", ".join(select_exprs) insert_cols_sql = ", ".join(f'"{c}"' for c in insert_cols) - sql = f'INSERT INTO {dwd_table_sql} ({insert_cols_sql}) SELECT {select_cols_sql} FROM {ods_table_sql} {where_sql}' + if snapshot_mode and pk_cols: + key_exprs: list[str] = [] + for pk in pk_cols: + pk_lower = pk.lower() + if pk_lower in mapping: + src, cast_type = mapping[pk_lower] + key_exprs.append(self._cast_expr(src, cast_type)) + elif pk_lower in ods_set: + key_exprs.append(f'"{pk_lower}"') + elif "id" in ods_set: + key_exprs.append('"id"') + select_sql = self._latest_snapshot_select_sql( + select_cols_sql, + ods_table_sql, + key_exprs, + order_col, + where_sql, + ) + sql = f'INSERT INTO {dwd_table_sql} ({insert_cols_sql}) {select_sql}' + else: + sql = f'INSERT INTO {dwd_table_sql} ({insert_cols_sql}) SELECT {select_cols_sql} FROM {ods_table_sql} {where_sql}' pk_cols = self._get_primary_keys(cur, dwd_table) if pk_cols: pk_sql = ", ".join(f'"{c}"' for c in pk_cols) - sql += f" ON CONFLICT ({pk_sql}) DO NOTHING" + pk_lower = {c.lower() for c in pk_cols} + set_exprs = [f'"{c}" = EXCLUDED."{c}"' for c in insert_cols if c.lower() not in pk_lower] + if snapshot_mode or fact_upsert: + if set_exprs: + sql += f" ON CONFLICT ({pk_sql}) DO UPDATE SET {', '.join(set_exprs)}" + else: + sql += f" ON CONFLICT ({pk_sql}) DO NOTHING" + else: + sql += f" ON CONFLICT ({pk_sql}) DO NOTHING" cur.execute(sql, params) inserted = cur.rowcount diff --git a/etl_billiards/tasks/manual_ingest_task.py b/etl_billiards/tasks/manual_ingest_task.py index 15ffa7d..1b9be35 100644 --- a/etl_billiards/tasks/manual_ingest_task.py +++ b/etl_billiards/tasks/manual_ingest_task.py @@ -2,6 +2,7 @@ """手工示例数据灌入:按 schema_ODS_doc.sql 的表结构写入 ODS。""" from __future__ import annotations +import hashlib import json import os from datetime import datetime @@ -252,12 +253,17 @@ class ManualIngestTask(BaseTask): except Exception: pk_index = None + has_content_hash = any(c[0].lower() == "content_hash" for c in columns_info) + col_list = ", ".join(f'"{c}"' for c in columns) sql_prefix = f"INSERT INTO {table} ({col_list}) VALUES %s" if pk_col_db: - update_cols = [c for c in columns if c != pk_col_db] - set_clause = ", ".join(f'"{c}"=EXCLUDED."{c}"' for c in update_cols) - sql_prefix += f' ON CONFLICT ("{pk_col_db}") DO UPDATE SET {set_clause}' + if has_content_hash: + sql_prefix += f' ON CONFLICT ("{pk_col_db}", "content_hash") DO NOTHING' + else: + update_cols = [c for c in columns if c != pk_col_db] + set_clause = ", ".join(f'"{c}"=EXCLUDED."{c}"' for c in update_cols) + sql_prefix += f' ON CONFLICT ("{pk_col_db}") DO UPDATE SET {set_clause}' params = [] now = datetime.now() @@ -284,6 +290,12 @@ class ManualIngestTask(BaseTask): if pk_col and (pk_val is None or pk_val == ""): continue + content_hash = None + if has_content_hash: + hash_record = dict(merged_rec) + hash_record["fetched_at"] = merged_rec.get("fetched_at", now) + content_hash = self._compute_content_hash(hash_record, include_fetched_at=True) + row_vals = [] for col_name, data_type, udt in columns_info: col_lower = col_name.lower() @@ -296,6 +308,9 @@ class ManualIngestTask(BaseTask): if col_lower == "fetched_at": row_vals.append(merged_rec.get(col_name, now)) continue + if col_lower == "content_hash": + row_vals.append(content_hash) + continue value = self._normalize_scalar(self._get_value_case_insensitive(merged_rec, col_name)) @@ -401,3 +416,48 @@ class ManualIngestTask(BaseTask): if dt.startswith("timestamp") or dt in ("date", "time", "interval"): return value if isinstance(value, str) else None return value + + @staticmethod + def _hash_default(value): + if isinstance(value, datetime): + return value.isoformat() + return str(value) + + @classmethod + def _sanitize_record_for_hash(cls, record: dict, *, include_fetched_at: bool) -> dict: + exclude = { + "data", + "payload", + "source_file", + "source_endpoint", + "content_hash", + "record_index", + } + if not include_fetched_at: + exclude.add("fetched_at") + + def _strip(value): + if isinstance(value, dict): + cleaned = {} + for k, v in value.items(): + if isinstance(k, str) and k.lower() in exclude: + continue + cleaned[k] = _strip(v) + return cleaned + if isinstance(value, list): + return [_strip(v) for v in value] + return value + + return _strip(record or {}) + + @classmethod + def _compute_content_hash(cls, record: dict, *, include_fetched_at: bool) -> str: + cleaned = cls._sanitize_record_for_hash(record, include_fetched_at=include_fetched_at) + payload = json.dumps( + cleaned, + ensure_ascii=False, + sort_keys=True, + separators=(",", ":"), + default=cls._hash_default, + ) + return hashlib.sha256(payload.encode("utf-8")).hexdigest() diff --git a/etl_billiards/tasks/ods_tasks.py b/etl_billiards/tasks/ods_tasks.py index 37df0ff..1d77e02 100644 --- a/etl_billiards/tasks/ods_tasks.py +++ b/etl_billiards/tasks/ods_tasks.py @@ -2,6 +2,7 @@ """ODS ingestion tasks.""" from __future__ import annotations +import hashlib import json from dataclasses import dataclass, field from datetime import datetime, timedelta @@ -317,6 +318,7 @@ class BaseOdsTask(BaseTask): db_json_cols_lower = { c[0].lower() for c in cols_info if c[1] in ("json", "jsonb") or c[2] in ("json", "jsonb") } + needs_content_hash = any(c[0].lower() == "content_hash" for c in cols_info) col_names = [c[0] for c in cols_info] quoted_cols = ", ".join(f'\"{c}\"' for c in col_names) @@ -330,6 +332,7 @@ class BaseOdsTask(BaseTask): params: list[tuple] = [] skipped = 0 + merged_records: list[dict] = [] root_site_profile = None if isinstance(response_payload, dict): @@ -345,6 +348,7 @@ class BaseOdsTask(BaseTask): continue merged_rec = self._merge_record_layers(rec) + merged_records.append({"raw": rec, "merged": merged_rec}) if table in {"billiards_ods.recharge_settlements", "billiards_ods.settlement_records"}: site_profile = merged_rec.get("siteProfile") or merged_rec.get("site_profile") or root_site_profile if isinstance(site_profile, dict): @@ -363,9 +367,42 @@ class BaseOdsTask(BaseTask): _fill_missing("siteid", [site_profile.get("siteId"), site_profile.get("id")]) _fill_missing("sitename", [site_profile.get("shop_name"), site_profile.get("siteName")]) + has_fetched_at = any(c[0].lower() == "fetched_at" for c in cols_info) + business_keys = [c for c in pk_cols if str(c).lower() != "content_hash"] + compare_latest = bool(needs_content_hash and has_fetched_at and business_keys) + latest_compare_hash: dict[tuple[Any, ...], str | None] = {} + if compare_latest: + key_values: list[tuple[Any, ...]] = [] + for item in merged_records: + merged_rec = item["merged"] + key = tuple(self._get_value_case_insensitive(merged_rec, k) for k in business_keys) + if any(v is None or v == "" for v in key): + continue + key_values.append(key) + + if key_values: + with self.db.conn.cursor() as cur: + latest_payloads = self._fetch_latest_payloads(cur, table, business_keys, key_values) + for key, payload in latest_payloads.items(): + latest_compare_hash[key] = self._compute_compare_hash_from_payload(payload) + + for item in merged_records: + rec = item["raw"] + merged_rec = item["merged"] + + content_hash = None + compare_hash = None + if needs_content_hash: + compare_hash = self._compute_content_hash(merged_rec, include_fetched_at=False) + hash_record = dict(merged_rec) + hash_record["fetched_at"] = now + content_hash = self._compute_content_hash(hash_record, include_fetched_at=True) + if pk_cols: missing_pk = False for pk in pk_cols: + if str(pk).lower() == "content_hash": + continue pk_val = self._get_value_case_insensitive(merged_rec, pk) if pk_val is None or pk_val == "": missing_pk = True @@ -374,6 +411,16 @@ class BaseOdsTask(BaseTask): skipped += 1 continue + if compare_latest and compare_hash is not None: + key = tuple(self._get_value_case_insensitive(merged_rec, k) for k in business_keys) + if any(v is None or v == "" for v in key): + skipped += 1 + continue + last_hash = latest_compare_hash.get(key) + if last_hash is not None and last_hash == compare_hash: + skipped += 1 + continue + row_vals: list[Any] = [] for (col_name, data_type, _udt) in cols_info: col_lower = col_name.lower() @@ -389,6 +436,9 @@ class BaseOdsTask(BaseTask): if col_lower == "fetched_at": row_vals.append(now) continue + if col_lower == "content_hash": + row_vals.append(content_hash) + continue value = self._normalize_scalar(self._get_value_case_insensitive(merged_rec, col_name)) if col_lower in db_json_cols_lower: @@ -472,6 +522,93 @@ class BaseOdsTask(BaseTask): return resolver(spec.endpoint) return None + @staticmethod + def _hash_default(value): + if isinstance(value, datetime): + return value.isoformat() + return str(value) + + @classmethod + def _sanitize_record_for_hash(cls, record: dict, *, include_fetched_at: bool) -> dict: + exclude = { + "data", + "payload", + "source_file", + "source_endpoint", + "content_hash", + "record_index", + } + if not include_fetched_at: + exclude.add("fetched_at") + + def _strip(value): + if isinstance(value, dict): + cleaned = {} + for k, v in value.items(): + if isinstance(k, str) and k.lower() in exclude: + continue + cleaned[k] = _strip(v) + return cleaned + if isinstance(value, list): + return [_strip(v) for v in value] + return value + + return _strip(record or {}) + + @classmethod + def _compute_content_hash(cls, record: dict, *, include_fetched_at: bool) -> str: + cleaned = cls._sanitize_record_for_hash(record, include_fetched_at=include_fetched_at) + payload = json.dumps( + cleaned, + ensure_ascii=False, + sort_keys=True, + separators=(",", ":"), + default=cls._hash_default, + ) + return hashlib.sha256(payload.encode("utf-8")).hexdigest() + + @staticmethod + def _compute_compare_hash_from_payload(payload: Any) -> str | None: + if payload is None: + return None + if isinstance(payload, str): + try: + payload = json.loads(payload) + except Exception: + return None + if not isinstance(payload, dict): + return None + merged = BaseOdsTask._merge_record_layers(payload) + return BaseOdsTask._compute_content_hash(merged, include_fetched_at=False) + + @staticmethod + def _fetch_latest_payloads(cur, table: str, business_keys: Sequence[str], key_values: Sequence[tuple]) -> dict: + if not business_keys or not key_values: + return {} + keys_sql = ", ".join(f'"{k}"' for k in business_keys) + sql = ( + f"WITH keys({keys_sql}) AS (VALUES %s) " + f"SELECT DISTINCT ON ({keys_sql}) {keys_sql}, payload " + f"FROM {table} t JOIN keys k USING ({keys_sql}) " + f"ORDER BY {keys_sql}, fetched_at DESC NULLS LAST" + ) + unique_keys = list({tuple(k) for k in key_values}) + execute_values(cur, sql, unique_keys, page_size=500) + rows = cur.fetchall() or [] + result = {} + if rows and isinstance(rows[0], dict): + for r in rows: + key = tuple(r[k] for k in business_keys) + result[key] = r.get("payload") + return result + + key_len = len(business_keys) + for r in rows: + key = tuple(r[:key_len]) + payload = r[key_len] if len(r) > key_len else None + result[key] = payload + return result + def _int_col(name: str, *sources: str, required: bool = False) -> ColumnSpec: return ColumnSpec( diff --git a/etl_billiards/tests/unit/task_test_utils.py b/etl_billiards/tests/unit/task_test_utils.py index 47ef95e..216de7a 100644 --- a/etl_billiards/tests/unit/task_test_utils.py +++ b/etl_billiards/tests/unit/task_test_utils.py @@ -176,6 +176,7 @@ class FakeCursor: ("id", "bigint", "int8"), ("sitegoodsstockid", "bigint", "int8"), ("record_index", "integer", "int4"), + ("content_hash", "text", "text"), ("source_file", "text", "text"), ("source_endpoint", "text", "text"), ("fetched_at", "timestamp with time zone", "timestamptz"), diff --git a/etl_billiards/utils/ods_record_utils.py b/etl_billiards/utils/ods_record_utils.py new file mode 100644 index 0000000..548003a --- /dev/null +++ b/etl_billiards/utils/ods_record_utils.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +"""Shared helpers for ODS/API record normalization.""" +from __future__ import annotations + +from typing import Iterable + + +def merge_record_layers(record: dict) -> dict: + """Flatten nested data/settleList layers into a single dict.""" + merged = record + data_part = merged.get("data") + while isinstance(data_part, dict): + merged = {**data_part, **merged} + data_part = data_part.get("data") + settle_inner = merged.get("settleList") + if isinstance(settle_inner, dict): + merged = {**settle_inner, **merged} + return merged + + +def get_value_case_insensitive(record: dict | None, col: str | None): + """Fetch column value without case sensitivity.""" + if record is None or col is None: + return None + if col in record: + return record.get(col) + col_lower = col.lower() + for k, v in record.items(): + if isinstance(k, str) and k.lower() == col_lower: + return v + return None + + +def normalize_pk_value(value): + """Normalize PK value (e.g., digit string -> int).""" + if value is None: + return None + if isinstance(value, str) and value.isdigit(): + try: + return int(value) + except Exception: + return value + return value + + +def pk_tuple_from_record(record: dict, pk_cols: Iterable[str]) -> tuple | None: + """Extract PK tuple from a record.""" + merged = merge_record_layers(record) + values = [] + for col in pk_cols: + val = normalize_pk_value(get_value_case_insensitive(merged, col)) + if val is None or val == "": + return None + values.append(val) + return tuple(values) diff --git a/query_db.py b/query_db.py new file mode 100644 index 0000000..03c08a0 --- /dev/null +++ b/query_db.py @@ -0,0 +1,153 @@ +import psycopg2 + +# Database connection +dsn = 'postgresql://local-Python:Neo-local-1991125@100.64.0.4:5432/LLZQ-test' + +conn = psycopg2.connect(dsn) +cur = conn.cursor() + +print('=' * 80) +print('1. ALL SCHEMAS') +print('=' * 80) +cur.execute(""" +SELECT schema_name FROM information_schema.schemata +WHERE schema_name NOT IN ('pg_catalog', 'information_schema', 'pg_toast') +ORDER BY schema_name; +""") +for row in cur.fetchall(): + print(row[0]) + +print() +print('=' * 80) +print('2. TABLES IN BUSINESS SCHEMAS') +print('=' * 80) +cur.execute(""" +SELECT table_schema, table_name, table_type +FROM information_schema.tables +WHERE table_schema IN ('billiards', 'billiards_ods', 'billiards_dwd', 'billiards_dws', 'etl_admin') +ORDER BY table_schema, table_name; +""") +print(f"{'Schema':<20} {'Table Name':<50} {'Type':<15}") +print('-' * 85) +for row in cur.fetchall(): + print(f"{row[0]:<20} {row[1]:<50} {row[2]:<15}") + +print() +print('=' * 80) +print('3. COLUMN DETAILS FOR billiards_dwd SCHEMA') +print('=' * 80) +cur.execute(""" +SELECT + c.table_schema, + c.table_name, + c.column_name, + c.data_type, + c.character_maximum_length, + c.numeric_precision, + c.numeric_scale, + c.is_nullable, + c.column_default, + c.ordinal_position +FROM information_schema.columns c +WHERE c.table_schema = 'billiards_dwd' +ORDER BY c.table_name, c.ordinal_position; +""") +current_table = None +for row in cur.fetchall(): + if current_table != row[1]: + current_table = row[1] + print() + print(f"Table: {row[0]}.{row[1]}") + print(f"{'#':<4} {'Column':<35} {'Data Type':<25} {'Nullable':<10} {'Default':<30}") + print('-' * 110) + + data_type = row[3] + if row[4]: # character_maximum_length + data_type += f"({row[4]})" + elif row[5] and row[6]: # numeric precision and scale + data_type += f"({row[5]},{row[6]})" + elif row[5]: + data_type += f"({row[5]})" + + default_val = str(row[8])[:28] if row[8] else '' + print(f"{row[9]:<4} {row[2]:<35} {data_type:<25} {row[7]:<10} {default_val:<30}") + +print() +print('=' * 80) +print('4. PRIMARY KEYS IN billiards_dwd') +print('=' * 80) +cur.execute(""" +SELECT + tc.table_schema, + tc.table_name, + kcu.column_name +FROM information_schema.table_constraints tc +JOIN information_schema.key_column_usage kcu + ON tc.constraint_name = kcu.constraint_name + AND tc.table_schema = kcu.table_schema +WHERE tc.constraint_type = 'PRIMARY KEY' +AND tc.table_schema = 'billiards_dwd' +ORDER BY tc.table_name, kcu.ordinal_position; +""") +print(f"{'Schema':<20} {'Table Name':<40} {'PK Column':<30}") +print('-' * 90) +for row in cur.fetchall(): + print(f"{row[0]:<20} {row[1]:<40} {row[2]:<30}") + +print() +print('=' * 80) +print('5. TABLE COMMENTS IN billiards_dwd') +print('=' * 80) +cur.execute(""" +SELECT + n.nspname AS schema_name, + c.relname AS table_name, + d.description AS table_comment +FROM pg_class c +JOIN pg_namespace n ON n.oid = c.relnamespace +LEFT JOIN pg_description d ON d.objoid = c.oid AND d.objsubid = 0 +WHERE n.nspname = 'billiards_dwd' AND c.relkind = 'r' +ORDER BY c.relname; +""") +print(f"{'Schema':<20} {'Table Name':<40} {'Comment':<50}") +print('-' * 110) +for row in cur.fetchall(): + comment = row[2] if row[2] else '(no comment)' + print(f"{row[0]:<20} {row[1]:<40} {comment:<50}") + +print() +print('=' * 80) +print('6. COLUMN COMMENTS IN billiards_dwd') +print('=' * 80) +cur.execute(""" +SELECT + n.nspname AS schema_name, + c.relname AS table_name, + a.attname AS column_name, + d.description AS column_comment +FROM pg_class c +JOIN pg_namespace n ON n.oid = c.relnamespace +JOIN pg_attribute a ON a.attrelid = c.oid +LEFT JOIN pg_description d ON d.objoid = c.oid AND d.objsubid = a.attnum +WHERE n.nspname = 'billiards_dwd' + AND c.relkind = 'r' + AND a.attnum > 0 + AND NOT a.attisdropped +ORDER BY c.relname, a.attnum; +""") +current_table = None +for row in cur.fetchall(): + if current_table != row[1]: + current_table = row[1] + print() + print(f"Table: {row[0]}.{row[1]}") + print(f"{'Column':<35} {'Comment':<60}") + print('-' * 95) + comment = row[3] if row[3] else '(no comment)' + print(f"{row[2]:<35} {comment:<60}") + +conn.close() +print() +print('=' * 80) +print('Query completed successfully!') +print('=' * 80) diff --git a/tmp/fetch_member_balance_change.py b/tmp/fetch_member_balance_change.py new file mode 100644 index 0000000..587ac66 --- /dev/null +++ b/tmp/fetch_member_balance_change.py @@ -0,0 +1,144 @@ +# -*- coding: utf-8 -*- +""" +获取会员余额变动数据: /MemberProfile/GetMemberCardBalanceChange +时间范围: 2025-11-01 ~ 当前 + +数据来源说明: +- API 端点: /MemberProfile/GetMemberCardBalanceChange +- ODS 表: billiards_ods.member_balance_changes +- DWD 表: billiards_dwd.dwd_member_balance_change +- 数据路径: data.tenantMemberCardLogs +""" + +import os +import sys +import json +from pathlib import Path +from datetime import datetime + +# 添加项目根目录到 path +project_root = Path(__file__).resolve().parents[1] +etl_billiards_dir = project_root / "etl_billiards" +sys.path.insert(0, str(project_root)) +sys.path.insert(0, str(etl_billiards_dir)) + +from api.client import APIClient +from config.env_parser import load_env_overrides +from config.defaults import DEFAULTS + + +def main(): + import argparse + parser = argparse.ArgumentParser(description="获取会员余额变动数据") + parser.add_argument("--start", default="2025-11-01", help="开始日期 (YYYY-MM-DD)") + parser.add_argument("--end", default=None, help="结束日期 (YYYY-MM-DD),默认当前时间") + args = parser.parse_args() + + # 加载配置 + cfg = load_env_overrides(DEFAULTS) + + api_base = cfg.get("api", {}).get("base_url", "https://pc.ficoo.vip/apiprod/admin/v1") + token = cfg.get("api", {}).get("token") + store_id = cfg.get("app", {}).get("store_id") + + if not token: + print("错误: 未配置 API_TOKEN 或 FICOO_TOKEN 环境变量") + print("请在 .env 文件中设置: FICOO_TOKEN=your_token_here") + sys.exit(1) + + if not store_id: + print("错误: 未配置 STORE_ID 环境变量") + print("请在 .env 文件中设置: STORE_ID=your_store_id") + sys.exit(1) + + print(f"API Base URL: {api_base}") + print(f"Store ID: {store_id}") + print(f"Token: {token[:20]}..." if len(token) > 20 else f"Token: {token}") + + # 创建 API 客户端 + client = APIClient( + base_url=api_base, + token=token, + timeout=30, + retry_max=3, + ) + + # 设置时间范围 + start_time = f"{args.start} 00:00:00" + end_time = f"{args.end} 23:59:59" if args.end else datetime.now().strftime("%Y-%m-%d %H:%M:%S") + + print(f"\n时间范围: {start_time} ~ {end_time}") + print("-" * 60) + + # 请求参数 + params = { + "siteId": int(store_id), + "startTime": start_time, + "endTime": end_time, + } + + endpoint = "/MemberProfile/GetMemberCardBalanceChange" + + print(f"正在调用 API: {endpoint}") + print(f"参数: {json.dumps(params, ensure_ascii=False, indent=2)}") + print("-" * 60) + + try: + # 获取分页数据 + records, pages_meta = client.get_paginated( + endpoint=endpoint, + params=params, + page_size=200, + data_path=("data",), + list_key="tenantMemberCardLogs", + ) + + print(f"\n获取成功!") + print(f"总记录数: {len(records)}") + print(f"总页数: {len(pages_meta)}") + + # 输出目录 + output_dir = Path(__file__).parent / "output" + output_dir.mkdir(exist_ok=True) + + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + output_file = output_dir / f"member_balance_change_{timestamp}.json" + + # 保存数据 + output_data = { + "endpoint": endpoint, + "params": { + "siteId": int(store_id), + "startTime": start_time, + "endTime": end_time, + }, + "fetched_at": datetime.now().isoformat(), + "total_records": len(records), + "total_pages": len(pages_meta), + "data": records, + } + + with open(output_file, "w", encoding="utf-8") as f: + json.dump(output_data, f, ensure_ascii=False, indent=2) + + print(f"\n数据已保存到: {output_file}") + + # 打印前几条记录预览 + if records: + print(f"\n前 3 条记录预览:") + print("-" * 60) + for i, rec in enumerate(records[:3]): + print(f"\n记录 {i+1}:") + print(json.dumps(rec, ensure_ascii=False, indent=2)) + + return records + + except Exception as e: + print(f"\n错误: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/tmp/list_all_tables.py b/tmp/list_all_tables.py new file mode 100644 index 0000000..604e328 --- /dev/null +++ b/tmp/list_all_tables.py @@ -0,0 +1,17 @@ +import psycopg2 + +dsn = 'postgresql://local-Python:Neo-local-1991125@100.64.0.4:5432/LLZQ-test' +conn = psycopg2.connect(dsn) +cur = conn.cursor() +cur.execute(""" + SELECT table_name + FROM information_schema.tables + WHERE table_schema = 'billiards_dwd' + ORDER BY table_name +""") +tables = [row[0] for row in cur.fetchall()] +print('Tables in billiards_dwd:') +for t in tables: + print(t) +print(f'\nTotal: {len(tables)} tables') +conn.close() diff --git a/tmp/output/member_balance_change_20260130_205701.json b/tmp/output/member_balance_change_20260130_205701.json new file mode 100644 index 0000000..cb661c5 --- /dev/null +++ b/tmp/output/member_balance_change_20260130_205701.json @@ -0,0 +1,73153 @@ +{ + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "params": { + "siteId": 2790685415443269, + "startTime": "2025-11-01 00:00:00", + "endTime": "2026-01-30 20:56:28" + }, + "fetched_at": "2026-01-30T20:57:01.254334", + "total_records": 2438, + "total_pages": 13, + "data": [ + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3073751211328901, + "account_data": -51.93, + "after": 737.07, + "before": 789.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-30 19:21:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3073751165486469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 737.07, + "principal_before": 789.0, + "principal_data": -51.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3073750321677957, + "account_data": -62.61, + "after": 3075.33, + "before": 3137.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 19:20:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3073750241936773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3075.33, + "principal_before": 3137.94, + "principal_data": -62.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072782513456517, + "account_data": -7085.31, + "after": 2914.69, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:56:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072782428636613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2914.69, + "principal_before": 10000.0, + "principal_data": -7085.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072782513243525, + "account_data": -1288.0, + "after": 0.0, + "before": 1288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-30 02:56:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072782428636613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3072757527416517, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-30 02:30:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3072754582865349, + "account_data": -2579.11, + "after": 1093.82, + "before": 3672.93, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:27:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072754533959301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1093.82, + "principal_before": 3672.93, + "principal_data": -2579.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3072754359502277, + "account_data": 3000.0, + "after": 3672.93, + "before": 672.93, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:27:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072754355946949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 3672.93, + "principal_before": 672.93, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072743656476357, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-30 02:16:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072741154964933, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:13:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072741151786437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072740945233349, + "account_data": -10000.0, + "after": 0.0, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:13:46", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072740937631173, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 10000.0, + "principal_data": -10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3072740723557829, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 02:13:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072740719789509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3072705238435461, + "account_data": -1.03, + "after": 10186.59, + "before": 10187.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-30 01:37:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072705127679429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10186.59, + "principal_before": 10187.62, + "principal_data": -1.03 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3072705238238853, + "account_data": -365.12, + "after": 0.0, + "before": 365.12, + "card_type_id": 2793266846533445, + "create_time": "2026-01-30 01:37:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072705127679429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3072672972064325, + "account_data": -560.99, + "after": 365.12, + "before": 926.11, + "card_type_id": 2793266846533445, + "create_time": "2026-01-30 01:04:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072672884901445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3072639798724037, + "account_data": -492.0, + "after": 371.0, + "before": 863.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-30 00:30:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072639694505605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 371.0, + "principal_before": 863.0, + "principal_data": -492.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3072523081485957, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-29 22:32:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3072498775344517, + "account_data": -950.0, + "after": 2050.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 22:07:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072498721129861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 2050.0, + "principal_before": 3000.0, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3072498363795013, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 22:07:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072498360337989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3072489926887045, + "account_data": -361.89, + "after": 926.11, + "before": 1288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-29 21:58:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072489848555077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3072432448685509, + "account_data": -517.77, + "after": 3147.87, + "before": 3665.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 20:59:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072432396338821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003185854517765, + "tenant_member_id": 3003185854190085, + "principal_after": 3147.87, + "principal_before": 3665.64, + "principal_data": -517.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈小姐", + "memberMobile": "13802740778", + "id": 3072296785839493, + "account_data": -99.7, + "after": 352.43, + "before": 452.13, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 18:41:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072296746108549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212878235397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220043892485, + "tenant_member_id": 2799212879873797, + "principal_after": 352.43, + "principal_before": 452.13, + "principal_data": -99.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3072106133079622, + "account_data": -5.0, + "after": 672.93, + "before": 677.93, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 15:28:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3072106108044677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 672.93, + "principal_before": 677.93, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3071367857113093, + "account_data": -242.33, + "after": 78.54, + "before": 320.87, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 02:56:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071367814022981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 78.54, + "principal_before": 320.87, + "principal_data": -242.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3071359519868677, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-29 02:48:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3071351867836421, + "account_data": 10000.0, + "after": 10187.62, + "before": 187.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 02:40:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071351863953413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10187.62, + "principal_before": 187.62, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3071351515006917, + "account_data": -174.01, + "after": 187.62, + "before": 361.63, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 02:40:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071351468230597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 187.62, + "principal_before": 361.63, + "principal_data": -174.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071287350478725, + "account_data": -297.07, + "after": 2164.71, + "before": 2461.78, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 01:35:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071287272392645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2164.71, + "principal_before": 2461.78, + "principal_data": -297.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071287350232965, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-29 01:35:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071287272392645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3071222364014597, + "account_data": -950.0, + "after": 871.0, + "before": 1821.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-29 00:28:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071222320793413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 871.0, + "principal_before": 1821.0, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "公孙先生", + "memberMobile": "15902048888", + "id": 3071188922058565, + "account_data": -16.12, + "after": 2735.19, + "before": 2751.31, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 23:54:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071188854147077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3054195559402885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3054195562007941, + "tenant_member_id": 3054195561631109, + "principal_after": 2735.19, + "principal_before": 2751.31, + "principal_data": -16.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "公孙先生", + "memberMobile": "15902048888", + "id": 3071188921845573, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 23:54:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071188854147077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3054195559402885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3054195913755845, + "tenant_member_id": 3054195561631109, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3071139583805125, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 23:04:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048239462909701, + "tenant_member_id": 3048238811858693, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071082535208773, + "account_data": -205.31, + "after": 2461.78, + "before": 2667.09, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 22:06:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071082466625413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2461.78, + "principal_before": 2667.09, + "principal_data": -205.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3071074983708677, + "account_data": 1000.0, + "after": 1003.27, + "before": 3.27, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 21:59:04", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071074979842053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 1003.27, + "principal_before": 3.27, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3071074297071557, + "account_data": -77.73, + "after": 3.27, + "before": 81.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 21:58:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071074249803717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 3.27, + "principal_before": 81.0, + "principal_data": -77.73 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071016075708165, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 20:59:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071014162057093, + "account_data": -379.58, + "after": 2667.09, + "before": 3046.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 20:57:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071014106286021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2667.09, + "principal_before": 3046.67, + "principal_data": -379.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3071013745133445, + "account_data": 3000.0, + "after": 3046.67, + "before": 46.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 20:56:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3071013741414277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3046.67, + "principal_before": 46.67, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3070948908648325, + "account_data": -152.41, + "after": 81.0, + "before": 233.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 19:50:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3070948860217285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 81.0, + "principal_before": 233.41, + "principal_data": -152.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3070771129780165, + "account_data": -190.0, + "after": 1821.0, + "before": 2011.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 16:49:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3070771103582085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 1821.0, + "principal_before": 2011.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3070556643936069, + "account_data": -37.0, + "after": 0.0, + "before": 37.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 13:11:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3070555831060485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3070382469875589, + "account_data": -10.0, + "after": 37.0, + "before": 47.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 10:14:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3070382443579205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3069944849435973, + "account_data": -1080.88, + "after": 361.63, + "before": 1442.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 02:49:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069944807345221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 361.63, + "principal_before": 1442.51, + "principal_data": -1080.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3069884268432261, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-28 01:47:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3069838510640197, + "account_data": -734.41, + "after": 0.0, + "before": 734.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 01:01:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069838125567109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 734.41, + "principal_data": -734.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3069834419145797, + "account_data": -265.59, + "after": 734.41, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 00:57:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069834366995525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 734.41, + "principal_before": 1000.0, + "principal_data": -265.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3069834084633733, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-28 00:56:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069834081455237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3069777018719301, + "account_data": -225.19, + "after": 1442.51, + "before": 1667.7, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 23:58:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069776981134405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1442.51, + "principal_before": 1667.7, + "principal_data": -225.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3069719679667333, + "account_data": -133.41, + "after": 154.59, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 23:00:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069719625125061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269815201093, + "tenant_member_id": 3037269565082949, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3069702141774981, + "account_data": -239.21, + "after": 1667.7, + "before": 1906.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 22:42:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069702034263365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1667.7, + "principal_before": 1906.91, + "principal_data": -239.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3069634686274757, + "account_data": -181.32, + "after": 4014.79, + "before": 4196.11, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 21:33:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069634632125573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4014.79, + "principal_before": 4196.11, + "principal_data": -181.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3069632267603141, + "account_data": -40.84, + "after": 233.41, + "before": 274.25, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 21:31:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069632217517253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 233.41, + "principal_before": 274.25, + "principal_data": -40.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3069537543720261, + "account_data": -290.38, + "after": 320.87, + "before": 611.25, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 19:55:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069537446579269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 320.87, + "principal_before": 611.25, + "principal_data": -290.38 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3069537140559173, + "account_data": -279.27, + "after": 615.63, + "before": 894.9, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 19:54:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069537011535173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 615.63, + "principal_before": 894.9, + "principal_data": -279.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3069498634259589, + "account_data": -132.07, + "after": 677.93, + "before": 810.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 19:15:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069498507463813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 677.93, + "principal_before": 810.0, + "principal_data": -132.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3069498634046597, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 19:15:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069498507463813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13808891339", + "id": 3069449500232901, + "account_data": -87.0, + "after": 0.0, + "before": 87.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 18:25:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069449296252037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212800542469, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219889735429, + "tenant_member_id": 2799212801525509, + "principal_after": 0.0, + "principal_before": 87.0, + "principal_data": -87.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3069444130180421, + "account_data": -23.0, + "after": 47.0, + "before": 70.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 18:20:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069444110224581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3069403964837061, + "account_data": -39.0, + "after": 42.0, + "before": 81.0, + "card_type_id": 2794699703437125, + "create_time": "2026-01-27 17:39:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069403912490117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 42.0, + "principal_before": 81.0, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3069376933776517, + "account_data": -10.0, + "after": 70.0, + "before": 80.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 17:11:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069376910609605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3069083637123333, + "account_data": -7.0, + "after": 80.0, + "before": 87.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 12:13:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069083611875653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3069071573436549, + "account_data": -20.0, + "after": 87.0, + "before": 107.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 12:01:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3069071521466693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3068960139462981, + "account_data": -24.0, + "after": 107.0, + "before": 131.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 10:07:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068960095340677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3068958260955333, + "account_data": -10.0, + "after": 131.0, + "before": 141.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 10:05:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068958193125637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3068721546709189, + "account_data": -230.14, + "after": 611.25, + "before": 841.39, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 06:05:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068721501554821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 611.25, + "principal_before": 841.39, + "principal_data": -230.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3068721546512581, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 06:05:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068721501554821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068658717411653, + "account_data": -275.33, + "after": 1906.91, + "before": 2182.24, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 05:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068658449336453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1906.91, + "principal_before": 2182.24, + "principal_data": -275.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3068632370661253, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 04:34:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3068598525233477, + "account_data": -2158.61, + "after": 841.39, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 03:59:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068598449785093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 841.39, + "principal_before": 3000.0, + "principal_data": -2158.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3068597557135493, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 03:58:53", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068597553416325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068567374284997, + "account_data": -223.1, + "after": 2182.24, + "before": 2405.34, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 03:28:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068567310895429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2182.24, + "principal_before": 2405.34, + "principal_data": -223.1 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068567374072005, + "account_data": -0.8, + "after": 0.0, + "before": 0.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-27 03:28:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068567310895429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.8, + "principal_data": -0.8 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "肖先生", + "memberMobile": "15675486427", + "id": 3068565153024261, + "account_data": -20.0, + "after": 37.0, + "before": 57.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-27 03:25:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068565111163205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974756214654853, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974756216326021, + "tenant_member_id": 2974756216031109, + "principal_after": 37.0, + "principal_before": 57.0, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3068564215498949, + "account_data": -135.9, + "after": 31.06, + "before": 166.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 03:24:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068564161300741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 31.06, + "principal_before": 166.96, + "principal_data": -135.9 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3068517741889797, + "account_data": -198.0, + "after": 22706.0, + "before": 22904.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-27 02:37:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068517594892421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217220863749, + "tenant_member_id": 2799207406946053, + "principal_after": 22706.0, + "principal_before": 22904.0, + "principal_data": -198.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3068516482795653, + "account_data": -1440.26, + "after": 894.9, + "before": 2335.16, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 02:36:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068516045293893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 894.9, + "principal_before": 2335.16, + "principal_data": -1440.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068488954612037, + "account_data": -425.34, + "after": 2405.34, + "before": 2830.68, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 02:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068488687814981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2405.34, + "principal_before": 2830.68, + "principal_data": -425.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068488954399045, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-27 02:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068488687814981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3068405570210117, + "account_data": -380.0, + "after": 2011.0, + "before": 2391.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-27 00:43:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068405527726341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2011.0, + "principal_before": 2391.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 3068368356231365, + "account_data": -226.0, + "after": 3725.0, + "before": 3951.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-27 00:05:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068368265578821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 3725.0, + "principal_before": 3951.0, + "principal_data": -226.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3068250828704069, + "account_data": -329.25, + "after": 2218.71, + "before": 2547.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 22:06:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068250782402757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2218.71, + "principal_before": 2547.96, + "principal_data": -329.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068195181201285, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 21:09:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068195094923525, + "account_data": -391.27, + "after": 2830.68, + "before": 3221.95, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 21:09:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068195036170501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2830.68, + "principal_before": 3221.95, + "principal_data": -391.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3068193229965573, + "account_data": 3000.0, + "after": 3221.95, + "before": 221.95, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 21:07:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068193226131717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3221.95, + "principal_before": 221.95, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3068189902866629, + "account_data": -224.89, + "after": 3137.94, + "before": 3362.83, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 21:04:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068189824059589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3137.94, + "principal_before": 3362.83, + "principal_data": -224.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3068173051381893, + "account_data": -3264.36, + "after": 0.0, + "before": 3264.36, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 20:47:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068172788353285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 3264.36, + "principal_data": -3264.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3068172404426885, + "account_data": -6442.24, + "after": 3264.36, + "before": 9706.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 20:46:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068172286822597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3264.36, + "principal_before": 9706.6, + "principal_data": -6442.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3068161260423301, + "account_data": -110.1, + "after": 2335.16, + "before": 2445.26, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 20:35:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068161172441285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2335.16, + "principal_before": 2445.26, + "principal_data": -110.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3068156519303493, + "account_data": -760.0, + "after": 9706.6, + "before": 10466.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 20:30:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068156440938821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9706.6, + "principal_before": 10466.6, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3068007471597701, + "account_data": -5.0, + "after": 141.0, + "before": 146.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 17:58:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3068007423199493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3067948513085637, + "account_data": -163.69, + "after": 274.25, + "before": 437.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 16:58:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067948453546245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 274.25, + "principal_before": 437.94, + "principal_data": -163.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3067773972384645, + "account_data": -8.0, + "after": 146.0, + "before": 154.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 14:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067773923298117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3067770375457669, + "account_data": -45.82, + "after": 980.27, + "before": 1026.09, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 13:57:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067770315770693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 980.27, + "principal_before": 1026.09, + "principal_data": -45.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3067750876695493, + "account_data": -16.0, + "after": 154.0, + "before": 170.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 13:37:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067750849072005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3067655889243013, + "account_data": -10.0, + "after": 170.0, + "before": 180.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 12:00:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067655791381445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3067278947175045, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-26 05:37:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856364174021, + "tenant_member_id": 2799210064873221, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3067259087146181, + "account_data": -1528.08, + "after": 0.0, + "before": 1528.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 05:17:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067258499321029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 0.0, + "principal_before": 1528.08, + "principal_data": -1528.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3067211605855173, + "account_data": -2440.84, + "after": 559.16, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 04:29:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067211526573253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 559.16, + "principal_before": 3000.0, + "principal_data": -2440.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3067210808216389, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 04:28:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067210804955973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3067055406959557, + "account_data": -929.87, + "after": 221.95, + "before": 1151.82, + "card_type_id": 2793249295533893, + "create_time": "2026-01-26 01:50:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3067055344815301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 221.95, + "principal_before": 1151.82, + "principal_data": -929.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3066860416912325, + "account_data": -120.0, + "after": 4196.11, + "before": 4316.11, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 22:31:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066860365499269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4196.11, + "principal_before": 4316.11, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3066824801782725, + "account_data": -8.0, + "after": 180.0, + "before": 188.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 21:55:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066824775896005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3066823839353669, + "account_data": -140.09, + "after": 437.94, + "before": 578.03, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 21:54:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066823772769221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 437.94, + "principal_before": 578.03, + "principal_data": -140.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3066809742380229, + "account_data": -950.0, + "after": 10466.6, + "before": 11416.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 21:40:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066809678908229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10466.6, + "principal_before": 11416.6, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "17306741548", + "id": 3066793903917701, + "account_data": 188.0, + "after": 188.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 21:24:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3066773300268357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3066773307755845, + "tenant_member_id": 3066773303512389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 3066779329891141, + "account_data": -432.0, + "after": 3522.61, + "before": 3954.61, + "card_type_id": 2791990152417157, + "create_time": "2026-01-25 21:09:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066779287866181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 3522.61, + "principal_before": 3954.61, + "principal_data": -432.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 3066771583339333, + "account_data": -3000.0, + "after": 0.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 21:01:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066771423398853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 3000.0, + "principal_data": -3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 3066771583093573, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 21:01:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066771423398853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3066770121575237, + "account_data": -13.0, + "after": 2445.26, + "before": 2458.26, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 20:59:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066770050730949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2445.26, + "principal_before": 2458.26, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3066767453276869, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 20:57:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269815201093, + "tenant_member_id": 3037269565082949, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3066762978577285, + "account_data": -380.0, + "after": 2391.0, + "before": 2771.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 20:52:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066762932817093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2391.0, + "principal_before": 2771.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3066599200738181, + "account_data": -106.13, + "after": 578.03, + "before": 684.16, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 18:06:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066599109741381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 578.03, + "principal_before": 684.16, + "principal_data": -106.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 3066591579048837, + "account_data": -79.47, + "after": 5.65, + "before": 85.12, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 17:58:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066591504878533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219509479173, + "tenant_member_id": 2799212596201221, + "principal_after": 5.65, + "principal_before": 85.12, + "principal_data": -79.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3066544818981829, + "account_data": -120.12, + "after": 4316.11, + "before": 4436.23, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 17:10:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3066544776973509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4316.11, + "principal_before": 4436.23, + "principal_data": -120.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3065948559543493, + "account_data": -3438.72, + "after": 1528.08, + "before": 4966.8, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 07:04:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065948508441477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 1528.08, + "principal_before": 4966.8, + "principal_data": -3438.72 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3065836335647941, + "account_data": -1849.79, + "after": 1151.82, + "before": 3001.61, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 05:10:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065836260100933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1151.82, + "principal_before": 3001.61, + "principal_data": -1849.79 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 3065754595003013, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 03:46:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 0.0, + "principal_data": 0.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 3065748658703557, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 03:40:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065748655475909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生", + "memberMobile": "13570370785", + "id": 3065692709702533, + "account_data": -170.0, + "after": 1143.0, + "before": 1313.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-25 02:43:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065692648049861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209734866693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217841506053, + "tenant_member_id": 2799209735866117, + "principal_after": 1143.0, + "principal_before": 1313.0, + "principal_data": -170.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3065563575946437, + "account_data": -282.0, + "after": 11416.6, + "before": 11698.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-25 00:32:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065563514669893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 11416.6, + "principal_before": 11698.6, + "principal_data": -282.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3065563575700677, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-25 00:32:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065563514669893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3065525914897605, + "account_data": -283.75, + "after": 3001.61, + "before": 3285.36, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 23:54:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065525846854533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3001.61, + "principal_before": 3285.36, + "principal_data": -283.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3065444170238789, + "account_data": -120.0, + "after": 4436.23, + "before": 4556.23, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 22:31:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065444124281797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4436.23, + "principal_before": 4556.23, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3065443094416197, + "account_data": -34.0, + "after": 0.8, + "before": 34.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 22:30:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065443045936069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 0.8, + "principal_before": 34.8, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3065442573224837, + "account_data": -384.93, + "after": 3285.36, + "before": 3670.29, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 22:29:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065442490961093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3285.36, + "principal_before": 3670.29, + "principal_data": -384.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3065328636759237, + "account_data": -20.0, + "after": 1.58, + "before": 21.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 20:33:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065328531966789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 1.58, + "principal_before": 21.58, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3065324480416709, + "account_data": -363.87, + "after": 3670.29, + "before": 4034.16, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 20:29:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065324428266693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3670.29, + "principal_before": 4034.16, + "principal_data": -363.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3065282641595205, + "account_data": -102.99, + "after": 2458.26, + "before": 2561.25, + "card_type_id": 2793266846533445, + "create_time": "2026-01-24 19:46:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065282365016901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2458.26, + "principal_before": 2561.25, + "principal_data": -102.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3065279544872133, + "account_data": -117.02, + "after": 5032.17, + "before": 5149.19, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 19:43:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065279435475781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 5032.17, + "principal_before": 5149.19, + "principal_data": -117.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3065174338915205, + "account_data": -5.0, + "after": 2771.0, + "before": 2776.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 17:56:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065174309210949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2771.0, + "principal_before": 2776.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3065110091582277, + "account_data": -116.05, + "after": 4556.23, + "before": 4672.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 16:51:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3065110046001989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4556.23, + "principal_before": 4672.28, + "principal_data": -116.05 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 3064404463225797, + "account_data": -363.0, + "after": 2054.0, + "before": 2417.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 04:53:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064404325240005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216132245253, + "tenant_member_id": 2799207188170501, + "principal_after": 2054.0, + "principal_before": 2417.0, + "principal_data": -363.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 3064402682825541, + "account_data": -292.67, + "after": 0.0, + "before": 292.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 04:51:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064401753197765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 0.0, + "principal_before": 292.67, + "principal_data": -292.67 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3064262802492357, + "account_data": -59.0, + "after": 0.0, + "before": 59.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 02:29:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064262758976709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 0.0, + "principal_before": 59.0, + "principal_data": -59.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3064246569044869, + "account_data": -105.0, + "after": 863.0, + "before": 968.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 02:12:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064246528937157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 863.0, + "principal_before": 968.0, + "principal_data": -105.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064245826227141, + "account_data": -1872.12, + "after": 4034.16, + "before": 5906.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 02:12:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064245703216005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4034.16, + "principal_before": 5906.28, + "principal_data": -1872.12 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064218899516613, + "account_data": -25.0, + "after": 34.8, + "before": 59.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 01:44:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064218839141253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 34.8, + "principal_before": 59.8, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064218042485957, + "account_data": -124.92, + "after": 5906.28, + "before": 6031.2, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 01:43:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064217973066565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5906.28, + "principal_before": 6031.2, + "principal_data": -124.92 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064174043564997, + "account_data": -174.0, + "after": 59.8, + "before": 233.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-24 00:59:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064173988203717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 59.8, + "principal_before": 233.8, + "principal_data": -174.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064172738595781, + "account_data": -203.47, + "after": 6031.2, + "before": 6234.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 00:57:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064172653104069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6031.2, + "principal_before": 6234.67, + "principal_data": -203.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3064131605400773, + "account_data": -350.26, + "after": 0.0, + "before": 350.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-24 00:15:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064131422718853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 350.26, + "principal_data": -350.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064102414027717, + "account_data": -199.6, + "after": 6234.67, + "before": 6434.27, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 23:46:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064102305221829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6234.67, + "principal_before": 6434.27, + "principal_data": -199.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3064074567879621, + "account_data": -602.12, + "after": 0.0, + "before": 602.12, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 23:17:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064074291236037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 602.12, + "principal_data": -602.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3064074567683013, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-23 23:17:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064074291236037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3064035695381701, + "account_data": -218.29, + "after": 6434.27, + "before": 6652.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 22:38:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064035624225989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6434.27, + "principal_before": 6652.56, + "principal_data": -218.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3064031612783429, + "account_data": -258.18, + "after": 11698.6, + "before": 11956.78, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 22:34:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3064031514774341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 11698.6, + "principal_before": 11956.78, + "principal_data": -258.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3063990132313029, + "account_data": -190.0, + "after": 810.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 21:51:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3063990057601925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 810.0, + "principal_before": 1000.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3063961036393349, + "account_data": -289.88, + "after": 6652.56, + "before": 6942.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 21:22:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3063960937253765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6652.56, + "principal_before": 6942.44, + "principal_data": -289.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3063896581589893, + "account_data": -16.0, + "after": 6942.44, + "before": 6958.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 20:16:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3063896534666437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6942.44, + "principal_before": 6958.44, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3063850655960261, + "account_data": -157.68, + "after": 2561.25, + "before": 2718.93, + "card_type_id": 2793266846533445, + "create_time": "2026-01-23 19:30:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3063850569387205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2561.25, + "principal_before": 2718.93, + "principal_data": -157.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3063091673730693, + "account_data": -3294.97, + "after": 4966.8, + "before": 8261.77, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 06:38:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3063091572461061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 4966.8, + "principal_before": 8261.77, + "principal_data": -3294.97 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062937793957317, + "account_data": -92.0, + "after": 233.8, + "before": 325.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-23 04:01:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062937723047429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 233.8, + "principal_before": 325.8, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062937033379461, + "account_data": -614.82, + "after": 6958.44, + "before": 7573.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 04:00:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062936677731781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6958.44, + "principal_before": 7573.26, + "principal_data": -614.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3062732854480197, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-23 00:33:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062707045600709, + "account_data": -380.0, + "after": 7573.26, + "before": 7953.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 00:06:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062706999266821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7573.26, + "principal_before": 7953.26, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062704206237253, + "account_data": -260.0, + "after": 325.8, + "before": 585.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-23 00:03:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062704150826629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 325.8, + "principal_before": 585.8, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062703558430213, + "account_data": -680.43, + "after": 7953.26, + "before": 8633.69, + "card_type_id": 2793249295533893, + "create_time": "2026-01-23 00:03:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062703467974085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7953.26, + "principal_before": 8633.69, + "principal_data": -680.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3062679696018885, + "account_data": -233.12, + "after": 2547.96, + "before": 2781.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 23:38:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062679646834181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2547.96, + "principal_before": 2781.08, + "principal_data": -233.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3062679695805893, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 23:38:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062679646834181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3062672102591941, + "account_data": -44.0, + "after": 21.58, + "before": 65.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 23:31:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062672045215173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 21.58, + "principal_before": 65.58, + "principal_data": -44.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3062642242178693, + "account_data": -92.0, + "after": 2776.0, + "before": 2868.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 23:00:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062642179182021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2776.0, + "principal_before": 2868.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3062642241965701, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 23:00:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062642179182021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043884200789893, + "tenant_member_id": 3043883848157381, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "袁", + "memberMobile": "13332883280", + "id": 3062626329644677, + "account_data": -108.0, + "after": 892.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 22:44:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062626285047365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3062388519667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3062388522452485, + "tenant_member_id": 3062388521698821, + "principal_after": 892.0, + "principal_before": 1000.0, + "principal_data": -108.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3062602552741445, + "account_data": -397.88, + "after": 602.12, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 22:20:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062602498559493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 602.12, + "principal_before": 1000.0, + "principal_data": -397.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3062602217885253, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 22:20:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062602213396037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062459256163909, + "account_data": -291.98, + "after": 8633.69, + "before": 8925.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 19:54:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062459167116741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8633.69, + "principal_before": 8925.67, + "principal_data": -291.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "袁", + "memberMobile": "13332883280", + "id": 3062388897500613, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 18:43:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062388894125509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3062388519667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3062388522452485, + "tenant_member_id": 3062388521698821, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3062367287414341, + "account_data": -306.6, + "after": 8925.67, + "before": 9232.27, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 18:21:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3062367229431429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8925.67, + "principal_before": 9232.27, + "principal_data": -306.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061834090352005, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 09:18:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1288.0, + "principal_before": 0.0, + "principal_data": 1288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3061834027273541, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 09:18:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061791037116037, + "account_data": -245.0, + "after": 585.8, + "before": 830.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-22 08:34:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061790897835461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 585.8, + "principal_before": 830.8, + "principal_data": -245.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061789715992197, + "account_data": -1652.57, + "after": 9232.27, + "before": 10884.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 08:33:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061789398699589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9232.27, + "principal_before": 10884.84, + "principal_data": -1652.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061789715779205, + "account_data": -0.14, + "after": 0.0, + "before": 0.14, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 08:33:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061789398699589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 0.14, + "principal_data": -0.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3061788417969797, + "account_data": -1400.96, + "after": 11956.78, + "before": 13357.74, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 08:32:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061788242890181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 11956.78, + "principal_before": 13357.74, + "principal_data": -1400.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3061788417756805, + "account_data": -1288.0, + "after": 0.0, + "before": 1288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 08:32:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061788242890181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1288.0, + "principal_data": -1288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3061787661422149, + "account_data": 3000.0, + "after": 13357.74, + "before": 10357.74, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 08:31:30", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061787657997893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 13357.74, + "principal_before": 10357.74, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061771956407877, + "account_data": -11222.1, + "after": 5149.19, + "before": 16371.29, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 08:15:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061771789290949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 5149.19, + "principal_before": 16371.29, + "principal_data": -11222.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061771956211269, + "account_data": -1288.0, + "after": 0.0, + "before": 1288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 08:15:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061771789290949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1288.0, + "principal_data": -1288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061771363438213, + "account_data": 10000.0, + "after": 16371.29, + "before": 6371.29, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 08:14:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061771360030341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 16371.29, + "principal_before": 6371.29, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061765921623429, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 08:09:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1288.0, + "principal_before": 0.0, + "principal_data": 1288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061740146789893, + "account_data": -5912.77, + "after": 6371.29, + "before": 12284.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 07:43:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061740018912901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6371.29, + "principal_before": 12284.06, + "principal_data": -5912.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3061734781521413, + "account_data": 10000.0, + "after": 12284.06, + "before": 2284.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 07:37:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061734778015237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 12284.06, + "principal_before": 2284.06, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3061659744751173, + "account_data": -1110.34, + "after": 0.0, + "before": 1110.34, + "card_type_id": 2793249295533893, + "create_time": "2026-01-22 06:21:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061659378552261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 1110.34, + "principal_data": -1110.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3061659744538181, + "account_data": -124.48, + "after": 0.0, + "before": 124.48, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 06:21:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061659378552261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 124.48, + "principal_data": -124.48 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3061658701942277, + "account_data": -158.52, + "after": 124.48, + "before": 283.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-22 06:20:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061658506219141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 124.48, + "principal_before": 283.0, + "principal_data": -158.52 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061242694192645, + "account_data": -363.0, + "after": 830.8, + "before": 1193.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-21 23:17:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061242632179333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 830.8, + "principal_before": 1193.8, + "principal_data": -363.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061241135763077, + "account_data": -551.29, + "after": 0.14, + "before": 551.43, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 23:15:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061241004035525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.14, + "principal_before": 551.43, + "principal_data": -551.29 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 3061167891369605, + "account_data": -100.0, + "after": 3874.0, + "before": 3974.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-21 22:01:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061167849295429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 3874.0, + "principal_before": 3974.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3061091705326981, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 20:43:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1288.0, + "principal_before": 0.0, + "principal_data": 1288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3061081539612101, + "account_data": -589.94, + "after": 3665.64, + "before": 4255.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 20:33:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061081477877381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003185854517765, + "tenant_member_id": 3003185854190085, + "principal_after": 3665.64, + "principal_before": 4255.58, + "principal_data": -589.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3061069807947397, + "account_data": -270.15, + "after": 551.43, + "before": 821.58, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 20:21:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3061069744459397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 551.43, + "principal_before": 821.58, + "principal_data": -270.15 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060991463460485, + "account_data": -194.66, + "after": 821.58, + "before": 1016.24, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 19:01:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060991368793669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 821.58, + "principal_before": 1016.24, + "principal_data": -194.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060991107354181, + "account_data": 260.1, + "after": 10884.84, + "before": 10624.74, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 19:01:13", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060942435815045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10884.84, + "principal_before": 10624.74, + "principal_data": 260.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060990456188357, + "account_data": -271.76, + "after": 1016.24, + "before": 1288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 19:00:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060990364323461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1016.24, + "principal_before": 1288.0, + "principal_data": -271.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3060955651395141, + "account_data": 10000.0, + "after": 10357.74, + "before": 357.74, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 18:25:08", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060955647348293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10357.74, + "principal_before": 357.74, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060942515572165, + "account_data": -260.1, + "after": 10624.74, + "before": 10884.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 18:11:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060942435815045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10624.74, + "principal_before": 10884.84, + "principal_data": -260.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3060909236260421, + "account_data": -5.0, + "after": 283.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 17:37:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060909214617093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 283.0, + "principal_before": 288.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3060695890167557, + "account_data": -25.7, + "after": 1026.09, + "before": 1051.79, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 14:00:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060695854827397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1026.09, + "principal_before": 1051.79, + "principal_data": -25.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3060695889954565, + "account_data": -26.04, + "after": 0.0, + "before": 26.04, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 14:00:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060695854827397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821727959238917, + "tenant_member_id": 2799210181019397, + "principal_after": 0.0, + "principal_before": 26.04, + "principal_data": -26.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3060106492316485, + "account_data": -5043.2, + "after": 357.74, + "before": 5400.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 04:01:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060106145664069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 357.74, + "principal_before": 5400.94, + "principal_data": -5043.2 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060093470460549, + "account_data": 1288.0, + "after": 1288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 03:48:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1288.0, + "principal_before": 0.0, + "principal_data": 1288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060091171490629, + "account_data": -254.0, + "after": 1193.8, + "before": 1447.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-21 03:45:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060090994445317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 1193.8, + "principal_before": 1447.8, + "principal_data": -254.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060087552609093, + "account_data": -2071.14, + "after": 10884.84, + "before": 12955.98, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 03:42:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060087416212421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10884.84, + "principal_before": 12955.98, + "principal_data": -2071.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060087552412485, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 03:42:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060087416212421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3060085609270213, + "account_data": 10000.0, + "after": 12955.98, + "before": 2955.98, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 03:40:05", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060085605436357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 12955.98, + "principal_before": 2955.98, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3060055099264005, + "account_data": -947.73, + "after": 350.26, + "before": 1297.99, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 03:09:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060054876687173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 350.26, + "principal_before": 1297.99, + "principal_data": -947.73 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3060055099051013, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 03:09:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060054876687173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3060012063001221, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-21 02:25:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3060009543977989, + "account_data": -1889.66, + "after": 1110.34, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 02:22:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060009439628357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1110.34, + "principal_before": 3000.0, + "principal_data": -1889.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3060008891780037, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-21 02:22:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3060008888323013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3059783210110021, + "account_data": -32.75, + "after": 0.0, + "before": 32.75, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 22:32:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059783176997829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 32.75, + "principal_data": -32.75 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3059762872749125, + "account_data": -81.0, + "after": 59.0, + "before": 140.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-20 22:11:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059762816551749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 59.0, + "principal_before": 140.0, + "principal_data": -81.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3059634760125253, + "account_data": -29.67, + "after": 32.75, + "before": 62.42, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 20:01:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059634654039109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 32.75, + "principal_before": 62.42, + "principal_data": -29.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3059577363139589, + "account_data": -380.0, + "after": 5400.94, + "before": 5780.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 19:03:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059577309236037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5400.94, + "principal_before": 5780.94, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3059410284234693, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-20 16:13:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043884200789893, + "tenant_member_id": 3043883848157381, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3059410042078917, + "account_data": -1140.0, + "after": 2868.0, + "before": 4008.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 16:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059410002708357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2868.0, + "principal_before": 4008.0, + "principal_data": -1140.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3059409726670533, + "account_data": 3000.0, + "after": 4008.0, + "before": 1008.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 16:12:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3059409723082437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 4008.0, + "principal_before": 1008.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3058885516150597, + "account_data": -1738.23, + "after": 8261.77, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 07:19:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058885384112005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 8261.77, + "principal_before": 10000.0, + "principal_data": -1738.23 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3058885515970373, + "account_data": -638.0, + "after": 0.0, + "before": 638.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-20 07:19:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058885384112005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052750402162821, + "tenant_member_id": 3052749341853317, + "principal_after": 0.0, + "principal_before": 638.0, + "principal_data": -638.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3058596369401669, + "account_data": -380.0, + "after": 5780.94, + "before": 6160.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 02:25:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058596317644549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5780.94, + "principal_before": 6160.94, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3058545287628549, + "account_data": -589.87, + "after": 0.0, + "before": 589.87, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 01:33:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058544962373445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 589.87, + "principal_data": -589.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058514967776645, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-20 01:02:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058513985259205, + "account_data": -237.0, + "after": 1447.8, + "before": 1684.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-20 01:01:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058513923852165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 1447.8, + "principal_before": 1684.8, + "principal_data": -237.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058513153034053, + "account_data": -814.55, + "after": 2955.98, + "before": 3770.53, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 01:00:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058513095411397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2955.98, + "principal_before": 3770.53, + "principal_data": -814.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058512933177157, + "account_data": 3000.0, + "after": 3770.53, + "before": 770.53, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 01:00:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058512929113925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3770.53, + "principal_before": 770.53, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058496796968837, + "account_data": -752.44, + "after": 770.53, + "before": 1522.97, + "card_type_id": 2793249295533893, + "create_time": "2026-01-20 00:43:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058496706316101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 770.53, + "principal_before": 1522.97, + "principal_data": -752.44 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3058483096749829, + "account_data": -298.0, + "after": 22904.0, + "before": 23202.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-20 00:29:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058483012732741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217220863749, + "tenant_member_id": 2799207406946053, + "principal_after": 22904.0, + "principal_before": 23202.0, + "principal_data": -298.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3058482679121669, + "account_data": -1755.9, + "after": 2718.93, + "before": 4474.83, + "card_type_id": 2793266846533445, + "create_time": "2026-01-20 00:29:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058482606163717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2718.93, + "principal_before": 4474.83, + "principal_data": -1755.9 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3058425567677765, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 23:31:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3058422569158469, + "account_data": -251.76, + "after": 2781.08, + "before": 3032.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 23:28:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058422517417797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2781.08, + "principal_before": 3032.84, + "principal_data": -251.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3058422348711749, + "account_data": 3000.0, + "after": 3032.84, + "before": 32.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 23:28:08", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058422344910661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 3032.84, + "principal_before": 32.84, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超", + "memberMobile": "13751780990", + "id": 3058333181724421, + "account_data": -101.19, + "after": 0.0, + "before": 101.19, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 21:57:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058333001533253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207579010821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219299469061, + "tenant_member_id": 2799207580059397, + "principal_after": 0.0, + "principal_before": 101.19, + "principal_data": -101.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058318294419333, + "account_data": -359.22, + "after": 1522.97, + "before": 1882.19, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 21:42:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058318188594949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1522.97, + "principal_before": 1882.19, + "principal_data": -359.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3058243010774853, + "account_data": 4852.51, + "after": 10000.0, + "before": 5147.49, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 20:25:42", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057795417589573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 10000.0, + "principal_before": 5147.49, + "principal_data": 4852.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3058243010529094, + "account_data": 638.0, + "after": 638.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 20:25:42", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057795417589573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052750402162821, + "tenant_member_id": 3052749341853317, + "principal_after": 638.0, + "principal_before": 0.0, + "principal_data": 638.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3058236533819269, + "account_data": -146.12, + "after": 4474.83, + "before": 4620.95, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 20:19:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058236407203717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4474.83, + "principal_before": 4620.95, + "principal_data": -146.12 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058218390030021, + "account_data": -165.0, + "after": 1684.8, + "before": 1849.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-19 20:00:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058218334914245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 1684.8, + "principal_before": 1849.8, + "principal_data": -165.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058214295455557, + "account_data": -346.35, + "after": 1882.19, + "before": 2228.54, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 19:56:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058214238685061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1882.19, + "principal_before": 2228.54, + "principal_data": -346.35 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3058182124734277, + "account_data": -380.0, + "after": 166.96, + "before": 546.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 19:23:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058182051252037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 166.96, + "principal_before": 546.96, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058110047504133, + "account_data": -120.24, + "after": 2228.54, + "before": 2348.78, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 18:10:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058109980378949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2228.54, + "principal_before": 2348.78, + "principal_data": -120.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3058099612026629, + "account_data": -190.0, + "after": 6160.94, + "before": 6350.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 17:59:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058099553847045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6160.94, + "principal_before": 6350.94, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3058048539952901, + "account_data": -154.34, + "after": 2348.78, + "before": 2503.12, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 17:07:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3058048453379909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2348.78, + "principal_before": 2503.12, + "principal_data": -154.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057979146864133, + "account_data": -109.44, + "after": 2503.12, + "before": 2612.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 15:57:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057979063076229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2503.12, + "principal_before": 2612.56, + "principal_data": -109.44 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3057859466282885, + "account_data": -402.71, + "after": 6350.94, + "before": 6753.65, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 13:55:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057859368748869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6350.94, + "principal_before": 6753.65, + "principal_data": -402.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3057859466069893, + "account_data": -1186.0, + "after": 0.0, + "before": 1186.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 13:55:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057859368748869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1186.0, + "principal_data": -1186.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3057795504654021, + "account_data": -4852.51, + "after": 5147.49, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 12:50:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057795417589573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 5147.49, + "principal_before": 10000.0, + "principal_data": -4852.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3057795504424645, + "account_data": -638.0, + "after": 0.0, + "before": 638.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 12:50:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057795417589573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052750402162821, + "tenant_member_id": 3052749341853317, + "principal_after": 0.0, + "principal_before": 638.0, + "principal_data": -638.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3057603406514501, + "account_data": 688.0, + "after": 1186.0, + "before": 498.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 09:35:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1186.0, + "principal_before": 498.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057420695603013, + "account_data": -2459.28, + "after": 2612.56, + "before": 5071.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 06:29:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057420612044677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2612.56, + "principal_before": 5071.84, + "principal_data": -2459.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057420695390021, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 06:29:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057420612044677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3057333869315909, + "account_data": 5000.0, + "after": 6753.65, + "before": 1753.65, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 05:00:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057333865711429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6753.65, + "principal_before": 1753.65, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3057214123050821, + "account_data": -1916.04, + "after": 546.96, + "before": 2463.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 02:59:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057214065969029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 546.96, + "principal_before": 2463.0, + "principal_data": -1916.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057102065273221, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-19 01:05:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057069836568261, + "account_data": 3000.0, + "after": 5071.84, + "before": 2071.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 00:32:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057069833078469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5071.84, + "principal_before": 2071.84, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057069559318213, + "account_data": -180.0, + "after": 1849.8, + "before": 2029.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-19 00:32:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057069481494341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 1849.8, + "principal_before": 2029.8, + "principal_data": -180.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3057068421285573, + "account_data": -978.11, + "after": 2071.84, + "before": 3049.95, + "card_type_id": 2793249295533893, + "create_time": "2026-01-19 00:30:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057068241651525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2071.84, + "principal_before": 3049.95, + "principal_data": -978.11 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3057046178219845, + "account_data": -234.0, + "after": 140.0, + "before": 374.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-19 00:08:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3057046131721989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 140.0, + "principal_before": 374.0, + "principal_data": -234.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3056982205843269, + "account_data": -691.44, + "after": 0.0, + "before": 691.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 23:03:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056981741766533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 691.44, + "principal_data": -691.44 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3056982205630277, + "account_data": -24.0, + "after": 0.0, + "before": 24.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 23:03:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056981741766533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 24.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3056956399159173, + "account_data": -216.0, + "after": 4672.28, + "before": 4888.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 22:36:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056956357510981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4672.28, + "principal_before": 4888.28, + "principal_data": -216.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3056890526271301, + "account_data": -98.0, + "after": 789.0, + "before": 887.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-18 21:29:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056890473858757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 789.0, + "principal_before": 887.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3056889936807685, + "account_data": -97.75, + "after": 3362.83, + "before": 3460.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 21:29:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056889854609285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3362.83, + "principal_before": 3460.58, + "principal_data": -97.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3056884949944197, + "account_data": -26.0, + "after": 589.87, + "before": 615.87, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 21:24:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056884862027525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 589.87, + "principal_before": 615.87, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3056794935265093, + "account_data": -107.85, + "after": 4620.95, + "before": 4728.8, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 19:52:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056794821478149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4620.95, + "principal_before": 4728.8, + "principal_data": -107.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3056724792837957, + "account_data": -24.21, + "after": 615.87, + "before": 640.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 18:41:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056724739262149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 615.87, + "principal_before": 640.08, + "principal_data": -24.21 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3056715342644998, + "account_data": -24.0, + "after": 2029.8, + "before": 2053.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-18 18:31:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056715277256517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2029.8, + "principal_before": 2053.8, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 3056525075613445, + "account_data": 274.3, + "after": 908.07, + "before": 633.77, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 15:18:08", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056506528040645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 908.07, + "principal_before": 633.77, + "principal_data": 274.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 3056506564429573, + "account_data": -274.3, + "after": 633.77, + "before": 908.07, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 14:59:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3056506528040645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 633.77, + "principal_before": 908.07, + "principal_data": -274.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3055890044389125, + "account_data": -91.6, + "after": 32.84, + "before": 124.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 04:32:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055889946986181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 32.84, + "principal_before": 124.44, + "principal_data": -91.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3055885299271365, + "account_data": -264.0, + "after": 24.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 04:27:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055884631246533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 24.0, + "principal_before": 288.0, + "principal_data": -264.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3055858040621125, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 03:59:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3055855807367045, + "account_data": -200.0, + "after": 5.0, + "before": 205.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-18 03:57:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055855749089029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 5.0, + "principal_before": 205.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3055854195361477, + "account_data": -1992.15, + "after": 1297.99, + "before": 3290.14, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 03:55:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055854068156229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1297.99, + "principal_before": 3290.14, + "principal_data": -1992.15 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3055852808914693, + "account_data": 3000.0, + "after": 3290.14, + "before": 290.14, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 03:54:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055852804769541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 3290.14, + "principal_before": 290.14, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3055774607657029, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 02:34:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3055763984451333, + "account_data": -515.55, + "after": 65.58, + "before": 581.13, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 02:23:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055763758073669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 65.58, + "principal_before": 581.13, + "principal_data": -515.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3055763984221957, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-18 02:23:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055763758073669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403805718469, + "tenant_member_id": 2799207067109125, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3055757788825285, + "account_data": -2565.52, + "after": 691.44, + "before": 3256.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 02:17:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055757702449029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 691.44, + "principal_before": 3256.96, + "principal_data": -2565.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3055757043795781, + "account_data": 3000.0, + "after": 3256.96, + "before": 256.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 02:16:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055757040240453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3256.96, + "principal_before": 256.96, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3055639809738501, + "account_data": -1317.76, + "after": 3049.95, + "before": 4367.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 00:17:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055639752902533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3049.95, + "principal_before": 4367.71, + "principal_data": -1317.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 3055629230081861, + "account_data": -502.99, + "after": 292.67, + "before": 795.66, + "card_type_id": 2793249295533893, + "create_time": "2026-01-18 00:06:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055629168838405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 292.67, + "principal_before": 795.66, + "principal_data": -502.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3055598627915461, + "account_data": -406.89, + "after": 4728.8, + "before": 5135.69, + "card_type_id": 2793266846533445, + "create_time": "2026-01-17 23:35:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055598552106757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4728.8, + "principal_before": 5135.69, + "principal_data": -406.89 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15726865555", + "id": 3055594099394565, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-17 23:31:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207086114565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3055567606646661, + "tenant_member_id": 2799207087163141, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3055593873819397, + "account_data": -380.0, + "after": 1008.0, + "before": 1388.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 23:30:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055593824929605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 1008.0, + "principal_before": 1388.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15726865555", + "id": 3055568805889925, + "account_data": -425.35, + "after": 574.65, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 23:05:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055568752183109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207086114565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215906440965, + "tenant_member_id": 2799207087163141, + "principal_after": 574.65, + "principal_before": 1000.0, + "principal_data": -425.35 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15726865555", + "id": 3055567467775877, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 23:04:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055567463532421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207086114565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215906440965, + "tenant_member_id": 2799207087163141, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3055398349588165, + "account_data": -26.0, + "after": 640.08, + "before": 666.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 20:11:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055398228330181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 640.08, + "principal_before": 666.08, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3055365207852805, + "account_data": -16.0, + "after": 256.96, + "before": 272.96, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 19:38:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055364907665093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 256.96, + "principal_before": 272.96, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3055356105049861, + "account_data": -12.0, + "after": 4367.71, + "before": 4379.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 19:28:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055356033468165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4367.71, + "principal_before": 4379.71, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3055354347685573, + "account_data": -8.0, + "after": 4379.71, + "before": 4387.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 19:27:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055354253756165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4379.71, + "principal_before": 4387.71, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3055215423655301, + "account_data": -120.0, + "after": 4888.28, + "before": 5008.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 17:05:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055215378369733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 4888.28, + "principal_before": 5008.28, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "章先生", + "memberMobile": "18898887676", + "id": 3055178207153925, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-17 16:28:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3055176917108101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3055177241628037, + "tenant_member_id": 3055176918828421, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "章先生", + "memberMobile": "18898887676", + "id": 3055177880128581, + "account_data": -497.26, + "after": 2502.74, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 16:27:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055177837333829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3055176917108101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3055176919745925, + "tenant_member_id": 3055176918828421, + "principal_after": 2502.74, + "principal_before": 3000.0, + "principal_data": -497.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "章先生", + "memberMobile": "18898887676", + "id": 3055177166523781, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 16:26:58", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3055177162837381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3055176917108101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3055176919745925, + "tenant_member_id": 3055176918828421, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3054532494724421, + "account_data": -1188.9, + "after": 0.0, + "before": 1188.9, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 05:31:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054531104017733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 1188.9, + "principal_data": -1188.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3054369725648197, + "account_data": -1273.07, + "after": 1753.65, + "before": 3026.72, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 02:45:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054369601342853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1753.65, + "principal_before": 3026.72, + "principal_data": -1273.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054369201130885, + "account_data": -626.09, + "after": 4387.71, + "before": 5013.8, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 02:45:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054369130761541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4387.71, + "principal_before": 5013.8, + "principal_data": -626.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3054282268888133, + "account_data": -401.22, + "after": 0.0, + "before": 401.22, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 01:16:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054282055470469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 401.22, + "principal_data": -401.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3054276249718085, + "account_data": -751.88, + "after": 0.0, + "before": 751.88, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 01:10:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054276024814917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 751.88, + "principal_data": -751.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3054276249505093, + "account_data": -46.17, + "after": 0.0, + "before": 46.17, + "card_type_id": 2793266846533445, + "create_time": "2026-01-17 01:10:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054276024814917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 46.17, + "principal_data": -46.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054273873972613, + "account_data": -42.0, + "after": 5013.8, + "before": 5055.8, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 01:08:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054273811484037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5013.8, + "principal_before": 5055.8, + "principal_data": -42.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054257697229893, + "account_data": -175.81, + "after": 5055.8, + "before": 5231.61, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 00:51:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054257647488325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5055.8, + "principal_before": 5231.61, + "principal_data": -175.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3054221958761669, + "account_data": -52.23, + "after": 0.0, + "before": 52.23, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 00:15:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054221885328581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 0.0, + "principal_before": 52.23, + "principal_data": -52.23 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3054211022737093, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-17 00:04:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403805718469, + "tenant_member_id": 2799207067109125, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3054210799635653, + "account_data": -418.87, + "after": 581.13, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 00:03:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054210684947781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 581.13, + "principal_before": 1000.0, + "principal_data": -418.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 3054210388725125, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-17 00:03:30", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054210385137029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054205936471429, + "account_data": -50.33, + "after": 5231.61, + "before": 5281.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:58:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054205878946885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5231.61, + "principal_before": 5281.94, + "principal_data": -50.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "公孙先生", + "memberMobile": "15902048888", + "id": 3054198283669189, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 23:51:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3054195559402885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3054195913755845, + "tenant_member_id": 3054195561631109, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "公孙先生", + "memberMobile": "15902048888", + "id": 3054196360924229, + "account_data": -248.69, + "after": 2751.31, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:49:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054196308544581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3054195559402885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3054195562007941, + "tenant_member_id": 3054195561631109, + "principal_after": 2751.31, + "principal_before": 3000.0, + "principal_data": -248.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "公孙先生", + "memberMobile": "15902048888", + "id": 3054195776130373, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:48:38", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054195772001605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3054195559402885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3054195562007941, + "tenant_member_id": 3054195561631109, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054189596577093, + "account_data": -260.66, + "after": 5281.94, + "before": 5542.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:42:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054189535317061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5281.94, + "principal_before": 5542.6, + "principal_data": -260.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054189147770053, + "account_data": 260.66, + "after": 5542.6, + "before": 5281.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:41:54", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054188785110085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5542.6, + "principal_before": 5281.94, + "principal_data": 260.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054188840848581, + "account_data": -260.66, + "after": 5281.94, + "before": 5542.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:41:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054188785110085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5281.94, + "principal_before": 5542.6, + "principal_data": -260.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3054160529952133, + "account_data": -175.56, + "after": 684.16, + "before": 859.72, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 23:12:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054160439233861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 684.16, + "principal_before": 859.72, + "principal_data": -175.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054140551908549, + "account_data": -957.79, + "after": 5542.6, + "before": 6500.39, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 22:52:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054140478459269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5542.6, + "principal_before": 6500.39, + "principal_data": -957.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3054115902115205, + "account_data": -94.37, + "after": 5008.28, + "before": 5102.65, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 22:27:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054115857059205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5008.28, + "principal_before": 5102.65, + "principal_data": -94.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3054107804896453, + "account_data": -185.53, + "after": 6500.39, + "before": 6685.92, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 22:19:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054107740343621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6500.39, + "principal_before": 6685.92, + "principal_data": -185.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3054047536385221, + "account_data": -400.15, + "after": 272.96, + "before": 673.11, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 21:17:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054047406263493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 272.96, + "principal_before": 673.11, + "principal_data": -400.15 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3054040536763461, + "account_data": -258.98, + "after": 666.08, + "before": 925.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 21:10:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054040464182469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 666.08, + "principal_before": 925.06, + "principal_data": -258.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3054039395143045, + "account_data": -8.0, + "after": 15617.7, + "before": 15625.7, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 21:09:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3054039337176453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 15617.7, + "principal_before": 15625.7, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3053989847486149, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 20:19:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3053972569034053, + "account_data": -291.94, + "after": 5135.69, + "before": 5427.63, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 20:01:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053972465929605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5135.69, + "principal_before": 5427.63, + "principal_data": -291.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3053966625361094, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 19:55:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053966621347013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3053959872466117, + "account_data": -190.0, + "after": 498.0, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 19:48:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053959777766597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 498.0, + "principal_before": 688.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3053900589812933, + "account_data": -190.0, + "after": 925.06, + "before": 1115.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 18:48:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053900553702469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 925.06, + "principal_before": 1115.06, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3053900348231045, + "account_data": 760.0, + "after": 1115.06, + "before": 355.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 18:48:07", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053900110302533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1115.06, + "principal_before": 355.06, + "principal_data": 760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3053900128275781, + "account_data": -760.0, + "after": 355.06, + "before": 1115.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 18:47:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053900110302533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 355.06, + "principal_before": 1115.06, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3053848293033349, + "account_data": -190.0, + "after": 2463.0, + "before": 2653.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 17:55:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053848272504325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2463.0, + "principal_before": 2653.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3053843005883781, + "account_data": -190.0, + "after": 673.11, + "before": 863.11, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 17:49:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053842980374021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 673.11, + "principal_before": 863.11, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3053827879585157, + "account_data": -26.0, + "after": 1115.06, + "before": 1141.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 17:34:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053827858269573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1115.06, + "principal_before": 1141.06, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3053790547071621, + "account_data": -241.83, + "after": 46.17, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 16:56:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053790328689029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 46.17, + "principal_before": 288.0, + "principal_data": -241.83 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3053406840262725, + "account_data": -950.0, + "after": 638.0, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 10:26:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053406813081605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052750402162821, + "tenant_member_id": 3052749341853317, + "principal_after": 638.0, + "principal_before": 1588.0, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3053136481243077, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 05:51:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3053074170941445, + "account_data": -3808.56, + "after": 3026.72, + "before": 6835.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 04:47:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053073969074309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3026.72, + "principal_before": 6835.28, + "principal_data": -3808.56 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3053074170728453, + "account_data": -98.0, + "after": 0.0, + "before": 98.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 04:47:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053073969074309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 98.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3053072924184581, + "account_data": 5000.0, + "after": 6835.28, + "before": 1835.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 04:46:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053072921219077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6835.28, + "principal_before": 1835.28, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3053065390149509, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 04:38:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3053060466757637, + "account_data": -2367.68, + "after": 751.88, + "before": 3119.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 04:33:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053060372729861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 751.88, + "principal_before": 3119.56, + "principal_data": -2367.68 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3053060466561029, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-16 04:33:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053060372729861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3053059533000773, + "account_data": 3000.0, + "after": 3119.56, + "before": 119.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 04:32:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053059529756741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 3119.56, + "principal_before": 119.56, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3053004021797061, + "account_data": -2007.38, + "after": 6685.92, + "before": 8693.3, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 03:36:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3053003945463813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6685.92, + "principal_before": 8693.3, + "principal_data": -2007.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3052862467248261, + "account_data": -559.28, + "after": 1188.9, + "before": 1748.18, + "card_type_id": 2793249295533893, + "create_time": "2026-01-16 01:12:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052862400893125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1188.9, + "principal_before": 1748.18, + "principal_data": -559.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052778954690693, + "account_data": -3.99, + "after": 8693.3, + "before": 8697.29, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 23:47:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052778910289925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8693.3, + "principal_before": 8697.29, + "principal_data": -3.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052778954494085, + "account_data": -136.52, + "after": 0.0, + "before": 136.52, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 23:47:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052778910289925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 136.52, + "principal_data": -136.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3052750769868677, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 23:18:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052750402162821, + "tenant_member_id": 3052749341853317, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙总", + "memberMobile": "13434273425", + "id": 3052750321078277, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 23:18:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052750316949509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3052749336856197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3052749343442565, + "tenant_member_id": 3052749341853317, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052735963926661, + "account_data": -178.0, + "after": 2053.8, + "before": 2231.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-15 23:03:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052735906484229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2053.8, + "principal_before": 2231.8, + "principal_data": -178.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052734198648901, + "account_data": -151.48, + "after": 136.52, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 23:01:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052734153248901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 136.52, + "principal_before": 288.0, + "principal_data": -151.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3052719648968709, + "account_data": -323.05, + "after": 4255.58, + "before": 4578.63, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 22:47:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052719590101061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003185854517765, + "tenant_member_id": 3003185854190085, + "principal_after": 4255.58, + "principal_before": 4578.63, + "principal_data": -323.05 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052690316595141, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 22:17:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052689786490885, + "account_data": -173.62, + "after": 8697.29, + "before": 8870.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 22:16:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052689730326725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8697.29, + "principal_before": 8870.91, + "principal_data": -173.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052689171533957, + "account_data": 3000.0, + "after": 8870.91, + "before": 5870.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 22:16:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052689166684293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8870.91, + "principal_before": 5870.91, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052634532646981, + "account_data": -437.39, + "after": 5870.91, + "before": 6308.3, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 21:20:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052634466848901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5870.91, + "principal_before": 6308.3, + "principal_data": -437.39 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 3052632134340613, + "account_data": -48.0, + "after": 2968.4, + "before": 3016.4, + "card_type_id": 2791990152417157, + "create_time": "2026-01-15 21:18:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052632065413125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 2968.4, + "principal_before": 3016.4, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052543693017285, + "account_data": -0.08, + "after": 6308.3, + "before": 6308.38, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 19:48:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052543662657669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6308.3, + "principal_before": 6308.38, + "principal_data": -0.08 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052543692820677, + "account_data": -75.92, + "after": 0.0, + "before": 75.92, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 19:48:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052543662657669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 75.92, + "principal_data": -75.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3052540973256837, + "account_data": -64.0, + "after": 75.92, + "before": 139.92, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 19:45:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052540951171141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 75.92, + "principal_before": 139.92, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3052536224469061, + "account_data": -134.04, + "after": 5427.63, + "before": 5561.67, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 19:40:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052536196567045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5427.63, + "principal_before": 5561.67, + "principal_data": -134.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3052499604328453, + "account_data": -380.0, + "after": 1141.06, + "before": 1521.06, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 19:03:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052499568791557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1141.06, + "principal_before": 1521.06, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3052487099273285, + "account_data": -66.0, + "after": 119.56, + "before": 185.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 18:50:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052486983602373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 119.56, + "principal_before": 185.56, + "principal_data": -66.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3052486652465285, + "account_data": 122.0, + "after": 185.56, + "before": 63.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 18:50:02", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052485006135301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 185.56, + "principal_before": 63.56, + "principal_data": 122.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3052485075095685, + "account_data": -122.0, + "after": 63.56, + "before": 185.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 18:48:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052485006135301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 63.56, + "principal_before": 185.56, + "principal_data": -122.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3052424371244037, + "account_data": -190.0, + "after": 98.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 17:46:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3052424301988549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 98.0, + "principal_before": 288.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3051863812408645, + "account_data": -507.85, + "after": 185.56, + "before": 693.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 08:16:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051863711467269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 185.56, + "principal_before": 693.41, + "principal_data": -507.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3051668072122245, + "account_data": -35.0, + "after": 52.23, + "before": 87.23, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 04:57:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051667999163717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 52.23, + "principal_before": 87.23, + "principal_data": -35.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3051667479955909, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 04:56:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3051659266721093, + "account_data": -2306.59, + "after": 693.41, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 04:48:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051659199612677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 693.41, + "principal_before": 3000.0, + "principal_data": -2306.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 3051658129704837, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 04:47:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051658126477189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051622100715205, + "account_data": -1968.79, + "after": 6308.38, + "before": 8277.17, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 04:10:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051621927864198, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6308.38, + "principal_before": 8277.17, + "principal_data": -1968.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3051618885240709, + "account_data": -570.0, + "after": 1835.28, + "before": 2405.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 04:07:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051618688894277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1835.28, + "principal_before": 2405.28, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3051610224855429, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 03:58:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3051600166241989, + "account_data": -672.21, + "after": 2405.28, + "before": 3077.49, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 03:48:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051600022816645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2405.28, + "principal_before": 3077.49, + "principal_data": -672.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3051599282014085, + "account_data": 3000.0, + "after": 3077.49, + "before": 77.49, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 03:47:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051599278917509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3077.49, + "principal_before": 77.49, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3051501735905029, + "account_data": -405.61, + "after": 401.22, + "before": 806.83, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 02:08:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051501667697989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 401.22, + "principal_before": 806.83, + "principal_data": -405.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051442608146309, + "account_data": -230.59, + "after": 139.92, + "before": 370.51, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 01:07:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051442559026949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 139.92, + "principal_before": 370.51, + "principal_data": -230.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3051403463821061, + "account_data": -578.65, + "after": 863.11, + "before": 1441.76, + "card_type_id": 2793249295533893, + "create_time": "2026-01-15 00:28:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051403419207429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 863.11, + "principal_before": 1441.76, + "principal_data": -578.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3051403463657221, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-15 00:28:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051403419207429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051378351965509, + "account_data": -150.0, + "after": 2231.8, + "before": 2381.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-15 00:02:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051378295228293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2231.8, + "principal_before": 2381.8, + "principal_data": -150.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051372206065349, + "account_data": -325.65, + "after": 370.51, + "before": 696.16, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 23:56:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051372153226565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 370.51, + "principal_before": 696.16, + "principal_data": -325.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3051321104762565, + "account_data": -96.0, + "after": 5102.65, + "before": 5198.65, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 23:04:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051321075124101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5102.65, + "principal_before": 5198.65, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051269129488261, + "account_data": -245.76, + "after": 696.16, + "before": 941.92, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 22:11:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051268980852613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 696.16, + "principal_before": 941.92, + "principal_data": -245.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3051266273773253, + "account_data": -400.08, + "after": 15625.7, + "before": 16025.78, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 22:08:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051266211907461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 15625.7, + "principal_before": 16025.78, + "principal_data": -400.08 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051191807329605, + "account_data": -157.0, + "after": 2381.8, + "before": 2538.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-14 20:52:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051191751771845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2381.8, + "principal_before": 2538.8, + "principal_data": -157.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051190150465413, + "account_data": -376.33, + "after": 941.92, + "before": 1318.25, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 20:51:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051190085403973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 941.92, + "principal_before": 1318.25, + "principal_data": -376.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3051109545969541, + "account_data": -176.21, + "after": 5561.67, + "before": 5737.88, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 19:29:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051109489575237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5561.67, + "principal_before": 5737.88, + "principal_data": -176.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3051087236302597, + "account_data": -190.0, + "after": 2653.0, + "before": 2843.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 19:06:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051087214036293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2653.0, + "principal_before": 2843.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3051075824420741, + "account_data": -269.75, + "after": 1318.25, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 18:54:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051075777627845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1318.25, + "principal_before": 1588.0, + "principal_data": -269.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3051020375099141, + "account_data": -190.0, + "after": 77.49, + "before": 267.49, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 17:58:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3051020348655301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 77.49, + "principal_before": 267.49, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3050783482201797, + "account_data": -61.96, + "after": 26.04, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 13:57:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050783422564101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821727959238917, + "tenant_member_id": 2799210181019397, + "principal_after": 26.04, + "principal_before": 88.0, + "principal_data": -61.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3050320961685189, + "account_data": -1844.82, + "after": 1748.18, + "before": 3593.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 06:06:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050320871704325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1748.18, + "principal_before": 3593.0, + "principal_data": -1844.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3050320961537733, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 06:06:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050320871704325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3050320059140485, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 06:06:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3050319799764741, + "account_data": 3000.0, + "after": 3593.0, + "before": 593.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 06:05:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050319796668165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 3593.0, + "principal_before": 593.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3050250321904965, + "account_data": -570.0, + "after": 8277.17, + "before": 8847.17, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 04:55:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050250129491269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8277.17, + "principal_before": 8847.17, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3050246411340229, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 04:51:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3050243951429381, + "account_data": -1516.26, + "after": 8847.17, + "before": 10363.43, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 04:48:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050243203696325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8847.17, + "principal_before": 10363.43, + "principal_data": -1516.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3050242291402629, + "account_data": 10000.0, + "after": 10363.43, + "before": 363.43, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 04:46:57", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050242288224133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10363.43, + "principal_before": 363.43, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3050104342464389, + "account_data": -161.41, + "after": 87.23, + "before": 248.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 02:26:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050104253941637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 87.23, + "principal_before": 248.64, + "principal_data": -161.41 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3050091545856389, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 02:13:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3050078051305349, + "account_data": -1558.24, + "after": 1441.76, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 01:59:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050077891986757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1441.76, + "principal_before": 3000.0, + "principal_data": -1558.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3050077120267973, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 01:58:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050077116909253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3050036376372933, + "account_data": -178.36, + "after": 806.83, + "before": 985.19, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 01:17:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3050036246119749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 806.83, + "principal_before": 985.19, + "principal_data": -178.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3049980346533573, + "account_data": -64.78, + "after": 1521.06, + "before": 1585.84, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 00:20:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049980248147653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1521.06, + "principal_before": 1585.84, + "principal_data": -64.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3049980346369733, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-14 00:20:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049980248147653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3049963927831877, + "account_data": -532.02, + "after": 985.19, + "before": 1517.21, + "card_type_id": 2793249295533893, + "create_time": "2026-01-14 00:03:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049963852728005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 985.19, + "principal_before": 1517.21, + "principal_data": -532.02 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3049873338582341, + "account_data": -89.0, + "after": 374.0, + "before": 463.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-13 22:31:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049873290479365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 374.0, + "principal_before": 463.0, + "principal_data": -89.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3049814423553797, + "account_data": -57.21, + "after": 859.72, + "before": 916.93, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 21:31:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049814353184645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 859.72, + "principal_before": 916.93, + "principal_data": -57.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3049813222426309, + "account_data": -443.19, + "after": 1517.21, + "before": 1960.4, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 21:30:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3049813135066437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1517.21, + "principal_before": 1960.4, + "principal_data": -443.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3048861607298949, + "account_data": -865.64, + "after": 593.0, + "before": 1458.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 05:22:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048861492757829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 593.0, + "principal_before": 1458.64, + "principal_data": -865.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3048810756016517, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-13 04:30:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3048755700467461, + "account_data": -1414.16, + "after": 1585.84, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 03:34:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048755614156485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1585.84, + "principal_before": 3000.0, + "principal_data": -1414.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3048755224839941, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 03:34:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048755221546757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3048747813700933, + "account_data": -376.59, + "after": 0.0, + "before": 376.59, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 03:26:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048747724457285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 376.59, + "principal_data": -376.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3048699604059845, + "account_data": -65.0, + "after": 2843.0, + "before": 2908.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 02:37:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048699584055045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2843.0, + "principal_before": 2908.0, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3048666176079557, + "account_data": -791.28, + "after": 124.44, + "before": 915.72, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 02:03:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048666122962245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 124.44, + "principal_before": 915.72, + "principal_data": -791.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3048665941804741, + "account_data": 224.3, + "after": 915.72, + "before": 691.42, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 02:03:24", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048665610569605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 915.72, + "principal_before": 691.42, + "principal_data": 224.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3048665674008261, + "account_data": -224.3, + "after": 691.42, + "before": 915.72, + "card_type_id": 2793249295533893, + "create_time": "2026-01-13 02:03:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048665610569605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 691.42, + "principal_before": 915.72, + "principal_data": -224.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3048508373878661, + "account_data": -92.0, + "after": 2908.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 23:23:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048508334737093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2908.0, + "principal_before": 3000.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3048508373714821, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-12 23:23:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048508334737093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3048507190315461, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-12 23:21:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3048506803160965, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 23:21:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048506799261573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3048466371347781, + "account_data": -937.58, + "after": 62.42, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 22:40:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048466327307973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 62.42, + "principal_before": 1000.0, + "principal_data": -937.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3048466102191813, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 22:40:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048466098390725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3048333361694597, + "account_data": -88.0, + "after": 887.0, + "before": 975.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-12 20:25:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048333306464005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 887.0, + "principal_before": 975.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 3048330873440005, + "account_data": -19.48, + "after": 0.0, + "before": 19.48, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 20:22:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048330531686278, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 0.0, + "principal_before": 19.48, + "principal_data": -19.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3048330037774085, + "account_data": -98.08, + "after": 3460.58, + "before": 3558.66, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 20:21:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048329986606789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3460.58, + "principal_before": 3558.66, + "principal_data": -98.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3048240276030789, + "account_data": -83.07, + "after": 916.93, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 18:50:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048240239363845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 916.93, + "principal_before": 1000.0, + "principal_data": -83.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3048240275883333, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-12 18:50:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048240239363845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048239462909701, + "tenant_member_id": 3048238811858693, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3048240105654661, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-12 18:50:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048239462909701, + "tenant_member_id": 3048238811858693, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "15815818028", + "id": 3048239335622533, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 18:49:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048239331870597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3048238810220293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3048238812202757, + "tenant_member_id": 3048238811858693, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3048216115545797, + "account_data": -784.53, + "after": 1458.64, + "before": 2243.17, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 18:25:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048216026105157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1458.64, + "principal_before": 2243.17, + "principal_data": -784.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3048016930833733, + "account_data": -570.0, + "after": 1388.0, + "before": 1958.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 15:03:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3048016892069637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 1388.0, + "principal_before": 1958.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3047162975831365, + "account_data": -21.0, + "after": 81.0, + "before": 102.0, + "card_type_id": 2794699703437125, + "create_time": "2026-01-12 00:34:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047162922960773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 81.0, + "principal_before": 102.0, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3047161425348357, + "account_data": -570.0, + "after": 267.49, + "before": 837.49, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 00:32:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047161380079493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 267.49, + "principal_before": 837.49, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3047141116495621, + "account_data": -197.25, + "after": 837.49, + "before": 1034.74, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047140991436101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 837.49, + "principal_before": 1034.74, + "principal_data": -197.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3047141116315397, + "account_data": -98.0, + "after": 0.0, + "before": 98.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-12 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047140991436101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 98.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3047134806591237, + "account_data": -137.1, + "after": 376.59, + "before": 513.69, + "card_type_id": 2793249295533893, + "create_time": "2026-01-12 00:05:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047134783014789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 376.59, + "principal_before": 513.69, + "principal_data": -137.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3047065997657797, + "account_data": -48.0, + "after": 363.43, + "before": 411.43, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 22:55:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047065964218053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 363.43, + "principal_before": 411.43, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3047021528614661, + "account_data": -8.0, + "after": 513.69, + "before": 521.69, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 22:10:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047021503907141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 513.69, + "principal_before": 521.69, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3047019233052421, + "account_data": -109.92, + "after": 5198.65, + "before": 5308.57, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 22:08:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3047019192649413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5198.65, + "principal_before": 5308.57, + "principal_data": -109.92 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 3046955919116165, + "account_data": -6.0, + "after": 19.48, + "before": 25.48, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 21:03:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046955798448005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 19.48, + "principal_before": 25.48, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 3046954740008709, + "account_data": -14.0, + "after": 25.48, + "before": 39.48, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 21:02:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046954684204933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 25.48, + "principal_before": 39.48, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3046949133551493, + "account_data": -190.0, + "after": 521.69, + "before": 711.69, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 20:56:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046949104797381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 521.69, + "principal_before": 711.69, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3046943844272005, + "account_data": -190.0, + "after": 98.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 20:51:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046943807014597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 98.0, + "principal_before": 288.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3046904106878725, + "account_data": -310.11, + "after": 5737.88, + "before": 6047.99, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 20:11:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046904061970309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5737.88, + "principal_before": 6047.99, + "principal_data": -310.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3046793377253061, + "account_data": -144.0, + "after": 5308.57, + "before": 5452.57, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 18:18:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046793358313221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5308.57, + "principal_before": 5452.57, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3046718241376133, + "account_data": -120.0, + "after": 5452.57, + "before": 5572.57, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 17:02:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046718180853509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5452.57, + "principal_before": 5572.57, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3046600101709701, + "account_data": -282.0, + "after": 1958.0, + "before": 2240.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 15:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046600050837381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 1958.0, + "principal_before": 2240.0, + "principal_data": -282.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3046600101545861, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 15:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046600050837381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043884200789893, + "tenant_member_id": 3043883848157381, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3046095739193733, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 06:28:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3046093805422469, + "account_data": -11965.26, + "after": 1034.74, + "before": 13000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 06:26:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046093693290245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1034.74, + "principal_before": 13000.0, + "principal_data": -11965.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3046093805275013, + "account_data": -1588.0, + "after": 0.0, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 06:26:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046093693290245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1588.0, + "principal_data": -1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3046093278512453, + "account_data": 3000.0, + "after": 13000.0, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 06:26:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046093275432261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 13000.0, + "principal_before": 10000.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 3046093054150405, + "account_data": -130.0, + "after": 1273.0, + "before": 1403.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-11 06:26:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046093013845893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1273.0, + "principal_before": 1403.0, + "principal_data": -130.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3046021358437701, + "account_data": -575.26, + "after": 1960.4, + "before": 2535.66, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 05:13:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046021287052997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1960.4, + "principal_before": 2535.66, + "principal_data": -575.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3046021181261509, + "account_data": -705.93, + "after": 2535.66, + "before": 3241.59, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 05:13:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046021107762501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2535.66, + "principal_before": 3241.59, + "principal_data": -705.93 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3046021181130437, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 05:13:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046021107762501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3046021004462469, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-11 05:12:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3046020661823173, + "account_data": 3000.0, + "after": 3241.59, + "before": 241.59, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 05:12:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3046020658824901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3241.59, + "principal_before": 241.59, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 3045921100105605, + "account_data": -371.0, + "after": 3951.0, + "before": 4322.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-11 03:31:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045921027868421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 3951.0, + "principal_before": 4322.0, + "principal_data": -371.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3045893205804357, + "account_data": -772.13, + "after": 0.0, + "before": 772.13, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 03:02:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045892879828677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 772.13, + "principal_data": -772.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3045848363992965, + "account_data": -659.08, + "after": 411.43, + "before": 1070.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 02:17:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045848256283973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 411.43, + "principal_before": 1070.51, + "principal_data": -659.08 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3045835963303813, + "account_data": -181.0, + "after": 2538.8, + "before": 2719.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-11 02:04:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045835921016133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2538.8, + "principal_before": 2719.8, + "principal_data": -181.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3045792223004357, + "account_data": -939.46, + "after": 711.69, + "before": 1651.15, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 01:20:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045792200541957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 711.69, + "principal_before": 1651.15, + "principal_data": -939.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 3045763005122245, + "account_data": -263.64, + "after": 46.67, + "before": 310.31, + "card_type_id": 2793249295533893, + "create_time": "2026-01-11 00:50:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045762953348421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 46.67, + "principal_before": 310.31, + "principal_data": -263.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3045664747652869, + "account_data": -1224.11, + "after": 1070.51, + "before": 2294.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 23:10:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045664689308997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1070.51, + "principal_before": 2294.62, + "principal_data": -1224.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3045651516425989, + "account_data": -28.0, + "after": 2294.62, + "before": 2322.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 22:56:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045651480905605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2294.62, + "principal_before": 2322.62, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3045638636128133, + "account_data": -155.37, + "after": 5572.57, + "before": 5727.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 22:43:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045638589023557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5572.57, + "principal_before": 5727.94, + "principal_data": -155.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3045530770687877, + "account_data": -7.0, + "after": 248.64, + "before": 255.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 20:54:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045530748077765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 248.64, + "principal_before": 255.64, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3045479097337605, + "account_data": -288.01, + "after": 6047.99, + "before": 6336.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 20:01:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045478961399493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 6047.99, + "principal_before": 6336.0, + "principal_data": -288.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3045450975381189, + "account_data": -203.99, + "after": 915.72, + "before": 1119.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 19:32:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045450929325381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 915.72, + "principal_before": 1119.71, + "principal_data": -203.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3045359847147397, + "account_data": -100.0, + "after": 2322.62, + "before": 2422.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 18:00:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045359796078277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2322.62, + "principal_before": 2422.62, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3045315352512709, + "account_data": 1336.0, + "after": 6336.0, + "before": 5000.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 17:15:00", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 6336.0, + "principal_before": 5000.0, + "principal_data": 1336.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3045314187577541, + "account_data": -1336.97, + "after": 0.0, + "before": 1336.97, + "card_type_id": 2794699703437125, + "create_time": "2026-01-10 17:13:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1336.97, + "principal_data": -1336.97 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3045268431456645, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 16:27:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3045263167768453, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 16:21:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3045263163688838, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3044894126950853, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 10:06:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3044611170387653, + "account_data": -208.58, + "after": 2243.17, + "before": 2451.75, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 05:18:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044611107473285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 2243.17, + "principal_before": 2451.75, + "principal_data": -208.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3044610892596997, + "account_data": -894.93, + "after": 2451.75, + "before": 3346.68, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 05:18:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044610780563205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 2451.75, + "principal_before": 3346.68, + "principal_data": -894.93 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3044610892433157, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 05:18:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044610780563205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3044610524547461, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 05:18:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3044610248443653, + "account_data": 3000.0, + "after": 3346.68, + "before": 346.68, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 05:17:44", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044610245412613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 3346.68, + "principal_before": 346.68, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 3044379099432261, + "account_data": -68.65, + "after": 543.68, + "before": 612.33, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 01:22:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044379041400517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 543.68, + "principal_before": 612.33, + "principal_data": -68.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 3044379099268421, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 01:22:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044379041400517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3044359319062405, + "account_data": -310.0, + "after": 2719.8, + "before": 3029.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-10 01:02:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044359275300165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 2719.8, + "principal_before": 3029.8, + "principal_data": -310.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3044358021236485, + "account_data": -1797.62, + "after": 2422.62, + "before": 4220.24, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 01:01:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044357964367173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2422.62, + "principal_before": 4220.24, + "principal_data": -1797.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3044338762073413, + "account_data": -106.88, + "after": 241.59, + "before": 348.47, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 00:41:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044338699372293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 241.59, + "principal_before": 348.47, + "principal_data": -106.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3044338761925957, + "account_data": -24.61, + "after": 0.0, + "before": 24.61, + "card_type_id": 2793266846533445, + "create_time": "2026-01-10 00:41:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044338699372293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 24.61, + "principal_data": -24.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3044336479782213, + "account_data": -685.29, + "after": 4220.24, + "before": 4905.53, + "card_type_id": 2793249295533893, + "create_time": "2026-01-10 00:39:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044336402843333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4220.24, + "principal_before": 4905.53, + "principal_data": -685.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3044280145905349, + "account_data": -206.3, + "after": 0.0, + "before": 206.3, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 23:41:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044279579100869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 206.3, + "principal_data": -206.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3044219340719813, + "account_data": -86.01, + "after": 5727.94, + "before": 5813.95, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 22:40:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044219198686917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5727.94, + "principal_before": 5813.95, + "principal_data": -86.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3044217417860805, + "account_data": -328.02, + "after": 4905.53, + "before": 5233.55, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 22:38:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044217346409797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4905.53, + "principal_before": 5233.55, + "principal_data": -328.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3044216945592197, + "account_data": -771.41, + "after": 1651.15, + "before": 2422.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 22:37:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044216812979525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1651.15, + "principal_before": 2422.56, + "principal_data": -771.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3044202420373189, + "account_data": -151.33, + "after": 5233.55, + "before": 5384.88, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 22:22:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044202336634629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5233.55, + "principal_before": 5384.88, + "principal_data": -151.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3044093222831813, + "account_data": -241.58, + "after": 1217.14, + "before": 1458.72, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 20:31:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044093142566789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1217.14, + "principal_before": 1458.72, + "principal_data": -241.58 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 3044036974150981, + "account_data": -98.0, + "after": 605.0, + "before": 703.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-09 19:34:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044036931241861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217516922629, + "tenant_member_id": 2799209794651909, + "principal_after": 605.0, + "principal_before": 703.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 3044036482582214, + "account_data": -84.51, + "after": 0.0, + "before": 84.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 19:34:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044036208248133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217522181893, + "tenant_member_id": 2799209794651909, + "principal_after": 0.0, + "principal_before": 84.51, + "principal_data": -84.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "枫先生", + "memberMobile": "18064611896", + "id": 3044020062324422, + "account_data": -488.0, + "after": 0.0, + "before": 488.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 19:17:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044019872646917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1914431239655621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220058703621, + "tenant_member_id": 2799212892030725, + "principal_after": 0.0, + "principal_before": 488.0, + "principal_data": -488.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3044004880532805, + "account_data": -320.94, + "after": 2422.56, + "before": 2743.5, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 19:01:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044004825908997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2422.56, + "principal_before": 2743.5, + "principal_data": -320.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3044004880352581, + "account_data": -98.0, + "after": 0.0, + "before": 98.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-09 19:01:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3044004825908997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 98.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3043896001235397, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-09 17:11:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043884200789893, + "tenant_member_id": 3043883848157381, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3043888949134661, + "account_data": -760.0, + "after": 2240.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 17:04:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3043888897164613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 2240.0, + "principal_before": 3000.0, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "15146102616", + "id": 3043884601099589, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 16:59:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3043884598134085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3043883846568133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3043883848534213, + "tenant_member_id": 3043883848157381, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3043855991948613, + "account_data": -190.0, + "after": 98.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-09 16:30:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3043855964096261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 98.0, + "principal_before": 288.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3042946407532421, + "account_data": -1389.84, + "after": 1458.72, + "before": 2848.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 01:05:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042946337982149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1458.72, + "principal_before": 2848.56, + "principal_data": -1389.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3042915521104325, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-09 00:33:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3042915429844293, + "account_data": -666.32, + "after": 2743.5, + "before": 3409.82, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 00:33:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042915382150917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2743.5, + "principal_before": 3409.82, + "principal_data": -666.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3042915110324101, + "account_data": 3000.0, + "after": 3409.82, + "before": 409.82, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 00:33:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042915106867077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3409.82, + "principal_before": 409.82, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042885734057861, + "account_data": -93.0, + "after": 3029.8, + "before": 3122.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-09 00:03:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042885689132869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3029.8, + "principal_before": 3122.8, + "principal_data": -93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042884936189701, + "account_data": -286.5, + "after": 5384.88, + "before": 5671.38, + "card_type_id": 2793249295533893, + "create_time": "2026-01-09 00:02:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042884864427781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5384.88, + "principal_before": 5671.38, + "principal_data": -286.5 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042835628508997, + "account_data": -120.0, + "after": 3122.8, + "before": 3242.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-08 23:12:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042835567429509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3122.8, + "principal_before": 3242.8, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042834472650565, + "account_data": -1114.24, + "after": 5671.38, + "before": 6785.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 23:11:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042834417780421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5671.38, + "principal_before": 6785.62, + "principal_data": -1114.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042834472503109, + "account_data": -21.68, + "after": 0.0, + "before": 21.68, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 23:11:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042834417780421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 21.68, + "principal_data": -21.68 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3042808935253829, + "account_data": -30.0, + "after": 1363.4, + "before": 1393.4, + "card_type_id": 2791990152417157, + "create_time": "2026-01-08 22:45:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042808875861829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1363.4, + "principal_before": 1393.4, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3042808514414405, + "account_data": -29.89, + "after": 16025.78, + "before": 16055.67, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 22:44:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042808450893573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16025.78, + "principal_before": 16055.67, + "principal_data": -29.89 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042807430252357, + "account_data": -266.32, + "after": 21.68, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 22:43:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042807382574789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 21.68, + "principal_before": 288.0, + "principal_data": -266.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3042792795817669, + "account_data": -102.25, + "after": 0.0, + "before": 102.25, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 22:28:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042792188266245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 102.25, + "principal_data": -102.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3042756560373445, + "account_data": -63.39, + "after": 24.61, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 21:52:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042756489643781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 24.61, + "principal_before": 88.0, + "principal_data": -63.39 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 3042755063089029, + "account_data": -120.0, + "after": 3974.0, + "before": 4094.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-08 21:50:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042755007809413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 3974.0, + "principal_before": 4094.0, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042726769658245, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 21:21:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042726074795717, + "account_data": -423.09, + "after": 6785.62, + "before": 7208.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 21:21:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042726016518021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6785.62, + "principal_before": 7208.71, + "principal_data": -423.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3042725425661701, + "account_data": 3000.0, + "after": 7208.71, + "before": 4208.71, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 21:20:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042725422253829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7208.71, + "principal_before": 4208.71, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3042626825701189, + "account_data": -2.0, + "after": 255.64, + "before": 257.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 19:40:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042626791786309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 255.64, + "principal_before": 257.64, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3042622929815429, + "account_data": -212.26, + "after": 2848.56, + "before": 3060.82, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 19:36:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042622813276037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 2848.56, + "principal_before": 3060.82, + "principal_data": -212.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18898608626", + "id": 3042576254551941, + "account_data": -60.92, + "after": 170.32, + "before": 231.24, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 18:48:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042576184510277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207590971141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217227024133, + "tenant_member_id": 2799207592363781, + "principal_after": 170.32, + "principal_before": 231.24, + "principal_data": -60.92 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3042466907326277, + "account_data": -6.0, + "after": 409.82, + "before": 415.82, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 16:57:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3042466830452549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 409.82, + "principal_before": 415.82, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041809073358597, + "account_data": -3138.34, + "after": 4208.71, + "before": 7347.05, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 05:48:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041808964077381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4208.71, + "principal_before": 7347.05, + "principal_data": -3138.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3041707853956869, + "account_data": -1000.55, + "after": 0.0, + "before": 1000.55, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 04:05:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041706953983685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 1000.55, + "principal_data": -1000.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3041707853793029, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 04:05:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041706953983685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3041505042811269, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 00:38:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 3041504720815941, + "account_data": 1000.0, + "after": 1000.55, + "before": 0.55, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 00:38:38", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041504717391685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1000.55, + "principal_before": 0.55, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3041480265779077, + "account_data": -1126.59, + "after": 3060.82, + "before": 4187.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 00:13:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041480141981573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3060.82, + "principal_before": 4187.41, + "principal_data": -1126.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3041480265615237, + "account_data": -171.49, + "after": 0.0, + "before": 171.49, + "card_type_id": 2793266846533445, + "create_time": "2026-01-08 00:13:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041480141981573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 171.49, + "principal_data": -171.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041470717396805, + "account_data": -181.52, + "after": 7347.05, + "before": 7528.57, + "card_type_id": 2793249295533893, + "create_time": "2026-01-08 00:04:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041470661920581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7347.05, + "principal_before": 7528.57, + "principal_data": -181.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3041444937680581, + "account_data": -10.0, + "after": 257.64, + "before": 267.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 23:37:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041444909057797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 257.64, + "principal_before": 267.64, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041418089088773, + "account_data": -201.19, + "after": 7528.57, + "before": 7729.76, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 23:10:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041418032760517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7528.57, + "principal_before": 7729.76, + "principal_data": -201.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041356724324101, + "account_data": -209.76, + "after": 7729.76, + "before": 7939.52, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 22:08:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041356634392261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7729.76, + "principal_before": 7939.52, + "principal_data": -209.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041310685251397, + "account_data": -245.79, + "after": 7939.52, + "before": 8185.31, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 21:21:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041310634182533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7939.52, + "principal_before": 8185.31, + "principal_data": -245.79 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 3041239311812293, + "account_data": -38.0, + "after": 83.67, + "before": 121.67, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 20:08:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041239260874629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164219332293, + "tenant_member_id": 2854163871024645, + "principal_after": 83.67, + "principal_before": 121.67, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 3041207861626757, + "account_data": -142.0, + "after": 527.0, + "before": 669.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-07 19:36:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041207813490437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770908697477, + "tenant_member_id": 2974770547348357, + "principal_after": 527.0, + "principal_before": 669.0, + "principal_data": -142.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 3041207132473029, + "account_data": -96.99, + "after": 2374.99, + "before": 2471.98, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 19:35:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041207026403077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770547643269, + "tenant_member_id": 2974770547348357, + "principal_after": 2374.99, + "principal_before": 2471.98, + "principal_data": -96.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 3041207132325573, + "account_data": -118.2, + "after": 0.0, + "before": 118.2, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 19:35:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041207026403077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 0.0, + "principal_before": 118.2, + "principal_data": -118.2 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3041173751400325, + "account_data": -116.51, + "after": 171.49, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 19:01:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041173708949317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 171.49, + "principal_before": 288.0, + "principal_data": -116.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3041170495031685, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 18:58:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3041169986733765, + "account_data": 3000.0, + "after": 4187.41, + "before": 1187.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 18:58:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041169983669957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 4187.41, + "principal_before": 1187.41, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3041096160528069, + "account_data": -40.0, + "after": 8185.31, + "before": 8225.31, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 17:43:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3041096058947461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8185.31, + "principal_before": 8225.31, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3040354823145157, + "account_data": -808.44, + "after": 346.68, + "before": 1155.12, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 05:08:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040354706343621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 346.68, + "principal_before": 1155.12, + "principal_data": -808.44 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3040354822997701, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 05:08:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040354706343621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3040354656421509, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 05:08:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3040354223802053, + "account_data": 1000.0, + "after": 1155.12, + "before": 155.12, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 05:08:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040354220656325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1155.12, + "principal_before": 155.12, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040293116757765, + "account_data": -469.1, + "after": 8225.31, + "before": 8694.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 04:06:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040293024597765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8225.31, + "principal_before": 8694.41, + "principal_data": -469.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3040250379306693, + "account_data": -352.0, + "after": 0.0, + "before": 352.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 03:22:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040249962006213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269565459781, + "tenant_member_id": 3037269565082949, + "principal_after": 0.0, + "principal_before": 352.0, + "principal_data": -352.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040138307569541, + "account_data": -213.0, + "after": 3242.8, + "before": 3455.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-07 01:28:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040138260285317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3242.8, + "principal_before": 3455.8, + "principal_data": -213.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040137860859653, + "account_data": -430.18, + "after": 8694.41, + "before": 9124.59, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 01:28:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040137800468165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8694.41, + "principal_before": 9124.59, + "principal_data": -430.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040137860712197, + "account_data": -1001.36, + "after": 0.0, + "before": 1001.36, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 01:28:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040137800468165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 1001.36, + "principal_data": -1001.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3040118285682501, + "account_data": -1225.27, + "after": 0.0, + "before": 1225.27, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 01:08:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040118008809221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 1225.27, + "principal_data": -1225.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3040116734691205, + "account_data": -411.15, + "after": 415.82, + "before": 826.97, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 01:06:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040116635125445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 415.82, + "principal_before": 826.97, + "principal_data": -411.15 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3040075512202949, + "account_data": -1652.22, + "after": 1187.41, + "before": 2839.63, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 00:24:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040075433723717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1187.41, + "principal_before": 2839.63, + "principal_data": -1652.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3040073257027333, + "account_data": -574.4, + "after": 772.13, + "before": 1346.53, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 00:22:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040073187034821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 772.13, + "principal_before": 1346.53, + "principal_data": -574.4 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3040073256863493, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 00:22:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040073187034821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3040071569311429, + "account_data": -116.0, + "after": 968.0, + "before": 1084.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-07 00:20:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040071527319429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 968.0, + "principal_before": 1084.0, + "principal_data": -116.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3040070969542341, + "account_data": -115.64, + "after": 0.0, + "before": 115.64, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 00:20:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040070634030789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 0.0, + "principal_before": 115.64, + "principal_data": -115.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3040061677668165, + "account_data": -177.55, + "after": 267.64, + "before": 445.19, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 00:10:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040061539698437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 267.64, + "principal_before": 445.19, + "principal_data": -177.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3040061157132037, + "account_data": -554.81, + "after": 445.19, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-07 00:10:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040060985902981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 445.19, + "principal_before": 1000.0, + "principal_data": -554.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3040061156968197, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-07 00:10:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040060985902981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3039974286231365, + "tenant_member_id": 2901526704180613, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3040053022902149, + "account_data": -126.0, + "after": 463.0, + "before": 589.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-07 00:01:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040052977616773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 463.0, + "principal_before": 589.0, + "principal_data": -126.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040028271888261, + "account_data": -115.0, + "after": 3455.8, + "before": 3570.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-06 23:36:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040028222867141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3455.8, + "principal_before": 3570.8, + "principal_data": -115.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3040027708966725, + "account_data": -586.64, + "after": 1001.36, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 23:36:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040027616331461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1001.36, + "principal_before": 1588.0, + "principal_data": -586.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3040027285391237, + "account_data": -561.11, + "after": 102.25, + "before": 663.36, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 23:35:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3040027160725381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 102.25, + "principal_before": 663.36, + "principal_data": -561.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3039981940672133, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 22:49:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3039974286231365, + "tenant_member_id": 2901526704180613, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张无忌", + "memberMobile": "13686797215", + "id": 3039974183241605, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 22:41:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039974179014533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2901526703000965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2901526704655749, + "tenant_member_id": 2901526704180613, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3039945220818821, + "account_data": -80.29, + "after": 1119.71, + "before": 1200.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 22:12:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039945182889669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1119.71, + "principal_before": 1200.0, + "principal_data": -80.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3039945220605829, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 22:12:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039945182889669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3039945053914693, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 22:12:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3039944745944837, + "account_data": 1200.0, + "after": 1200.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 22:11:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039944742373125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1200.0, + "principal_before": 0.0, + "principal_data": 1200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3039756981733125, + "account_data": -191.22, + "after": 2839.63, + "before": 3030.85, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 19:00:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039756859590341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 2839.63, + "principal_before": 3030.85, + "principal_data": -191.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3039754609018629, + "account_data": -10.0, + "after": 826.97, + "before": 836.97, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 18:58:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039754567485125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 826.97, + "principal_before": 836.97, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3039140172991301, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 08:33:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3039120283372677, + "account_data": -1653.47, + "after": 1346.53, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 08:13:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039120222276805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1346.53, + "principal_before": 3000.0, + "principal_data": -1653.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3039119850015877, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 08:12:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039119846952069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3039098249334085, + "account_data": -5.0, + "after": 1225.27, + "before": 1230.27, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 07:50:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3039098174474949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1225.27, + "principal_before": 1230.27, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3038950100258117, + "account_data": -1211.71, + "after": 155.12, + "before": 1366.83, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 05:19:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038949978147525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 155.12, + "principal_before": 1366.83, + "principal_data": -1211.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3038949622451525, + "account_data": -378.81, + "after": 1230.27, + "before": 1609.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 05:19:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038949519149765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1230.27, + "principal_before": 1609.08, + "principal_data": -378.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3038784853887877, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 02:31:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3038784444501317, + "account_data": -931.65, + "after": 9124.59, + "before": 10056.24, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 02:31:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038784012766405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9124.59, + "principal_before": 10056.24, + "principal_data": -931.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3038783512562885, + "account_data": 10000.0, + "after": 10056.24, + "before": 56.24, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 02:30:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038783509171397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10056.24, + "principal_before": 56.24, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3038694809832261, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-06 01:00:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3038690111081797, + "account_data": -651.53, + "after": 348.47, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 00:55:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038690064993413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 348.47, + "principal_before": 1000.0, + "principal_data": -651.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3038689655409861, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 00:55:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038689651641541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3038647524674757, + "account_data": -607.32, + "after": 290.14, + "before": 897.46, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 00:12:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038647412918981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 290.14, + "principal_before": 897.46, + "principal_data": -607.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3038647275179205, + "account_data": -109.0, + "after": 0.0, + "before": 109.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-06 00:11:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038646985231685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 0.0, + "principal_before": 109.0, + "principal_data": -109.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3038598530403013, + "account_data": -357.38, + "after": 56.24, + "before": 413.62, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 23:22:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038598452579461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 56.24, + "principal_before": 413.62, + "principal_data": -357.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3038581756710085, + "account_data": -91.93, + "after": 5813.95, + "before": 5905.88, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 23:05:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038581717486789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5813.95, + "principal_before": 5905.88, + "principal_data": -91.93 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 3038408763886725, + "account_data": -64.0, + "after": 1719.0, + "before": 1783.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-05 20:09:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038408705248453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 1719.0, + "principal_before": 1783.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 3038407803063493, + "account_data": -63.21, + "after": 1597.76, + "before": 1660.97, + "card_type_id": 2793266846533445, + "create_time": "2026-01-05 20:08:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038407692651205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 1597.76, + "principal_before": 1660.97, + "principal_data": -63.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3038361455824005, + "account_data": -13.0, + "after": 1609.08, + "before": 1622.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 19:21:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038361400298821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1609.08, + "principal_before": 1622.08, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3038342473173701, + "account_data": -380.0, + "after": 1622.08, + "before": 2002.08, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 19:01:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038342429035717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1622.08, + "principal_before": 2002.08, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3038340387736261, + "account_data": -8.0, + "after": 836.97, + "before": 844.97, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 18:59:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038340336569669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 836.97, + "principal_before": 844.97, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 3038278947507398, + "account_data": -18.0, + "after": 417.0, + "before": 435.0, + "card_type_id": 2794699703437125, + "create_time": "2026-01-05 17:57:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038278888623301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853882120703749, + "tenant_member_id": 2853881398644101, + "principal_after": 417.0, + "principal_before": 435.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 3038100696239301, + "account_data": -419.33, + "after": 121.67, + "before": 541.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-05 14:55:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038100621855877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164219332293, + "tenant_member_id": 2854163871024645, + "principal_after": 121.67, + "principal_before": 541.0, + "principal_data": -419.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3038092750638213, + "account_data": -289.41, + "after": 0.0, + "before": 289.41, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 14:47:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3038092691786437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 289.41, + "principal_data": -289.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3037407641390213, + "account_data": -154.03, + "after": 0.0, + "before": 154.03, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 03:10:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037407391304837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 154.03, + "principal_data": -154.03 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3037387452452165, + "account_data": -1952.97, + "after": 844.97, + "before": 2797.94, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 02:50:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037387367992517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 844.97, + "principal_before": 2797.94, + "principal_data": -1952.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3037322949135685, + "account_data": -125.92, + "after": 413.62, + "before": 539.54, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 01:44:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037322883599493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 413.62, + "principal_before": 539.54, + "principal_data": -125.92 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3037318500616901, + "account_data": -75.0, + "after": 3570.8, + "before": 3645.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-05 01:40:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037318454561477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3570.8, + "principal_before": 3645.8, + "principal_data": -75.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3037302026833029, + "account_data": -605.89, + "after": 663.36, + "before": 1269.25, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 01:23:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037301944453829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 663.36, + "principal_before": 1269.25, + "principal_data": -605.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3037270289042757, + "account_data": -648.0, + "after": 352.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 00:51:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037270254521029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269565459781, + "tenant_member_id": 3037269565082949, + "principal_after": 352.0, + "principal_before": 1000.0, + "principal_data": -648.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3037270288878917, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-05 00:51:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037270254521029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269815201093, + "tenant_member_id": 3037269565082949, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3037270211218309, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-05 00:51:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269815201093, + "tenant_member_id": 3037269565082949, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "范先生", + "memberMobile": "13922740721", + "id": 3037269761871173, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 00:50:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037269758496069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3037269563493701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3037269565459781, + "tenant_member_id": 3037269565082949, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3037234061642885, + "account_data": -216.0, + "after": 897.46, + "before": 1113.46, + "card_type_id": 2793249295533893, + "create_time": "2026-01-05 00:14:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037233957981509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 897.46, + "principal_before": 1113.46, + "principal_data": -216.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3037200245820101, + "account_data": -374.22, + "after": 2284.06, + "before": 2658.28, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 23:39:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037200191605445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2284.06, + "principal_before": 2658.28, + "principal_data": -374.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3037169081862853, + "account_data": -997.92, + "after": 2002.08, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 23:08:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037169013410501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2002.08, + "principal_before": 3000.0, + "principal_data": -997.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3037169081699013, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 23:08:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037169013410501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3037168652176261, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 23:07:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3037168381316293, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 23:07:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037168377597125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 3037160353450693, + "account_data": -74.0, + "after": 3016.4, + "before": 3090.4, + "card_type_id": 2791990152417157, + "create_time": "2026-01-04 22:59:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037160276429509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3016.4, + "principal_before": 3090.4, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3037131272785093, + "account_data": -59.68, + "after": 1113.46, + "before": 1173.14, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 22:29:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037131210607301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1113.46, + "principal_before": 1173.14, + "principal_data": -59.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3037130590014597, + "account_data": -284.05, + "after": 539.54, + "before": 823.59, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 22:29:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037130539076933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 539.54, + "principal_before": 823.59, + "principal_data": -284.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3037130125462213, + "account_data": -223.32, + "after": 109.0, + "before": 332.32, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 22:28:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037130075114629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 109.0, + "principal_before": 332.32, + "principal_data": -223.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3037093498670405, + "account_data": -704.73, + "after": 3030.85, + "before": 3735.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 21:51:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037093398744261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3030.85, + "principal_before": 3735.58, + "principal_data": -704.73 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3037093498522949, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 21:51:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037093398744261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3037038562052805, + "account_data": -5375.88, + "after": 154.03, + "before": 5529.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 20:55:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037038480362821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 154.03, + "principal_before": 5529.91, + "principal_data": -5375.88 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3037004701076805, + "account_data": -55.0, + "after": 3645.8, + "before": 3700.8, + "card_type_id": 2791990152417157, + "create_time": "2026-01-04 20:20:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037004660394693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3645.8, + "principal_before": 3700.8, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3037003954932933, + "account_data": -365.31, + "after": 823.59, + "before": 1188.9, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 20:20:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037003902504069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 823.59, + "principal_before": 1188.9, + "principal_data": -365.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3037002135342405, + "account_data": -452.0, + "after": 5529.91, + "before": 5981.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 20:18:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037002074049669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5529.91, + "principal_before": 5981.91, + "principal_data": -452.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3037002135145797, + "account_data": -308.0, + "after": 0.0, + "before": 308.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 20:18:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3037002074049669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 308.0, + "principal_data": -308.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3036978212752517, + "account_data": -21.26, + "after": 2797.94, + "before": 2819.2, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 19:54:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036978097753285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2797.94, + "principal_before": 2819.2, + "principal_data": -21.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3036954004556933, + "account_data": -35.0, + "after": 2819.2, + "before": 2854.2, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 19:29:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036953960287557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2819.2, + "principal_before": 2854.2, + "principal_data": -35.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3036912640674693, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 18:47:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3036912280013317, + "account_data": 3000.0, + "after": 3735.58, + "before": 735.58, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 18:46:58", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036912276670981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3735.58, + "principal_before": 735.58, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3036728228318981, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 15:39:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821727959238917, + "tenant_member_id": 2799210181019397, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3036629031029637, + "account_data": -51.66, + "after": 1051.79, + "before": 1103.45, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 13:58:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036628904692549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1051.79, + "principal_before": 1103.45, + "principal_data": -51.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3036628387073157, + "account_data": 1000.0, + "after": 1103.45, + "before": 103.45, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 13:58:10", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036628383534213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1103.45, + "principal_before": 103.45, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3036053967883141, + "account_data": 1118.03, + "after": 1173.14, + "before": 55.11, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 04:13:50", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036041985854277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1173.14, + "principal_before": 55.11, + "principal_data": 1118.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3036053967735685, + "account_data": 205.0, + "after": 205.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-04 04:13:50", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036041985854277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 205.0, + "principal_before": 0.0, + "principal_data": 205.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3036042091219845, + "account_data": -1118.03, + "after": 55.11, + "before": 1173.14, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 04:01:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036041985854277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 55.11, + "principal_before": 1173.14, + "principal_data": -1118.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3036042091072389, + "account_data": -205.0, + "after": 0.0, + "before": 205.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-04 04:01:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3036041985854277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 205.0, + "principal_data": -205.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王", + "memberMobile": "13622766944", + "id": 3035997205105797, + "account_data": -462.49, + "after": 500.97, + "before": 963.46, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 03:16:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035997044165765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3034509267242053, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3034509269896261, + "tenant_member_id": 3034509269552197, + "principal_after": 500.97, + "principal_before": 963.46, + "principal_data": -462.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3035976411745093, + "account_data": -256.35, + "after": 1269.25, + "before": 1525.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 02:54:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035976339180677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1269.25, + "principal_before": 1525.6, + "principal_data": -256.35 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3035976411581253, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 02:54:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035976339180677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3035973074668421, + "account_data": -283.82, + "after": 735.58, + "before": 1019.4, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 02:51:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035972953656197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 735.58, + "principal_before": 1019.4, + "principal_data": -283.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3035973074520965, + "account_data": -1365.87, + "after": 0.0, + "before": 1365.87, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 02:51:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035972953656197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1365.87, + "principal_data": -1365.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035972652010373, + "account_data": 1649.69, + "after": 2854.2, + "before": 1204.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 02:51:07", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035823962868549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2854.2, + "principal_before": 1204.51, + "principal_data": 1649.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3035850749299525, + "account_data": -380.0, + "after": 308.0, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-04 00:47:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035850687089733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 308.0, + "principal_before": 688.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035824064334725, + "account_data": -1649.69, + "after": 1204.51, + "before": 2854.2, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 00:19:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035823962868549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1204.51, + "principal_before": 2854.2, + "principal_data": -1649.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3035808573197381, + "account_data": -567.37, + "after": 1173.14, + "before": 1740.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-04 00:04:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035808514952005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1173.14, + "principal_before": 1740.51, + "principal_data": -567.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035756613094533, + "account_data": -165.22, + "after": 2854.2, + "before": 3019.42, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 23:11:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035756573248325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2854.2, + "principal_before": 3019.42, + "principal_data": -165.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035756612914309, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 23:11:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035756573248325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3035720569326469, + "account_data": -120.0, + "after": 5905.88, + "before": 6025.88, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 22:34:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035720527367237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 5905.88, + "principal_before": 6025.88, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3035695408009029, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 22:09:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3035691115154501, + "account_data": 1000.0, + "after": 1525.6, + "before": 525.6, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 22:04:44", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035691111173189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1525.6, + "principal_before": 525.6, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3035661102369925, + "account_data": -96.0, + "after": 975.0, + "before": 1071.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-03 21:34:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035661034916741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 975.0, + "principal_before": 1071.0, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3035659988847429, + "account_data": -103.52, + "after": 3558.66, + "before": 3662.18, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 21:33:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035659882761029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3558.66, + "principal_before": 3662.18, + "principal_data": -103.52 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3035644082326405, + "account_data": -138.0, + "after": 1393.4, + "before": 1531.4, + "card_type_id": 2791990152417157, + "create_time": "2026-01-03 21:16:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035644039187589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1393.4, + "principal_before": 1531.4, + "principal_data": -138.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3035643481132101, + "account_data": -292.18, + "after": 16055.67, + "before": 16347.85, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 21:16:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035643389004677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16055.67, + "principal_before": 16347.85, + "principal_data": -292.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035475937398533, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 18:25:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035454511697029, + "account_data": -190.0, + "after": 3019.42, + "before": 3209.42, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 18:04:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035454462364485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3019.42, + "principal_before": 3209.42, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3035439710784389, + "account_data": 3000.0, + "after": 3209.42, + "before": 209.42, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 17:48:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035439707523973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3209.42, + "principal_before": 209.42, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3035404402314309, + "account_data": -120.0, + "after": 6025.88, + "before": 6145.88, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 17:13:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3035404354915205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6025.88, + "principal_before": 6145.88, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034655013997445, + "account_data": -820.22, + "after": 1366.83, + "before": 2187.05, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 04:30:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034654934338693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1366.83, + "principal_before": 2187.05, + "principal_data": -820.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3034634135031621, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 04:09:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3034614119238469, + "account_data": 5000.0, + "after": 5981.91, + "before": 981.91, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 03:49:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034614115748677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5981.91, + "principal_before": 981.91, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034558476290949, + "account_data": -143.0, + "after": 1636.0, + "before": 1779.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-03 02:52:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034558407461701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217255859973, + "tenant_member_id": 2799207599212293, + "principal_after": 1636.0, + "principal_before": 1779.0, + "principal_data": -143.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034556338883461, + "account_data": -1254.11, + "after": 2187.05, + "before": 3441.16, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 02:50:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034556237499525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 2187.05, + "principal_before": 3441.16, + "principal_data": -1254.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034556338736005, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 02:50:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034556237499525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王", + "memberMobile": "13622766944", + "id": 3034554715066117, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 02:48:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3034509267242053, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3034509687458885, + "tenant_member_id": 3034509269552197, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034554667585285, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-03 02:48:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3034554429492357, + "account_data": 3000.0, + "after": 3441.16, + "before": 441.16, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 02:48:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034554425363589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 3441.16, + "principal_before": 441.16, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王", + "memberMobile": "13622766944", + "id": 3034510277217093, + "account_data": -2036.54, + "after": 963.46, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 02:03:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034510112394053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3034509267242053, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3034509269896261, + "tenant_member_id": 3034509269552197, + "principal_after": 963.46, + "principal_before": 3000.0, + "principal_data": -2036.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王", + "memberMobile": "13622766944", + "id": 3034509615647877, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-03 02:02:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034509612305541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3034509267242053, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3034509269896261, + "tenant_member_id": 3034509269552197, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3034387340675973, + "account_data": -956.8, + "after": 525.6, + "before": 1482.4, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 23:58:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034387241684101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 525.6, + "principal_before": 1482.4, + "principal_data": -956.8 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈", + "memberMobile": "18026382150", + "id": 3034275214330949, + "account_data": -43.0, + "after": 95.0, + "before": 138.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-02 22:04:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034275164179269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207510443781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217033447173, + "tenant_member_id": 2799207511639813, + "principal_after": 95.0, + "principal_before": 138.0, + "principal_data": -43.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3034222560742469, + "account_data": -167.81, + "after": 6145.88, + "before": 6313.69, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 21:10:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034222514096965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6145.88, + "principal_before": 6313.69, + "principal_data": -167.81 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 3034217492991109, + "account_data": -115.0, + "after": 2315.0, + "before": 2430.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-02 21:05:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034217428339525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218217944837, + "tenant_member_id": 2799207192626949, + "principal_after": 2315.0, + "principal_before": 2430.0, + "principal_data": -115.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3034167768648517, + "account_data": -217.02, + "after": 209.42, + "before": 426.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 20:15:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034167697525573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 209.42, + "principal_before": 426.44, + "principal_data": -217.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3034136728521541, + "account_data": -222.48, + "after": 1365.87, + "before": 1588.35, + "card_type_id": 2793266846533445, + "create_time": "2026-01-02 19:43:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034136621910917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1365.87, + "principal_before": 1588.35, + "principal_data": -222.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3034033806937157, + "account_data": -270.27, + "after": 258.99, + "before": 529.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 17:58:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034033738206021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032780662688646, + "tenant_member_id": 3032780662360965, + "principal_after": 258.99, + "principal_before": 529.26, + "principal_data": -270.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 3034032551644037, + "account_data": -101.19, + "after": 85.12, + "before": 186.31, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 17:57:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3034032509324165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219509479173, + "tenant_member_id": 2799212596201221, + "principal_after": 85.12, + "principal_before": 186.31, + "principal_data": -101.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3033994722675589, + "account_data": -190.0, + "after": 441.16, + "before": 631.16, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 17:19:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033994671590277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 441.16, + "principal_before": 631.16, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3033896814578821, + "account_data": -10.0, + "after": 426.44, + "before": 436.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 15:39:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033896762526853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 426.44, + "principal_before": 436.44, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3033153309248389, + "account_data": -648.16, + "after": 1482.4, + "before": 2130.56, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 03:03:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033153253231429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1482.4, + "principal_before": 2130.56, + "principal_data": -648.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3033059687320645, + "account_data": -472.0, + "after": 529.26, + "before": 1001.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 01:27:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033059642919813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032780662688646, + "tenant_member_id": 3032780662360965, + "principal_after": 529.26, + "principal_before": 1001.26, + "principal_data": -472.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3033059687173189, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-02 01:27:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033059642919813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032781195824005, + "tenant_member_id": 3032780662360965, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3033035923409989, + "account_data": -8.0, + "after": 436.44, + "before": 444.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 01:03:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033035863805061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 436.44, + "principal_before": 444.44, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3033035274374021, + "account_data": -380.0, + "after": 444.44, + "before": 824.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-02 01:03:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3033035214670981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 444.44, + "principal_before": 824.44, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3032992036867141, + "account_data": -919.23, + "after": 1588.35, + "before": 2507.58, + "card_type_id": 2793266846533445, + "create_time": "2026-01-02 00:19:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032991893998405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1588.35, + "principal_before": 2507.58, + "principal_data": -919.23 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3032888180952837, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2026-01-01 22:33:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032781195824005, + "tenant_member_id": 3032780662360965, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3032800835095365, + "account_data": -584.45, + "after": 2130.56, + "before": 2715.01, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 21:04:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032800737872965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 2130.56, + "principal_before": 2715.01, + "principal_data": -584.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3032784932637573, + "account_data": -380.0, + "after": 1001.26, + "before": 1381.26, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 20:48:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032784884075333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032780662688646, + "tenant_member_id": 3032780662360965, + "principal_after": 1001.26, + "principal_before": 1381.26, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3032784442411845, + "account_data": -1618.74, + "after": 1381.26, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 20:47:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032783632649285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032780662688646, + "tenant_member_id": 3032780662360965, + "principal_after": 1381.26, + "principal_before": 3000.0, + "principal_data": -1618.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柳先生", + "memberMobile": "18698422638", + "id": 3032781045009541, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 20:44:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032781041831045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3032780660542341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3032780662688646, + "tenant_member_id": 3032780662360965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3032757208435589, + "account_data": -8.0, + "after": 824.44, + "before": 832.44, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 20:20:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032757157399429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 824.44, + "principal_before": 832.44, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 3032756000197701, + "account_data": -31.0, + "after": 669.0, + "before": 700.0, + "card_type_id": 2791990152417157, + "create_time": "2026-01-01 20:18:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032755936627589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770908697477, + "tenant_member_id": 2974770547348357, + "principal_after": 669.0, + "principal_before": 700.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 3032752211070021, + "account_data": -185.43, + "after": 118.2, + "before": 303.63, + "card_type_id": 2793266846533445, + "create_time": "2026-01-01 20:15:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032751895989061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 118.2, + "principal_before": 303.63, + "principal_data": -185.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3032705700711557, + "account_data": -190.0, + "after": 1740.51, + "before": 1930.51, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 19:27:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3032705633520453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1740.51, + "principal_before": 1930.51, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 3031647110482821, + "account_data": -145.84, + "after": 417.63, + "before": 563.47, + "card_type_id": 2793249295533893, + "create_time": "2026-01-01 01:30:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031647058168901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 417.63, + "principal_before": 563.47, + "principal_data": -145.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3031428773415813, + "account_data": -284.99, + "after": 2715.01, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 21:48:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031428697885765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 2715.01, + "principal_before": 3000.0, + "principal_data": -284.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3031428773268357, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-31 21:48:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031428697885765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3031426222574661, + "account_data": -760.0, + "after": 289.41, + "before": 1049.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 21:46:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031426139982661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 289.41, + "principal_before": 1049.41, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3031264142952325, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-31 19:01:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3031260070037125, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 18:57:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031260065891973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3031247391442437, + "account_data": -110.0, + "after": 3700.8, + "before": 3810.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-31 18:44:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031247306851909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3700.8, + "principal_before": 3810.8, + "principal_data": -110.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3031233898925637, + "account_data": -427.31, + "after": 1188.9, + "before": 1616.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 18:30:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031233834520453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1188.9, + "principal_before": 1616.21, + "principal_data": -427.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3031211235511877, + "account_data": -181.04, + "after": 206.3, + "before": 387.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 18:07:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3031211179970437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 206.3, + "principal_before": 387.34, + "principal_data": -181.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3030482502551365, + "account_data": -820.55, + "after": 631.16, + "before": 1451.71, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 05:46:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030482418993221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 631.16, + "principal_before": 1451.71, + "principal_data": -820.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3030482502403909, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-31 05:46:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030482418993221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3030482355932229, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-31 05:46:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3030482085545925, + "account_data": 1000.0, + "after": 1451.71, + "before": 451.71, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 05:45:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030482082580421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1451.71, + "principal_before": 451.71, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3030329854773061, + "account_data": -72.0, + "after": 3810.8, + "before": 3882.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-31 03:10:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030329801721925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3810.8, + "principal_before": 3882.8, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3030328736892869, + "account_data": -612.5, + "after": 332.32, + "before": 944.82, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 03:09:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030328671029061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 332.32, + "principal_before": 944.82, + "principal_data": -612.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3030296572348485, + "account_data": -318.65, + "after": 2658.28, + "before": 2976.93, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 02:37:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030296491542341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2658.28, + "principal_before": 2976.93, + "principal_data": -318.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3030233434638149, + "account_data": -760.0, + "after": 981.91, + "before": 1741.91, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 01:32:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030233317099333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 981.91, + "principal_before": 1741.91, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3030232907139141, + "account_data": 975.0, + "after": 1741.91, + "before": 766.91, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 01:32:21", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030232530061253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1741.91, + "principal_before": 766.91, + "principal_data": 975.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3030232610375685, + "account_data": -975.0, + "after": 766.91, + "before": 1741.91, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 01:32:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030232530061253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 766.91, + "principal_before": 1741.91, + "principal_data": -975.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3030207906056197, + "account_data": -875.6, + "after": 1741.91, + "before": 2617.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 01:06:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030207781226437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1741.91, + "principal_before": 2617.51, + "principal_data": -875.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3030146028456005, + "account_data": -207.56, + "after": 1616.21, + "before": 1823.77, + "card_type_id": 2793249295533893, + "create_time": "2025-12-31 00:03:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030145975371717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1616.21, + "principal_before": 1823.77, + "principal_data": -207.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3030117420337221, + "account_data": -108.71, + "after": 1823.77, + "before": 1932.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 23:34:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030117368039493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1823.77, + "principal_before": 1932.48, + "principal_data": -108.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3030086787139397, + "account_data": -570.0, + "after": 832.44, + "before": 1402.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 23:03:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030086732318789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 832.44, + "principal_before": 1402.44, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3030071687546821, + "account_data": -237.92, + "after": 1932.48, + "before": 2170.4, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 22:48:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030071640426501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1932.48, + "principal_before": 2170.4, + "principal_data": -237.92 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3030045926017029, + "account_data": -87.0, + "after": 589.0, + "before": 676.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 22:22:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030045886793733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 589.0, + "principal_before": 676.0, + "principal_data": -87.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3030042761922565, + "account_data": -95.2, + "after": 0.0, + "before": 95.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 22:18:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030042606913605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215962556165, + "tenant_member_id": 2799207117129477, + "principal_after": 0.0, + "principal_before": 95.2, + "principal_data": -95.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3030007809738821, + "account_data": -31.11, + "after": 2170.4, + "before": 2201.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 21:43:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030007769384773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2170.4, + "principal_before": 2201.51, + "principal_data": -31.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3030005035321349, + "account_data": -13.0, + "after": 1402.44, + "before": 1415.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 21:40:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3030004994476101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1402.44, + "principal_before": 1415.44, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3029992205174725, + "account_data": -40.0, + "after": 3882.8, + "before": 3922.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 21:27:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029992153827333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3882.8, + "principal_before": 3922.8, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3029990760040389, + "account_data": -220.57, + "after": 2201.51, + "before": 2422.08, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 21:26:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029990716196869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2201.51, + "principal_before": 2422.08, + "principal_data": -220.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3029935476197445, + "account_data": -318.03, + "after": 1019.4, + "before": 1337.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 20:29:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029935299184453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1019.4, + "principal_before": 1337.43, + "principal_data": -318.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3029934836025157, + "account_data": -68.0, + "after": 1531.4, + "before": 1599.4, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 20:29:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029934778812357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1531.4, + "principal_before": 1599.4, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3029934171834373, + "account_data": -181.59, + "after": 16347.85, + "before": 16529.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 20:28:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029934097237829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16347.85, + "principal_before": 16529.44, + "principal_data": -181.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3029931008165701, + "account_data": -10.0, + "after": 115.64, + "before": 125.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 20:25:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029930957162501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 115.64, + "principal_before": 125.64, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3029913265784773, + "account_data": -36.0, + "after": 3922.8, + "before": 3958.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 20:07:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029913214355269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3922.8, + "principal_before": 3958.8, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3029912367466437, + "account_data": -243.09, + "after": 2422.08, + "before": 2665.17, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 20:06:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029912283269061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2422.08, + "principal_before": 2665.17, + "principal_data": -243.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3029226081322949, + "account_data": -11258.94, + "after": 2976.93, + "before": 14235.87, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 08:28:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029225997715461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2976.93, + "principal_before": 14235.87, + "principal_data": -11258.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3029226081159109, + "account_data": -3176.0, + "after": 0.0, + "before": 3176.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-30 08:28:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029225997715461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 3176.0, + "principal_data": -3176.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3029225685584837, + "account_data": 1588.0, + "after": 3176.0, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-30 08:27:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 3176.0, + "principal_before": 1588.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3029225283520325, + "account_data": 10000.0, + "after": 14235.87, + "before": 4235.87, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 08:27:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029225280358213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 14235.87, + "principal_before": 4235.87, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3029153197623301, + "account_data": -382.49, + "after": 2617.51, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 07:14:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029153101875013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2617.51, + "principal_before": 3000.0, + "principal_data": -382.49 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3029153197492229, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-30 07:14:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029153101875013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3029141413906245, + "account_data": -1412.44, + "after": 1415.44, + "before": 2827.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 07:02:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029141331789893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1415.44, + "principal_before": 2827.88, + "principal_data": -1412.44 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3029139155355589, + "account_data": -90.0, + "after": 2.0, + "before": 92.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 06:59:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3029139090819077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 2.0, + "principal_before": 92.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3028965575740357, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-30 04:03:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3028964619438149, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 04:02:11", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028964616128581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028849006987269, + "account_data": -137.56, + "after": 2665.17, + "before": 2802.73, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 02:04:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028848960292933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2665.17, + "principal_before": 2802.73, + "principal_data": -137.56 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028798035298309, + "account_data": -93.0, + "after": 3958.8, + "before": 4051.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-30 01:12:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028797992781637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 3958.8, + "principal_before": 4051.8, + "principal_data": -93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028797651617605, + "account_data": -165.98, + "after": 2802.73, + "before": 2968.71, + "card_type_id": 2793249295533893, + "create_time": "2025-12-30 01:12:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028797603284997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2802.73, + "principal_before": 2968.71, + "principal_data": -165.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3028724612745221, + "account_data": -755.75, + "after": 1049.41, + "before": 1805.16, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 23:58:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028724572948421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1049.41, + "principal_before": 1805.16, + "principal_data": -755.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028683361224645, + "account_data": -181.26, + "after": 2968.71, + "before": 3149.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 23:16:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028683288119365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2968.71, + "principal_before": 3149.97, + "principal_data": -181.26 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028672943589189, + "account_data": -74.0, + "after": 4051.8, + "before": 4125.8, + "card_type_id": 2791990152417157, + "create_time": "2025-12-29 23:05:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028672902907909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4051.8, + "principal_before": 4125.8, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028672442124357, + "account_data": -512.16, + "after": 3149.97, + "before": 3662.13, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 23:04:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028672358221893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3149.97, + "principal_before": 3662.13, + "principal_data": -512.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3028660517685061, + "account_data": -20.0, + "after": 1930.51, + "before": 1950.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 22:52:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028660471777349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1930.51, + "principal_before": 1950.51, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3028525944670021, + "account_data": -501.75, + "after": 0.0, + "before": 501.75, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 20:35:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028525554092101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 501.75, + "principal_data": -501.75 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028490147268421, + "account_data": -49.6, + "after": 4125.8, + "before": 4175.4, + "card_type_id": 2791990152417157, + "create_time": "2025-12-29 19:59:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028490103212037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4125.8, + "principal_before": 4175.4, + "principal_data": -49.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3028489345927173, + "account_data": -332.99, + "after": 3662.13, + "before": 3995.12, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 19:58:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028489256912837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3662.13, + "principal_before": 3995.12, + "principal_data": -332.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3028428498634757, + "account_data": -282.0, + "after": 2827.88, + "before": 3109.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 18:56:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028428438931269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2827.88, + "principal_before": 3109.88, + "principal_data": -282.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3028428498487301, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-29 18:56:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028428438931269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3028370235804613, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-29 17:57:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3028367676311365, + "account_data": 3000.0, + "after": 3109.88, + "before": 109.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 17:54:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3028367672969029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3109.88, + "principal_before": 109.88, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027520889308997, + "account_data": -88.0, + "after": 4175.4, + "before": 4263.4, + "card_type_id": 2791990152417157, + "create_time": "2025-12-29 03:33:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027520698255365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4175.4, + "principal_before": 4263.4, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027494652970821, + "account_data": -255.15, + "after": 3995.12, + "before": 4250.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 03:06:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027494606080069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3995.12, + "principal_before": 4250.27, + "principal_data": -255.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027381531412421, + "account_data": -81.0, + "after": 4263.4, + "before": 4344.4, + "card_type_id": 2791990152417157, + "create_time": "2025-12-29 01:11:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027381485275141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4263.4, + "principal_before": 4344.4, + "principal_data": -81.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3027380848871429, + "account_data": -90.54, + "after": 109.88, + "before": 200.42, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 01:11:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027380783384517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 109.88, + "principal_before": 200.42, + "principal_data": -90.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3027380655917061, + "account_data": -147.05, + "after": 501.75, + "before": 648.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 01:10:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027380608747461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 501.75, + "principal_before": 648.8, + "principal_data": -147.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027380221151173, + "account_data": -305.91, + "after": 4250.27, + "before": 4556.18, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 01:10:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027380171835205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4250.27, + "principal_before": 4556.18, + "principal_data": -305.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3027379734497285, + "account_data": -701.99, + "after": 200.42, + "before": 902.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 01:09:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027379614926789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 200.42, + "principal_before": 902.41, + "principal_data": -701.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027356028143685, + "account_data": -195.5, + "after": 4556.18, + "before": 4751.68, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 00:45:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027355975256069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4556.18, + "principal_before": 4751.68, + "principal_data": -195.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3027331065661509, + "account_data": -165.31, + "after": 648.8, + "before": 814.11, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 00:20:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027330991425605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 648.8, + "principal_before": 814.11, + "principal_data": -165.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3027330039875397, + "account_data": -125.73, + "after": 902.41, + "before": 1028.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 00:19:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027329895696453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 902.41, + "principal_before": 1028.14, + "principal_data": -125.73 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3027325311322053, + "account_data": -114.0, + "after": 67.0, + "before": 181.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-29 00:14:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027325261203461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 67.0, + "principal_before": 181.0, + "principal_data": -114.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3027313435953157, + "account_data": -463.18, + "after": 0.0, + "before": 463.18, + "card_type_id": 2793249295533893, + "create_time": "2025-12-29 00:02:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027311839250373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 463.18, + "principal_data": -463.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027283439847365, + "account_data": -146.11, + "after": 4751.68, + "before": 4897.79, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 23:32:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027283392464837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4751.68, + "principal_before": 4897.79, + "principal_data": -146.11 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3027244072486917, + "account_data": -66.0, + "after": 786.0, + "before": 852.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 22:51:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027244031723461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217420912389, + "tenant_member_id": 2799209753708293, + "principal_after": 786.0, + "principal_before": 852.0, + "principal_data": -66.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3027241745925957, + "account_data": -191.43, + "after": 0.0, + "before": 191.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 22:49:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027241461090245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217427498757, + "tenant_member_id": 2799209753708293, + "principal_after": 0.0, + "principal_before": 191.43, + "principal_data": -191.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027240876230725, + "account_data": -443.54, + "after": 4897.79, + "before": 5341.33, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 22:48:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027240824997701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4897.79, + "principal_before": 5341.33, + "principal_data": -443.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3027197171861573, + "account_data": -604.98, + "after": 1337.43, + "before": 1942.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 22:04:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027196966963205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1337.43, + "principal_before": 1942.41, + "principal_data": -604.98 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3027162309969989, + "account_data": -94.0, + "after": 1071.0, + "before": 1165.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 21:28:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027162268780485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 1071.0, + "principal_before": 1165.0, + "principal_data": -94.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3027161508972614, + "account_data": -18.47, + "after": 3662.18, + "before": 3680.65, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 21:27:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027161443846149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3662.18, + "principal_before": 3680.65, + "principal_data": -18.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3027161508759622, + "account_data": -90.2, + "after": 0.0, + "before": 90.2, + "card_type_id": 2793266846533445, + "create_time": "2025-12-28 21:27:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027161443846149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 0.0, + "principal_before": 90.2, + "principal_data": -90.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3027139041822725, + "account_data": -72.0, + "after": 6313.69, + "before": 6385.69, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 21:05:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027138977941573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6313.69, + "principal_before": 6385.69, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027130599671877, + "account_data": -25.6, + "after": 4344.4, + "before": 4370.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 20:56:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027130559121349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4344.4, + "principal_before": 4370.0, + "principal_data": -25.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027129989596997, + "account_data": -168.35, + "after": 5341.33, + "before": 5509.68, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 20:55:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027129944672325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5341.33, + "principal_before": 5509.68, + "principal_data": -168.35 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027086593427525, + "account_data": -25.6, + "after": 4370.0, + "before": 4395.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 20:11:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027086542604293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4370.0, + "principal_before": 4395.6, + "principal_data": -25.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3027083309074374, + "account_data": -176.48, + "after": 5509.68, + "before": 5686.16, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 20:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027083248306181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5509.68, + "principal_before": 5686.16, + "principal_data": -176.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3027068485617606, + "account_data": -570.0, + "after": 814.11, + "before": 1384.11, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 19:53:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3027068430468933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 814.11, + "principal_before": 1384.11, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3026906262898693, + "account_data": -148.2, + "after": 387.34, + "before": 535.54, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 17:08:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026906213713989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 387.34, + "principal_before": 535.54, + "principal_data": -148.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3026902836414405, + "account_data": -120.0, + "after": 6385.69, + "before": 6505.69, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 17:04:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026902796961797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6385.69, + "principal_before": 6505.69, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3026864922216389, + "account_data": -104.89, + "after": 103.45, + "before": 208.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 16:26:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026864704653125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 103.45, + "principal_before": 208.34, + "principal_data": -104.89 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3026163251169285, + "account_data": -96.0, + "after": 4395.6, + "before": 4491.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 04:32:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026163172476869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4395.6, + "principal_before": 4491.6, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3026162279335941, + "account_data": -645.07, + "after": 5686.16, + "before": 6331.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 04:31:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026162198874053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5686.16, + "principal_before": 6331.23, + "principal_data": -645.07 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3026067142903877, + "account_data": -600.0, + "after": 9689.47, + "before": 10289.47, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 02:54:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026067080988485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 9689.47, + "principal_before": 10289.47, + "principal_data": -600.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3026066097358661, + "account_data": -1748.42, + "after": 1384.11, + "before": 3132.53, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 02:53:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026065784014917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1384.11, + "principal_before": 3132.53, + "principal_data": -1748.42 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3026066097211205, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-28 02:53:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026065784014917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3026063950285765, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-28 02:51:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3026062389675845, + "account_data": 3000.0, + "after": 3132.53, + "before": 132.53, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 02:49:53", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026062386677573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3132.53, + "principal_before": 132.53, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 3026026377938885, + "account_data": -28.0, + "after": 908.07, + "before": 936.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 02:13:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026026324789061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 908.07, + "principal_before": 936.07, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3026012982216517, + "account_data": -240.0, + "after": 181.0, + "before": 421.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-28 01:59:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026012941731909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 181.0, + "principal_before": 421.0, + "principal_data": -240.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3026009492522949, + "account_data": -158.79, + "after": 0.0, + "before": 158.79, + "card_type_id": 2793249295533893, + "create_time": "2025-12-28 01:56:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3026008937662533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 0.0, + "principal_before": 158.79, + "principal_data": -158.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 3025864993130501, + "account_data": -422.07, + "after": 1704.07, + "before": 2126.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 23:29:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025864926758725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 1704.07, + "principal_before": 2126.14, + "principal_data": -422.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3025847399679813, + "account_data": -212.85, + "after": 1028.14, + "before": 1240.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 23:11:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025847343368197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1028.14, + "principal_before": 1240.99, + "principal_data": -212.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3025766225905669, + "account_data": -5.0, + "after": 1240.99, + "before": 1245.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 21:48:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025766148081477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1240.99, + "principal_before": 1245.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3025722015696709, + "account_data": -65.45, + "after": 6331.23, + "before": 6396.68, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 21:03:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025721905121093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6331.23, + "principal_before": 6396.68, + "principal_data": -65.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3025720300521541, + "account_data": -760.0, + "after": 6396.68, + "before": 7156.68, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 21:01:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025720254957509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6396.68, + "principal_before": 7156.68, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3025719526049797, + "account_data": -760.0, + "after": 944.82, + "before": 1704.82, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 21:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025719490856965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 944.82, + "principal_before": 1704.82, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 3025717883865093, + "account_data": -19.2, + "after": 497.8, + "before": 517.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-27 20:59:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025717840267205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946072298784837, + "tenant_member_id": 2946070922169029, + "principal_after": 497.8, + "principal_before": 517.0, + "principal_data": -19.2 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 3025717011286021, + "account_data": -39.62, + "after": 1139.93, + "before": 1179.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-27 20:58:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025716953499717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 1139.93, + "principal_before": 1179.55, + "principal_data": -39.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3025693215197189, + "account_data": -133.45, + "after": 6505.69, + "before": 6639.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 20:34:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025693171894341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6505.69, + "principal_before": 6639.14, + "principal_data": -133.45 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3025693215033349, + "account_data": -10.55, + "after": 0.0, + "before": 10.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-27 20:34:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025693171894341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 0.0, + "principal_before": 10.55, + "principal_data": -10.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3025562621937605, + "account_data": -432.58, + "after": 1805.16, + "before": 2237.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 18:21:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025562571982661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1805.16, + "principal_before": 2237.74, + "principal_data": -432.58 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18038230815", + "id": 3025386208036805, + "account_data": -34.39, + "after": 112.61, + "before": 147.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-27 15:22:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025386149988165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212755666693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3025342945970949, + "tenant_member_id": 3025342944414469, + "principal_after": 112.61, + "principal_before": 147.0, + "principal_data": -34.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3025373343336517, + "account_data": -28.0, + "after": 1704.82, + "before": 1732.82, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 15:08:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025373217867717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 1704.82, + "principal_before": 1732.82, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18038230815", + "id": 3025344139840261, + "account_data": 147.0, + "after": 147.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-27 14:39:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799212755666693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3025342945970949, + "tenant_member_id": 3025342944414469, + "principal_after": 147.0, + "principal_before": 0.0, + "principal_data": 147.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3025075834996805, + "account_data": -118.0, + "after": 4491.6, + "before": 4609.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-27 10:06:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025075753289541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4491.6, + "principal_before": 4609.6, + "principal_data": -118.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3025074842060741, + "account_data": -62.0, + "after": 1245.99, + "before": 1307.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 10:05:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3025074764744645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1245.99, + "principal_before": 1307.99, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3024816997386053, + "account_data": -801.54, + "after": 7156.68, + "before": 7958.22, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 05:43:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024816858925125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7156.68, + "principal_before": 7958.22, + "principal_data": -801.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3024815244871749, + "account_data": -276.73, + "after": 1307.99, + "before": 1584.72, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 05:41:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024814874839109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1307.99, + "principal_before": 1584.72, + "principal_data": -276.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3024708084352965, + "account_data": -711.62, + "after": 1584.72, + "before": 2296.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 03:52:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024707814590469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1584.72, + "principal_before": 2296.34, + "principal_data": -711.62 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3024522919299077, + "account_data": -111.0, + "after": 4609.6, + "before": 4720.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-27 00:43:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024522878879813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4609.6, + "principal_before": 4720.6, + "principal_data": -111.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3024521613658053, + "account_data": -556.57, + "after": 7958.22, + "before": 8514.79, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 00:42:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024521474803717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7958.22, + "principal_before": 8514.79, + "principal_data": -556.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3024497213146949, + "account_data": -99.49, + "after": 1950.51, + "before": 2050.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 00:17:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024497116841797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1950.51, + "principal_before": 2050.0, + "principal_data": -99.49 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3024497212983109, + "account_data": -239.94, + "after": 0.0, + "before": 239.94, + "card_type_id": 2793266846533445, + "create_time": "2025-12-27 00:17:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024497116841797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 239.94, + "principal_data": -239.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3024496923477957, + "account_data": -258.06, + "after": 2237.74, + "before": 2495.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 00:17:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024496886745093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2237.74, + "principal_before": 2495.8, + "principal_data": -258.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 3024480221906757, + "account_data": -10.0, + "after": 39.48, + "before": 49.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-27 00:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024480181815365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 39.48, + "principal_before": 49.48, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 3024416792561669, + "account_data": -48.0, + "after": 1403.0, + "before": 1451.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-26 22:55:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024416707266565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1403.0, + "principal_before": 1451.0, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3024383528339461, + "account_data": -283.75, + "after": 2296.34, + "before": 2580.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 22:22:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024383441110853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2296.34, + "principal_before": 2580.09, + "principal_data": -283.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3024234467919685, + "account_data": -10.0, + "after": 125.64, + "before": 135.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 19:50:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024234427926533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 125.64, + "principal_before": 135.64, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3024182545008709, + "account_data": -5.0, + "after": 2580.09, + "before": 2585.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 18:57:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024182476310341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2580.09, + "principal_before": 2585.09, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3024153869682629, + "account_data": -113.92, + "after": 535.54, + "before": 649.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 18:28:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024153815762757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 535.54, + "principal_before": 649.46, + "principal_data": -113.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3024153869502405, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 18:28:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024153815762757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 3024136039335749, + "account_data": -52.67, + "after": 166.46, + "before": 219.13, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 18:10:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3024135978977285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 166.46, + "principal_before": 219.13, + "principal_data": -52.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3023472727934789, + "account_data": -1115.29, + "after": 8514.79, + "before": 9630.08, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 06:55:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023472081094725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8514.79, + "principal_before": 9630.08, + "principal_data": -1115.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3023434640181317, + "account_data": -548.29, + "after": 451.71, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 06:16:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023434524674053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 451.71, + "principal_before": 1000.0, + "principal_data": -548.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3023434640033861, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 06:16:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023434524674053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3023434245344325, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 06:16:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 3023433562802245, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 06:15:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023433559394373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3023408842672197, + "account_data": 96.12, + "after": 223.78, + "before": 127.66, + "card_type_id": 2791990152417157, + "create_time": "2025-12-26 05:50:33", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023379828131909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 223.78, + "principal_before": 127.66, + "principal_data": 96.12 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3023380098729989, + "account_data": -96.12, + "after": 127.66, + "before": 223.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-26 05:21:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023379828131909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 127.66, + "principal_before": 223.78, + "principal_data": -96.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3023245685704773, + "account_data": -414.91, + "after": 2585.09, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 03:04:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023245518473157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2585.09, + "principal_before": 3000.0, + "principal_data": -414.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3023245685540933, + "account_data": -80.0, + "after": 0.0, + "before": 80.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 03:04:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023245518473157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 80.0, + "principal_data": -80.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3023245257639877, + "account_data": -185.78, + "after": 463.18, + "before": 648.96, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 03:04:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023245082839045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 463.18, + "principal_before": 648.96, + "principal_data": -185.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3023189694154565, + "account_data": -129.9, + "after": 2495.8, + "before": 2625.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 02:07:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023189609891653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2495.8, + "principal_before": 2625.7, + "principal_data": -129.9 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3023189693990725, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 02:07:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023189609891653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3023186912888901, + "account_data": -813.35, + "after": 132.53, + "before": 945.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 02:04:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023186800166981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 132.53, + "principal_before": 945.88, + "principal_data": -813.35 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3023159782950853, + "account_data": -20.0, + "after": 648.96, + "before": 668.96, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 01:37:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023159714940933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 648.96, + "principal_before": 668.96, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3023157064452037, + "account_data": -735.52, + "after": 668.96, + "before": 1404.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 01:34:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023156965525573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 668.96, + "principal_before": 1404.48, + "principal_data": -735.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3023157064288197, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 01:34:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023156965525573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3023140587833157, + "account_data": -211.94, + "after": 1732.82, + "before": 1944.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 01:17:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023140508272645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 1732.82, + "principal_before": 1944.76, + "principal_data": -211.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3023140587669317, + "account_data": -472.0, + "after": 0.0, + "before": 472.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-26 01:17:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023140508272645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999126038989317, + "tenant_member_id": 2999125651818885, + "principal_after": 0.0, + "principal_before": 472.0, + "principal_data": -472.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3023114529015813, + "account_data": -166.73, + "after": 9630.08, + "before": 9796.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-26 00:51:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023114445440965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9630.08, + "principal_before": 9796.81, + "principal_data": -166.73 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3023057644832581, + "account_data": -100.0, + "after": 4720.6, + "before": 4820.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-25 23:53:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023057579329349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4720.6, + "principal_before": 4820.6, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3023056769107909, + "account_data": -200.13, + "after": 9796.81, + "before": 9996.94, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 23:52:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3023056707373125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9796.81, + "principal_before": 9996.94, + "principal_data": -200.13 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3023044985506757, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 23:40:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3022987613538245, + "account_data": -361.29, + "after": 9996.94, + "before": 10358.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 22:42:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022987535779845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9996.94, + "principal_before": 10358.23, + "principal_data": -361.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3022926745388997, + "account_data": 1000.0, + "after": 1404.48, + "before": 404.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 21:40:08", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022926742456261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1404.48, + "principal_before": 404.48, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3022926061062149, + "account_data": -3000.0, + "after": 404.48, + "before": 3404.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 21:39:26", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022926054164485, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 404.48, + "principal_before": 3404.48, + "principal_data": -3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3022919502448709, + "account_data": 3000.0, + "after": 3404.48, + "before": 404.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 21:32:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022919499270213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 3404.48, + "principal_before": 404.48, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3022890883008581, + "account_data": -10.0, + "after": 135.64, + "before": 145.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 21:03:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022890793224133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 135.64, + "principal_before": 145.64, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3022836597622853, + "account_data": -154.34, + "after": 90.2, + "before": 244.54, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 20:08:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022836528858949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 90.2, + "principal_before": 244.54, + "principal_data": -154.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3022820210493445, + "account_data": -570.0, + "after": 945.88, + "before": 1515.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 19:51:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022820133734469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 945.88, + "principal_before": 1515.88, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3022640861972293, + "account_data": -10.0, + "after": 80.0, + "before": 90.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 16:49:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022640780003333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 80.0, + "principal_before": 90.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3022591499503621, + "account_data": -8.0, + "after": 90.0, + "before": 98.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 15:59:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022591441995717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 90.0, + "principal_before": 98.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3022588715567045, + "account_data": -190.0, + "after": 98.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 15:56:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022588637923333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 98.0, + "principal_before": 288.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3022577949313989, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 15:45:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3022566425446469, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 15:33:36", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022566422382661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3022366054647813, + "account_data": -191.0, + "after": 4820.6, + "before": 5011.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-25 12:09:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022365997254597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 4820.6, + "principal_before": 5011.6, + "principal_data": -191.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3022365207463877, + "account_data": -692.0, + "after": 10358.23, + "before": 11050.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 12:08:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022365058795333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10358.23, + "principal_before": 11050.23, + "principal_data": -692.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3022365207300037, + "account_data": -593.68, + "after": 0.0, + "before": 593.68, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 12:08:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3022365058795333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 593.68, + "principal_data": -593.68 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3021840133131333, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 03:14:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3021816015718469, + "account_data": -748.49, + "after": 2625.7, + "before": 3374.19, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 02:50:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021815945856965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2625.7, + "principal_before": 3374.19, + "principal_data": -748.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3021815361914885, + "account_data": 3000.0, + "after": 3374.19, + "before": 374.19, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 02:49:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021815358605317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 3374.19, + "principal_before": 374.19, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3021759086446533, + "account_data": -1373.32, + "after": 1515.88, + "before": 2889.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 01:52:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021759021271109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1515.88, + "principal_before": 2889.2, + "principal_data": -1373.32 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3021750754953029, + "account_data": -411.59, + "after": 593.68, + "before": 1005.27, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 01:43:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021750691252293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 593.68, + "principal_before": 1005.27, + "principal_data": -411.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3021749033928517, + "account_data": -763.22, + "after": 404.48, + "before": 1167.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-25 01:42:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021748864550725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 404.48, + "principal_before": 1167.7, + "principal_data": -763.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3021749033781061, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-25 01:42:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021748864550725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3021641819490309, + "account_data": -30.0, + "after": 145.64, + "before": 175.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 23:53:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021641681979333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 145.64, + "principal_before": 175.64, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3021634195130437, + "account_data": -192.0, + "after": 10.55, + "before": 202.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 23:45:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021634113488901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 10.55, + "principal_before": 202.55, + "principal_data": -192.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3021610950199237, + "account_data": -315.29, + "after": 1005.27, + "before": 1320.56, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 23:21:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021610899163205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1005.27, + "principal_before": 1320.56, + "principal_data": -315.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3021524069731397, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 21:53:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3021501949937605, + "account_data": -267.44, + "after": 1320.56, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 21:30:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021501876815685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1320.56, + "principal_before": 1588.0, + "principal_data": -267.44 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3021499007649605, + "account_data": 1000.0, + "after": 1167.7, + "before": 167.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 21:27:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021499004766021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1167.7, + "principal_before": 167.7, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3021491148687173, + "account_data": -183.1, + "after": 167.7, + "before": 350.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 21:19:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021491093620549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 167.7, + "principal_before": 350.8, + "principal_data": -183.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3021484651562821, + "account_data": -457.99, + "after": 2507.58, + "before": 2965.57, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 21:13:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021484524226629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2507.58, + "principal_before": 2965.57, + "principal_data": -457.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3021484605246405, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 21:13:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18302299763", + "id": 3021479542179781, + "account_data": -74.0, + "after": 0.0, + "before": 74.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-24 21:07:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021479503136773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973199974385541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973199976089477, + "tenant_member_id": 2973199975761797, + "principal_after": 0.0, + "principal_before": 74.0, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 3021474543831045, + "account_data": -28.0, + "after": 472.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 21:02:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021474490795973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999126038989317, + "tenant_member_id": 2999125651818885, + "principal_after": 472.0, + "principal_before": 500.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3021443554658245, + "account_data": -158.63, + "after": 16529.44, + "before": 16688.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 20:31:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021443501672453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16529.44, + "principal_before": 16688.07, + "principal_data": -158.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3021414696830981, + "account_data": -570.0, + "after": 2889.2, + "before": 3459.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 20:02:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021414640404421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2889.2, + "principal_before": 3459.2, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3021371548862533, + "account_data": -380.79, + "after": 649.46, + "before": 1030.25, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 19:18:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021371497908293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 649.46, + "principal_before": 1030.25, + "principal_data": -380.79 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3021371391101893, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 19:17:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3021371354662981, + "account_data": 1000.0, + "after": 1030.25, + "before": 30.25, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 19:17:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021371351320645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1030.25, + "principal_before": 30.25, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3021353088960581, + "account_data": 10000.0, + "after": 11050.23, + "before": 1050.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 18:59:20", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021353085454405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 11050.23, + "principal_before": 1050.23, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3021314028391493, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 18:19:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3021276873213957, + "account_data": -7058.36, + "after": 4235.87, + "before": 11294.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 17:41:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021276797044805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 4235.87, + "principal_before": 11294.23, + "principal_data": -7058.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3021269620869189, + "account_data": 10000.0, + "after": 11294.23, + "before": 1294.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 17:34:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021269617313861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 11294.23, + "principal_before": 1294.23, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3021074876483141, + "account_data": -94.85, + "after": 208.34, + "before": 303.19, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 14:16:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3021074833573509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 208.34, + "principal_before": 303.19, + "principal_data": -94.85 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3020694876915205, + "account_data": -240.0, + "after": 5011.6, + "before": 5251.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-24 07:49:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020694831941189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5011.6, + "principal_before": 5251.6, + "principal_data": -240.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3020693907752581, + "account_data": -1625.24, + "after": 1050.23, + "before": 2675.47, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 07:48:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020693863400901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1050.23, + "principal_before": 2675.47, + "principal_data": -1625.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3020375728408197, + "account_data": -1118.42, + "after": 3459.2, + "before": 4577.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 02:25:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020375675880901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3459.2, + "principal_before": 4577.62, + "principal_data": -1118.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3020365827327429, + "account_data": -1080.24, + "after": 0.0, + "before": 1080.24, + "card_type_id": 2793249295533893, + "create_time": "2025-12-24 02:15:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020365385926149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 1080.24, + "principal_data": -1080.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 3020268432148101, + "account_data": -11.8, + "after": 1179.55, + "before": 1191.35, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 00:35:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020268383028677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 1179.55, + "principal_before": 1191.35, + "principal_data": -11.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 3020267620566661, + "account_data": -4.8, + "after": 1191.35, + "before": 1196.15, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 00:35:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020267553260997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 1191.35, + "principal_before": 1196.15, + "principal_data": -4.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 3020260501374533, + "account_data": -741.95, + "after": 1196.15, + "before": 1938.1, + "card_type_id": 2793266846533445, + "create_time": "2025-12-24 00:27:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020259768403397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 1196.15, + "principal_before": 1938.1, + "principal_data": -741.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 3020217598412229, + "account_data": -28.0, + "after": 2172.38, + "before": 2200.38, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 23:44:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020217558369861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2172.38, + "principal_before": 2200.38, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3020124399633925, + "account_data": -124.29, + "after": 350.8, + "before": 475.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 22:09:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020124317599237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 350.8, + "principal_before": 475.09, + "principal_data": -124.29 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 3020037006706181, + "account_data": -12.0, + "after": 373.0, + "before": 385.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-23 20:40:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020036942022213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 373.0, + "principal_before": 385.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 3020013447677381, + "account_data": -76.0, + "after": 2430.0, + "before": 2506.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-23 20:16:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3020013396985349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218217944837, + "tenant_member_id": 2799207192626949, + "principal_after": 2430.0, + "principal_before": 2506.0, + "principal_data": -76.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3019939255600773, + "account_data": -380.0, + "after": 4.01, + "before": 384.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 19:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019939199665797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 4.01, + "principal_before": 384.01, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3019790099383941, + "account_data": -14.0, + "after": 175.64, + "before": 189.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 16:29:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019790068991557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 175.64, + "principal_before": 189.64, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3019759368619589, + "account_data": -190.0, + "after": 189.64, + "before": 379.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 15:58:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019759314847237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 189.64, + "principal_before": 379.64, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3019263967987205, + "account_data": -75.0, + "after": 5251.6, + "before": 5326.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-23 07:34:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019263790138949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5251.6, + "principal_before": 5326.6, + "principal_data": -75.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3019262192535173, + "account_data": -505.65, + "after": 2675.47, + "before": 3181.12, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 07:32:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019262097475013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2675.47, + "principal_before": 3181.12, + "principal_data": -505.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3019260622931461, + "account_data": -7791.35, + "after": 1294.23, + "before": 9085.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 07:30:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019260501575237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1294.23, + "principal_before": 9085.58, + "principal_data": -7791.35 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3019077368169989, + "account_data": -136.0, + "after": 5326.6, + "before": 5462.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-23 04:24:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019077321475653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5326.6, + "principal_before": 5462.6, + "principal_data": -136.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3019076642211461, + "account_data": -731.85, + "after": 3181.12, + "before": 3912.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 04:23:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3019076540483141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3181.12, + "principal_before": 3912.97, + "principal_data": -731.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3018994800084485, + "account_data": -20.0, + "after": 384.01, + "before": 404.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 03:00:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018994757273029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 384.01, + "principal_before": 404.01, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3018975930402373, + "account_data": -1171.9, + "after": 0.0, + "before": 1171.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 02:41:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018975545574981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 1171.9, + "principal_data": -1171.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3018903127295557, + "account_data": -10.0, + "after": 1080.24, + "before": 1090.24, + "card_type_id": 2793249295533893, + "create_time": "2025-12-23 01:27:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018903084189317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1080.24, + "principal_before": 1090.24, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018817075267205, + "account_data": -39.0, + "after": 5462.6, + "before": 5501.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 23:59:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018817023034821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5462.6, + "principal_before": 5501.6, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018816263636421, + "account_data": -196.23, + "after": 3912.97, + "before": 4109.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 23:58:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018816189826629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3912.97, + "principal_before": 4109.2, + "principal_data": -196.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3018802135631301, + "account_data": -1028.26, + "after": 374.19, + "before": 1402.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 23:44:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018802059953733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 374.19, + "principal_before": 1402.45, + "principal_data": -1028.26 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018767219967493, + "account_data": -25.0, + "after": 5501.6, + "before": 5526.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 23:08:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018767174207109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5501.6, + "principal_before": 5526.6, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018752970393029, + "account_data": -124.46, + "after": 4109.2, + "before": 4233.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 22:54:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018752926910085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4109.2, + "principal_before": 4233.66, + "principal_data": -124.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3018748795520581, + "account_data": -101.2, + "after": 1171.9, + "before": 1273.1, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 22:50:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018748753184197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1171.9, + "principal_before": 1273.1, + "principal_data": -101.2 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018710486435333, + "account_data": -39.0, + "after": 5526.6, + "before": 5565.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 22:11:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018710446212741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5526.6, + "principal_before": 5565.6, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018709907555845, + "account_data": -207.65, + "after": 4233.66, + "before": 4441.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 22:10:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018709866022341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4233.66, + "principal_before": 4441.31, + "principal_data": -207.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3018678059615877, + "account_data": -42.18, + "after": 1273.1, + "before": 1315.28, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 21:38:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018678006924805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1273.1, + "principal_before": 1315.28, + "principal_data": -42.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3018660953392581, + "account_data": -421.37, + "after": 4578.63, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 21:20:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018660900111941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003185854517765, + "tenant_member_id": 3003185854190085, + "principal_after": 4578.63, + "principal_before": 5000.0, + "principal_data": -421.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3018660953228741, + "account_data": -70.01, + "after": 0.0, + "before": 70.01, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 21:20:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018660900111941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003186241311685, + "tenant_member_id": 3003185854190085, + "principal_after": 0.0, + "principal_before": 70.01, + "principal_data": -70.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3018651715389061, + "account_data": -495.76, + "after": 2965.57, + "before": 3461.33, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 21:11:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018651659339205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2965.57, + "principal_before": 3461.33, + "principal_data": -495.76 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3018644636239365, + "account_data": -29.0, + "after": 5565.6, + "before": 5594.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 21:04:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018644589954629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5565.6, + "principal_before": 5594.6, + "principal_data": -29.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3018642595284549, + "account_data": -166.09, + "after": 46.67, + "before": 212.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 21:02:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018642538055109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 46.67, + "principal_before": 212.76, + "principal_data": -166.09 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3018617856165317, + "account_data": -95.0, + "after": 1165.0, + "before": 1260.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 20:36:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018617798395525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 1165.0, + "principal_before": 1260.0, + "principal_data": -95.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3018617332712901, + "account_data": -99.28, + "after": 244.54, + "before": 343.82, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 20:36:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018617234441733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 244.54, + "principal_before": 343.82, + "principal_data": -99.28 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 3018602754409989, + "account_data": -21.6, + "after": 3090.4, + "before": 3112.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 20:21:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018602701375045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3090.4, + "principal_before": 3112.0, + "principal_data": -21.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3018541956629957, + "account_data": -570.0, + "after": 379.64, + "before": 949.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 19:19:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018541899597381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 379.64, + "principal_before": 949.64, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3018407421756933, + "account_data": -570.0, + "after": 30.25, + "before": 600.25, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 17:02:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3018407367919045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 30.25, + "principal_before": 600.25, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017822851679813, + "account_data": -619.21, + "after": 4441.31, + "before": 5060.52, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 07:08:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017822767809989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4441.31, + "principal_before": 5060.52, + "principal_data": -619.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3017699206465029, + "account_data": -5417.69, + "after": 9085.58, + "before": 14503.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 05:02:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017699023062533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 9085.58, + "principal_before": 14503.27, + "principal_data": -5417.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 3017695345395205, + "account_data": -559.11, + "after": 0.0, + "before": 559.11, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 04:58:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017695195186821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 559.11, + "principal_data": -559.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 3017695345247749, + "account_data": -198.0, + "after": 0.0, + "before": 198.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 04:58:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017695195186821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 198.0, + "principal_data": -198.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3017687313712773, + "account_data": -1909.76, + "after": 1090.24, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 04:50:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017687080093253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1090.24, + "principal_before": 3000.0, + "principal_data": -1909.76 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3017687313565317, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 04:50:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017687080093253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3017680322497605, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-22 04:43:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3017679643870725, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 04:42:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017679641134597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3017676712052357, + "account_data": -877.32, + "after": 1315.28, + "before": 2192.6, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 04:39:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017676601476741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1315.28, + "principal_before": 2192.6, + "principal_data": -877.32 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017594227443333, + "account_data": -87.0, + "after": 5594.6, + "before": 5681.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-22 03:15:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017594184746437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5594.6, + "principal_before": 5681.6, + "principal_data": -87.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017593899894405, + "account_data": -295.12, + "after": 5060.52, + "before": 5355.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 03:15:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017593821955717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5060.52, + "principal_before": 5355.64, + "principal_data": -295.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3017592970642885, + "account_data": -226.38, + "after": 4577.62, + "before": 4804.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 03:14:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017592774968837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4577.62, + "principal_before": 4804.0, + "principal_data": -226.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3017486042711493, + "account_data": -500.74, + "after": 2192.6, + "before": 2693.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 01:25:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017485993444933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2192.6, + "principal_before": 2693.34, + "principal_data": -500.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 3017481239266821, + "account_data": 539.0, + "after": 559.11, + "before": 20.11, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 01:20:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017481236006405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 559.11, + "principal_before": 20.11, + "principal_data": 539.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3017424109372869, + "account_data": -248.21, + "after": 212.76, + "before": 460.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-22 00:22:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017424069330501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 212.76, + "principal_before": 460.97, + "principal_data": -248.21 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017388608865733, + "account_data": -96.0, + "after": 5681.6, + "before": 5777.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 23:46:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017388556748357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5681.6, + "principal_before": 5777.6, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017387801232901, + "account_data": -185.38, + "after": 5355.64, + "before": 5541.02, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 23:45:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017387693671941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5355.64, + "principal_before": 5541.02, + "principal_data": -185.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3017366452340357, + "account_data": -158.81, + "after": 460.97, + "before": 619.78, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 23:23:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017366416426629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 460.97, + "principal_before": 619.78, + "principal_data": -158.81 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15820216447", + "id": 3017361960043973, + "account_data": -48.0, + "after": 4.0, + "before": 52.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 23:19:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017361913497093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974785492141957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974785493747589, + "tenant_member_id": 2974785493485445, + "principal_after": 4.0, + "principal_before": 52.0, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3017314017363525, + "account_data": -203.86, + "after": 619.78, + "before": 823.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 22:30:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017313953154693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 619.78, + "principal_before": 823.64, + "principal_data": -203.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017313708492229, + "account_data": -66.28, + "after": 5541.02, + "before": 5607.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 22:30:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017313636550213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5541.02, + "principal_before": 5607.3, + "principal_data": -66.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3017276584822341, + "account_data": -643.8, + "after": 475.09, + "before": 1118.89, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 21:52:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017276469626373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 475.09, + "principal_before": 1118.89, + "principal_data": -643.8 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3017260211947013, + "account_data": -45.0, + "after": 411.93, + "before": 456.93, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 21:35:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017260171789893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 411.93, + "principal_before": 456.93, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3017259833656837, + "account_data": -249.49, + "after": 600.25, + "before": 849.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 21:35:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017259751867845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 600.25, + "principal_before": 849.74, + "principal_data": -249.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3017228605474373, + "account_data": -24.0, + "after": 5607.3, + "before": 5631.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 21:03:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017228575098309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5607.3, + "principal_before": 5631.3, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3017180112668101, + "account_data": -760.0, + "after": 4804.0, + "before": 5564.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 20:14:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017180064548293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4804.0, + "principal_before": 5564.0, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 3017160703411781, + "account_data": -82.0, + "after": 2506.0, + "before": 2588.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 19:54:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017160686634501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218217944837, + "tenant_member_id": 2799207192626949, + "principal_after": 2506.0, + "principal_before": 2588.0, + "principal_data": -82.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3017029063837189, + "account_data": -299.46, + "after": 1118.89, + "before": 1418.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 17:40:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3017029012227653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1118.89, + "principal_before": 1418.35, + "principal_data": -299.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3016990054286853, + "account_data": -324.01, + "after": 2693.34, + "before": 3017.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 17:01:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016989989242309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2693.34, + "principal_before": 3017.35, + "principal_data": -324.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3016990054123013, + "account_data": -55.99, + "after": 0.0, + "before": 55.99, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 17:01:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016989989242309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 55.99, + "principal_data": -55.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3016871247152773, + "account_data": -5.0, + "after": 949.64, + "before": 954.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 15:00:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016871196247493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 949.64, + "principal_before": 954.64, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3016768548816325, + "account_data": -62.47, + "after": 1418.35, + "before": 1480.82, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 13:15:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016768500811397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1418.35, + "principal_before": 1480.82, + "principal_data": -62.47 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3016653503809029, + "account_data": -185.0, + "after": 5777.6, + "before": 5962.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 11:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016653456672325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5777.6, + "principal_before": 5962.6, + "principal_data": -185.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3016356836459973, + "account_data": -162.44, + "after": 5631.3, + "before": 5793.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 06:16:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016356761257605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5631.3, + "principal_before": 5793.74, + "principal_data": -162.44 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3016263729923525, + "account_data": -1030.56, + "after": 1402.45, + "before": 2433.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 04:42:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016263628506757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1402.45, + "principal_before": 2433.01, + "principal_data": -1030.56 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3016263729759685, + "account_data": -90.78, + "after": 0.0, + "before": 90.78, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 04:42:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016263628506757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 90.78, + "principal_data": -90.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3016239516550789, + "account_data": -786.42, + "after": 5793.74, + "before": 6580.16, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 04:17:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016239385249285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5793.74, + "principal_before": 6580.16, + "principal_data": -786.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3016053260944966, + "account_data": -486.8, + "after": 5564.0, + "before": 6050.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 01:08:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016053217330821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5564.0, + "principal_before": 6050.8, + "principal_data": -486.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3016053260797509, + "account_data": -83.2, + "after": 0.0, + "before": 83.2, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 01:08:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016053217330821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 83.2, + "principal_data": -83.2 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3016002739078597, + "account_data": -197.0, + "after": 852.0, + "before": 1049.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-21 00:16:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016002682832453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217420912389, + "tenant_member_id": 2799209753708293, + "principal_after": 852.0, + "principal_before": 1049.0, + "principal_data": -197.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3016000169363077, + "account_data": -809.55, + "after": 191.43, + "before": 1000.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 00:14:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016000112330181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217427498757, + "tenant_member_id": 2799209753708293, + "principal_after": 191.43, + "principal_before": 1000.98, + "principal_data": -809.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3016000169215621, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 00:14:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3016000112330181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3015999424284165, + "tenant_member_id": 2799209753708293, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3015999925111749, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 00:13:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3015999424284165, + "tenant_member_id": 2799209753708293, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3015999359714757, + "account_data": 1000.0, + "after": 1000.98, + "before": 0.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-21 00:13:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015999356667333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217427498757, + "tenant_member_id": 2799209753708293, + "principal_after": 1000.98, + "principal_before": 0.98, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015987081659909, + "account_data": -101.81, + "after": 55.99, + "before": 157.8, + "card_type_id": 2793266846533445, + "create_time": "2025-12-21 00:00:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015987036489157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 55.99, + "principal_before": 157.8, + "principal_data": -101.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3015983039514245, + "account_data": -6.0, + "after": 404.01, + "before": 410.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 23:56:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015983001454085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 404.01, + "principal_before": 410.01, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3015974770067077, + "account_data": -258.0, + "after": 5962.6, + "before": 6220.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 23:48:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015974718391749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 5962.6, + "principal_before": 6220.6, + "principal_data": -258.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3015972667065989, + "account_data": -123.06, + "after": 823.64, + "before": 946.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 23:46:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015972592649797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 823.64, + "principal_before": 946.7, + "principal_data": -123.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3015972030219781, + "account_data": -233.75, + "after": 946.7, + "before": 1180.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 23:45:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015971991455301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 946.7, + "principal_before": 1180.45, + "principal_data": -233.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3015964533376453, + "account_data": -203.46, + "after": 849.74, + "before": 1053.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 23:37:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015964416312965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 849.74, + "principal_before": 1053.2, + "principal_data": -203.46 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015939409233541, + "account_data": -81.0, + "after": 92.0, + "before": 173.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 23:12:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015939351905925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 92.0, + "principal_before": 173.0, + "principal_data": -81.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015938070562309, + "account_data": -353.67, + "after": 157.8, + "before": 511.47, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 23:10:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015937996998213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 157.8, + "principal_before": 511.47, + "principal_data": -353.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3015933679797893, + "account_data": -120.0, + "after": 202.55, + "before": 322.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 23:06:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015933626238597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 202.55, + "principal_before": 322.55, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015932383839685, + "account_data": -38.0, + "after": 511.47, + "before": 549.47, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 23:05:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015932362884677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 511.47, + "principal_before": 549.47, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3015929151997445, + "account_data": -224.64, + "after": 6580.16, + "before": 6804.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 23:01:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015928933189253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6580.16, + "principal_before": 6804.8, + "principal_data": -224.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3015906165884549, + "account_data": -134.59, + "after": 6804.8, + "before": 6939.39, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 22:38:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015906008565189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6804.8, + "principal_before": 6939.39, + "principal_data": -134.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3015857502946757, + "account_data": -385.68, + "after": 1180.45, + "before": 1566.13, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 21:48:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015857458628101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1180.45, + "principal_before": 1566.13, + "principal_data": -385.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3015852597822917, + "account_data": -371.51, + "after": 0.0, + "before": 371.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 21:43:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015852022138309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 0.0, + "principal_before": 371.51, + "principal_data": -371.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3015849998632389, + "account_data": -236.51, + "after": 1566.13, + "before": 1802.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 21:41:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015849938159045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1566.13, + "principal_before": 1802.64, + "principal_data": -236.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈小姐", + "memberMobile": "13802740778", + "id": 3015841731069573, + "account_data": -59.84, + "after": 452.13, + "before": 511.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 21:32:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015841657390597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212878235397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220043892485, + "tenant_member_id": 2799212879873797, + "principal_after": 452.13, + "principal_before": 511.97, + "principal_data": -59.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015838417552901, + "account_data": -47.06, + "after": 549.47, + "before": 596.53, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 21:29:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015838289856005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 549.47, + "principal_before": 596.53, + "principal_data": -47.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3015821544048261, + "account_data": -562.55, + "after": 3461.33, + "before": 4023.88, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 21:12:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015821495600645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3461.33, + "principal_before": 4023.88, + "principal_data": -562.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3015659859461573, + "account_data": -91.47, + "after": 596.53, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 18:27:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015659816601029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 596.53, + "principal_before": 688.0, + "principal_data": -91.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3015575292478917, + "account_data": -120.0, + "after": 322.55, + "before": 442.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 17:01:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015575251338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 322.55, + "principal_before": 442.55, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3015229725476357, + "account_data": -1011.0, + "after": 2579.0, + "before": 3590.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 11:10:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015229658023365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219200280325, + "tenant_member_id": 2799212491392773, + "principal_after": 2579.0, + "principal_before": 3590.0, + "principal_data": -1011.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3015228930278853, + "account_data": -4880.04, + "after": 14503.27, + "before": 19383.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 11:09:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015228840134277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 14503.27, + "principal_before": 19383.31, + "principal_data": -4880.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3015228930131397, + "account_data": -3464.0, + "after": 0.0, + "before": 3464.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 11:09:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015228840134277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 3464.0, + "principal_data": -3464.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3015227384482757, + "account_data": 1876.0, + "after": 3464.0, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 11:07:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 3464.0, + "principal_before": 1588.0, + "principal_data": 1876.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3015209558967813, + "account_data": -574.73, + "after": 0.0, + "before": 574.73, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 10:49:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015209496839749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 0.0, + "principal_before": 574.73, + "principal_data": -574.73 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3015171995141637, + "account_data": -290.0, + "after": 6220.6, + "before": 6510.6, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 10:11:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015171946628677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6220.6, + "principal_before": 6510.6, + "principal_data": -290.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3015147657662277, + "account_data": 13000.0, + "after": 19383.31, + "before": 6383.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 09:46:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3015147654729541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 19383.31, + "principal_before": 6383.31, + "principal_data": 13000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3014982672944965, + "account_data": -2071.8, + "after": 6939.39, + "before": 9011.19, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 06:59:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014982552587909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6939.39, + "principal_before": 9011.19, + "principal_data": -2071.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3014982672797509, + "account_data": -1491.01, + "after": 0.0, + "before": 1491.01, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 06:59:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014982552587909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 1491.01, + "principal_data": -1491.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3014760403881605, + "account_data": -197.22, + "after": 90.78, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 03:12:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014760325074821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 90.78, + "principal_before": 288.0, + "principal_data": -197.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3014724435299269, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-20 02:36:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3014723881275013, + "account_data": -1897.66, + "after": 3017.35, + "before": 4915.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 02:35:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014723794849669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3017.35, + "principal_before": 4915.01, + "principal_data": -1897.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3014723495939845, + "account_data": -665.34, + "after": 4915.01, + "before": 5580.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 02:35:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014723426242437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 4915.01, + "principal_before": 5580.35, + "principal_data": -665.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3014723182562949, + "account_data": 5000.0, + "after": 5580.35, + "before": 580.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 02:35:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014723179712133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 5580.35, + "principal_before": 580.35, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15975407202", + "id": 3014660253781893, + "account_data": -58.0, + "after": 10.0, + "before": 68.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 01:31:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014660213329669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207506773765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217028728581, + "tenant_member_id": 2799207508018949, + "principal_after": 10.0, + "principal_before": 68.0, + "principal_data": -58.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 3014635432415045, + "account_data": -112.0, + "after": 254.61, + "before": 366.61, + "card_type_id": 2791990152417157, + "create_time": "2025-12-20 01:05:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014635384835717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 254.61, + "principal_before": 366.61, + "principal_data": -112.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3014584968105605, + "account_data": -438.72, + "after": 1053.2, + "before": 1491.92, + "card_type_id": 2793249295533893, + "create_time": "2025-12-20 00:14:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014584915283717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1053.2, + "principal_before": 1491.92, + "principal_data": -438.72 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3014493680209733, + "account_data": -336.01, + "after": 1480.82, + "before": 1816.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 22:41:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014493544468101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1480.82, + "principal_before": 1816.83, + "principal_data": -336.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3014451518214021, + "account_data": -10.0, + "after": 410.01, + "before": 420.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 21:58:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014451471404869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 410.01, + "principal_before": 420.01, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3014410275016453, + "account_data": -469.47, + "after": 70.01, + "before": 539.48, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 21:16:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014410118598533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003186241311685, + "tenant_member_id": 3003185854190085, + "principal_after": 70.01, + "principal_before": 539.48, + "principal_data": -469.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3014371452669573, + "account_data": -275.18, + "after": 1816.83, + "before": 2092.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 20:37:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014371334688389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1816.83, + "principal_before": 2092.01, + "principal_data": -275.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3014354724605701, + "account_data": -172.62, + "after": 4023.88, + "before": 4196.5, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 20:20:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014354684546885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4023.88, + "principal_before": 4196.5, + "principal_data": -172.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3014339398995845, + "account_data": -5.0, + "after": 580.35, + "before": 585.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 20:04:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014339350236933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 580.35, + "principal_before": 585.35, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3014246608260741, + "account_data": -16.0, + "after": 1491.01, + "before": 1507.01, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 18:30:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014246547967749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1491.01, + "principal_before": 1507.01, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3014234015927941, + "account_data": -274.95, + "after": 574.73, + "before": 849.68, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 18:17:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014233997381381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 574.73, + "principal_before": 849.68, + "principal_data": -274.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3014231337193221, + "account_data": -147.51, + "after": 1491.92, + "before": 1639.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 18:14:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014231271788293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1491.92, + "principal_before": 1639.43, + "principal_data": -147.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 3014113038814981, + "account_data": -190.0, + "after": 198.0, + "before": 388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 16:14:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014112992677765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 198.0, + "principal_before": 388.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3014010919767685, + "account_data": -41.0, + "after": 1599.4, + "before": 1640.4, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 14:30:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014010875907845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1599.4, + "principal_before": 1640.4, + "principal_data": -41.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 3014010361614085, + "account_data": -41.14, + "after": 16688.07, + "before": 16729.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 14:29:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3014010280857221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16688.07, + "principal_before": 16729.21, + "principal_data": -41.14 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3013786065456901, + "account_data": -196.0, + "after": 173.0, + "before": 369.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 10:41:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013786000134021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 173.0, + "principal_before": 369.0, + "principal_data": -196.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3013609002437701, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 07:41:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3013581232574085, + "account_data": -5632.87, + "after": 6383.31, + "before": 12016.18, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 07:13:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013580894801733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6383.31, + "principal_before": 12016.18, + "principal_data": -5632.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3013581232426629, + "account_data": -688.0, + "after": 0.0, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 07:13:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013580894801733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 688.0, + "principal_data": -688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3013579612065413, + "account_data": 10000.0, + "after": 12016.18, + "before": 2016.18, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 07:11:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013579609099909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 12016.18, + "principal_before": 2016.18, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3013367051702149, + "account_data": -2196.5, + "after": 585.35, + "before": 2781.85, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 03:35:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013366910455621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 585.35, + "principal_before": 2781.85, + "principal_data": -2196.5 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3013367051554693, + "account_data": -118.66, + "after": 0.0, + "before": 118.66, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 03:35:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013366910455621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 118.66, + "principal_data": -118.66 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013332299370373, + "account_data": -80.99, + "after": 1507.01, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 03:00:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013332248448837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1507.01, + "principal_before": 1588.0, + "principal_data": -80.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013331836227397, + "account_data": -14.4, + "after": 6510.6, + "before": 6525.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 02:59:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013331783208837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6510.6, + "principal_before": 6525.0, + "principal_data": -14.4 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013294478986309, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 02:21:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3013284852764485, + "account_data": -48.06, + "after": 239.94, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 02:11:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013284752707461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 239.94, + "principal_before": 288.0, + "principal_data": -48.06 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013267175067397, + "account_data": -192.0, + "after": 6525.0, + "before": 6717.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 01:53:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013267133124357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6525.0, + "principal_before": 6717.0, + "principal_data": -192.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013266532339525, + "account_data": -1020.84, + "after": 9011.19, + "before": 10032.03, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 01:53:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013266397515653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9011.19, + "principal_before": 10032.03, + "principal_data": -1020.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3013266137730821, + "account_data": 10000.0, + "after": 10032.03, + "before": 32.03, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 01:52:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013266134732549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10032.03, + "principal_before": 32.03, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3013208842751749, + "account_data": -720.2, + "after": 1802.64, + "before": 2522.84, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 00:54:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013208610868869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1802.64, + "principal_before": 2522.84, + "principal_data": -720.2 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3013208842604293, + "account_data": -86.72, + "after": 0.0, + "before": 86.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 00:54:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013208610868869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 86.72, + "principal_data": -86.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3013208842456837, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 00:54:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013208610868869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3013165712657477, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-19 00:10:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 3013158826839429, + "account_data": -226.0, + "after": 4322.0, + "before": 4548.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-19 00:03:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013158780243333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 4322.0, + "principal_before": 4548.0, + "principal_data": -226.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3013155430845957, + "account_data": -703.83, + "after": 2433.01, + "before": 3136.84, + "card_type_id": 2793249295533893, + "create_time": "2025-12-19 00:00:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013155391065477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 2433.01, + "principal_before": 3136.84, + "principal_data": -703.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3013155054063045, + "account_data": 3000.0, + "after": 3136.84, + "before": 136.84, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 23:59:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013155050950085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 3136.84, + "principal_before": 136.84, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3013141911702981, + "account_data": -12.0, + "after": 371.51, + "before": 383.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 23:46:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013141864959429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 371.51, + "principal_before": 383.51, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15820216447", + "id": 3013141400194437, + "account_data": -48.0, + "after": 52.0, + "before": 100.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-18 23:45:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013141356875141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974785492141957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974785493747589, + "tenant_member_id": 2974785493485445, + "principal_after": 52.0, + "principal_before": 100.0, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3013089446481349, + "account_data": -24.0, + "after": 102.0, + "before": 126.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-18 22:53:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013089377144261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 102.0, + "principal_before": 126.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3013025519979909, + "account_data": -950.0, + "after": 83.2, + "before": 1033.2, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 21:48:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013025434979781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 83.2, + "principal_before": 1033.2, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3013007058767301, + "account_data": -338.89, + "after": 4196.5, + "before": 4535.39, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 21:29:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3013006977142341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4196.5, + "principal_before": 4535.39, + "principal_data": -338.89 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18302299763", + "id": 3012974092521029, + "account_data": -64.0, + "after": 74.0, + "before": 138.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-18 20:55:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3012974048218629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973199974385541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973199976089477, + "tenant_member_id": 2973199975761797, + "principal_after": 74.0, + "principal_before": 138.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3012930046135365, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 20:10:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3012868263693829, + "account_data": -169.34, + "after": 118.66, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 19:08:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3012868178415173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 118.66, + "principal_before": 288.0, + "principal_data": -169.34 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3012858889997701, + "account_data": -97.0, + "after": 86.72, + "before": 183.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-18 18:58:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3012858839928389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 86.72, + "principal_before": 183.72, + "principal_data": -97.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3012858205687237, + "account_data": -692.5, + "after": 2522.84, + "before": 3215.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 18:57:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3012858145017221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2522.84, + "principal_before": 3215.34, + "principal_data": -692.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3012857872780741, + "account_data": 3000.0, + "after": 3215.34, + "before": 215.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 18:57:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3012857868848581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3215.34, + "principal_before": 215.34, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3011940568729733, + "account_data": -157.78, + "after": 1033.2, + "before": 1190.98, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 03:24:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011940200990277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1033.2, + "principal_before": 1190.98, + "principal_data": -157.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3011890528290693, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 02:33:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3011875448538821, + "account_data": -1712.77, + "after": 2781.85, + "before": 4494.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 02:18:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011875314747525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2781.85, + "principal_before": 4494.62, + "principal_data": -1712.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3011875073017797, + "account_data": 3000.0, + "after": 4494.62, + "before": 1494.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 02:17:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011875070085061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 4494.62, + "principal_before": 1494.62, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3011872089360069, + "account_data": -353.95, + "after": 0.0, + "before": 353.95, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 02:14:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011870862051461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 0.0, + "principal_before": 353.95, + "principal_data": -353.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3011856659760709, + "account_data": -397.02, + "after": 1190.98, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 01:59:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011856595929029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1190.98, + "principal_before": 1588.0, + "principal_data": -397.02 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3011856659613253, + "account_data": -88.26, + "after": 10289.47, + "before": 10377.73, + "card_type_id": 2791990152417157, + "create_time": "2025-12-18 01:59:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011856595929029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 10289.47, + "principal_before": 10377.73, + "principal_data": -88.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3011816981464645, + "account_data": -935.21, + "after": 0.0, + "before": 935.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 01:18:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011816373192261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 935.21, + "principal_data": -935.21 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3011816979236421, + "account_data": -111.47, + "after": 0.0, + "before": 111.47, + "card_type_id": 2793266846533445, + "create_time": "2025-12-18 01:18:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011816373192261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 111.47, + "principal_data": -111.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3011810883733445, + "account_data": -494.82, + "after": 32.03, + "before": 526.85, + "card_type_id": 2793249295533893, + "create_time": "2025-12-18 01:12:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011810814216325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 32.03, + "principal_before": 526.85, + "principal_data": -494.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3011670748202949, + "account_data": -357.57, + "after": 849.68, + "before": 1207.25, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 22:49:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011670666757701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 849.68, + "principal_before": 1207.25, + "principal_data": -357.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3011668563838853, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-17 22:47:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3011666438145989, + "account_data": -773.51, + "after": 353.95, + "before": 1127.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 22:45:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011666400757893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 353.95, + "principal_before": 1127.46, + "principal_data": -773.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3011659893950405, + "account_data": -950.0, + "after": 2050.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 22:38:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011659838326341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 2050.0, + "principal_before": 3000.0, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 3011659325491333, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 22:38:20", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011659321821317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13682854528", + "id": 3011635305809477, + "account_data": -82.0, + "after": 0.0, + "before": 82.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-17 22:13:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011635084380101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2963357030157765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963357031960005, + "tenant_member_id": 2963357031615941, + "principal_after": 0.0, + "principal_before": 82.0, + "principal_data": -82.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3011625728525893, + "account_data": -463.05, + "after": 526.85, + "before": 989.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 22:04:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011625630942917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 526.85, + "principal_before": 989.9, + "principal_data": -463.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3011508355679941, + "account_data": -54.93, + "after": 1494.62, + "before": 1549.55, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 20:04:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011508289324741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1494.62, + "principal_before": 1549.55, + "principal_data": -54.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3011472217851845, + "account_data": -5.0, + "after": 1549.55, + "before": 1554.55, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 19:27:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011472120088133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1549.55, + "principal_before": 1554.55, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3011396117301189, + "account_data": -18.0, + "after": 1639.43, + "before": 1657.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 18:10:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3011396066609605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1639.43, + "principal_before": 1657.43, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3011179613800325, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-17 14:30:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3010830622968325, + "account_data": -5901.51, + "after": 6050.8, + "before": 11952.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 08:35:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010830541031877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6050.8, + "principal_before": 11952.31, + "principal_data": -5901.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3010830622820869, + "account_data": -308.0, + "after": 0.0, + "before": 308.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-17 08:35:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010830541031877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 308.0, + "principal_data": -308.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3010829306006021, + "account_data": 10000.0, + "after": 11952.31, + "before": 1952.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 08:33:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010829303007749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 11952.31, + "principal_before": 1952.31, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3010548941834565, + "account_data": -1115.2, + "after": 1207.25, + "before": 2322.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 03:48:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010548847003589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 1207.25, + "principal_before": 2322.45, + "principal_data": -1115.2 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3010548941687109, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-17 03:48:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010548847003589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3010485747222981, + "account_data": -925.74, + "after": 136.84, + "before": 1062.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 02:44:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010485591394821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 136.84, + "principal_before": 1062.58, + "principal_data": -925.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3010485747091909, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-17 02:44:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010485591394821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3010440215594949, + "account_data": -380.0, + "after": 989.9, + "before": 1369.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 01:58:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010440132659141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 989.9, + "principal_before": 1369.9, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3010424288364869, + "account_data": -32.15, + "after": 383.51, + "before": 415.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 01:41:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010423944120773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 383.51, + "principal_before": 415.66, + "principal_data": -32.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3010424288233797, + "account_data": -22.31, + "after": 477.69, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-17 01:41:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010423944120773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218344363781, + "tenant_member_id": 2799210084452101, + "principal_after": 477.69, + "principal_before": 500.0, + "principal_data": -22.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3010413675727365, + "account_data": -896.08, + "after": 1369.9, + "before": 2265.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 01:31:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010413566069189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1369.9, + "principal_before": 2265.98, + "principal_data": -896.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3010398741662021, + "account_data": -42.73, + "after": 420.01, + "before": 462.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 01:16:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010398246340549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 420.01, + "principal_before": 462.74, + "principal_data": -42.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3010386082482117, + "account_data": -190.0, + "after": 1657.43, + "before": 1847.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-17 01:03:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010386008902085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1657.43, + "principal_before": 1847.43, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3010313091860997, + "account_data": -26.0, + "after": 415.66, + "before": 441.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 23:48:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010312855407109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 415.66, + "principal_before": 441.66, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3010305121798661, + "account_data": -96.0, + "after": 442.55, + "before": 538.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 23:40:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010305051003397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 442.55, + "principal_before": 538.55, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3010269305571653, + "account_data": -73.67, + "after": 1127.46, + "before": 1201.13, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 23:04:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010268956658117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 1127.46, + "principal_before": 1201.13, + "principal_data": -73.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3010219363748357, + "account_data": -6.0, + "after": 1201.13, + "before": 1207.13, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 22:13:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010219309287877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 1201.13, + "principal_before": 1207.13, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3010192083192261, + "account_data": -8.54, + "after": 1554.55, + "before": 1563.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 21:45:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010192003024837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1554.55, + "principal_before": 1563.09, + "principal_data": -8.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3010192083028421, + "account_data": -370.38, + "after": 0.0, + "before": 370.38, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 21:45:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010192003024837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 370.38, + "principal_data": -370.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 3010179978921925, + "account_data": -72.0, + "after": 936.07, + "before": 1008.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 21:33:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010179943467333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 936.07, + "principal_before": 1008.07, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3010140406942149, + "account_data": -464.61, + "after": 4535.39, + "before": 5000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 20:53:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010140281063365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4535.39, + "principal_before": 5000.0, + "principal_data": -464.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3010120911522245, + "account_data": -156.18, + "after": 343.82, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 20:33:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010120819558853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 343.82, + "principal_before": 500.0, + "principal_data": -156.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3010068340754949, + "account_data": -244.26, + "after": 1207.13, + "before": 1451.39, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 19:39:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3010068289308997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 1207.13, + "principal_before": 1451.39, + "principal_data": -244.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3009970129340357, + "account_data": -15.0, + "after": 370.38, + "before": 385.38, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 17:59:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009970074077125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 370.38, + "principal_before": 385.38, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3009917446506949, + "account_data": -25.0, + "after": 126.0, + "before": 151.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-16 17:06:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009917369256453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 126.0, + "principal_before": 151.0, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3009909271005701, + "account_data": -380.0, + "after": 954.64, + "before": 1334.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 16:58:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009909191412037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 954.64, + "principal_before": 1334.64, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3009625632229189, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 12:09:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3009493307361221, + "account_data": -279.0, + "after": 6717.0, + "before": 6996.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-16 09:54:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009493259848133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6717.0, + "principal_before": 6996.0, + "principal_data": -279.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009492945193413, + "account_data": -13.0, + "after": 386.0, + "before": 399.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-16 09:54:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009492875954117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980067022260549, + "tenant_member_id": 2980065690831173, + "principal_after": 386.0, + "principal_before": 399.0, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3009304543447493, + "account_data": -7325.52, + "after": 2016.18, + "before": 9341.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 06:42:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009304382998469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2016.18, + "principal_before": 9341.7, + "principal_data": -7325.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3009303893395973, + "account_data": 5000.0, + "after": 9341.7, + "before": 4341.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 06:42:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009303890233861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 9341.7, + "principal_before": 4341.7, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3009294532970437, + "account_data": -593.98, + "after": 2265.98, + "before": 2859.96, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 06:32:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009293351078405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2265.98, + "principal_before": 2859.96, + "principal_data": -593.98 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009090769373637, + "account_data": -64.53, + "after": 111.47, + "before": 176.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 03:05:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009090619148613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 111.47, + "principal_before": 176.0, + "principal_data": -64.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3009068396415301, + "account_data": -815.1, + "after": 2859.96, + "before": 3675.06, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 02:42:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009068162664389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2859.96, + "principal_before": 3675.06, + "principal_data": -815.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3009066775726021, + "account_data": -186.62, + "after": 385.38, + "before": 572.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 02:41:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009066510485957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 385.38, + "principal_before": 572.0, + "principal_data": -186.62 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009052937226053, + "account_data": 176.0, + "after": 176.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 02:26:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 176.0, + "principal_before": 0.0, + "principal_data": 176.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009052479965701, + "account_data": -1388.69, + "after": 935.21, + "before": 2323.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 02:26:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009052395211077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 935.21, + "principal_before": 2323.9, + "principal_data": -1388.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009052479818245, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 02:26:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009052395211077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3009051795999045, + "account_data": 2000.0, + "after": 2323.9, + "before": 323.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 02:25:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009051792902469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2323.9, + "principal_before": 323.9, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3009016528046597, + "account_data": -682.33, + "after": 1451.39, + "before": 2133.72, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 01:49:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3009016469866821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 1451.39, + "principal_before": 2133.72, + "principal_data": -682.33 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15820216447", + "id": 3008958867982661, + "account_data": -72.0, + "after": 100.0, + "before": 172.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-16 00:51:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008958826056005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974785492141957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974785493747589, + "tenant_member_id": 2974785493485445, + "principal_after": 100.0, + "principal_before": 172.0, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3008957405218629, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-16 00:49:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3008956278229509, + "account_data": -1608.09, + "after": 2322.45, + "before": 3930.54, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 00:48:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008956220033477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 2322.45, + "principal_before": 3930.54, + "principal_data": -1608.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3008954540149253, + "account_data": 3000.0, + "after": 3930.54, + "before": 930.54, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 00:46:53", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008954535365125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 3930.54, + "principal_before": 930.54, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3008928492095429, + "account_data": -100.0, + "after": 183.72, + "before": 283.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-16 00:20:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008928439994885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 183.72, + "principal_before": 283.72, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3008927903746565, + "account_data": -567.12, + "after": 215.34, + "before": 782.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 00:19:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008927847287301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 215.34, + "principal_before": 782.46, + "principal_data": -567.12 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3008917716715461, + "account_data": -57.0, + "after": 456.93, + "before": 513.93, + "card_type_id": 2791990152417157, + "create_time": "2025-12-16 00:09:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008917674461509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 456.93, + "principal_before": 513.93, + "principal_data": -57.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3008917075560773, + "account_data": -312.88, + "after": 1847.43, + "before": 2160.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-16 00:08:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008917016643909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1847.43, + "principal_before": 2160.31, + "principal_data": -312.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3008818794875205, + "account_data": -570.0, + "after": 1334.64, + "before": 1904.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 22:28:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008818732943685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 1334.64, + "principal_before": 1904.64, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3008791754705413, + "account_data": -319.99, + "after": 782.46, + "before": 1102.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 22:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008791636118021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 782.46, + "principal_before": 1102.45, + "principal_data": -319.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3008791282174469, + "account_data": -380.0, + "after": 3675.06, + "before": 4055.06, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 22:00:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008791226763717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3675.06, + "principal_before": 4055.06, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3008790760523589, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 22:00:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3008759324215237, + "account_data": -582.96, + "after": 1942.41, + "before": 2525.37, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 21:28:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008759199385925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1942.41, + "principal_before": 2525.37, + "principal_data": -582.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3008736793495877, + "account_data": -5.0, + "after": 462.74, + "before": 467.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 21:05:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008736750356997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 462.74, + "principal_before": 467.74, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3008727058549061, + "account_data": -760.0, + "after": 1952.31, + "before": 2712.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 20:55:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008726930934085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1952.31, + "principal_before": 2712.31, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3008618017704389, + "account_data": -570.0, + "after": 1904.64, + "before": 2474.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 19:04:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008617959983429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 1904.64, + "principal_before": 2474.64, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3008495161493957, + "account_data": -16.0, + "after": 572.0, + "before": 588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 16:59:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3008495138638341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 572.0, + "principal_before": 588.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3007798907504901, + "account_data": -1653.4, + "after": 4055.06, + "before": 5708.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 05:11:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007798754183237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4055.06, + "principal_before": 5708.46, + "principal_data": -1653.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3007592785889285, + "account_data": -669.62, + "after": 2133.72, + "before": 2803.34, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 01:41:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007592485832965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 2133.72, + "principal_before": 2803.34, + "principal_data": -669.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3007572183189765, + "account_data": -215.7, + "after": 1563.09, + "before": 1778.79, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 01:20:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007572092061765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1563.09, + "principal_before": 1778.79, + "principal_data": -215.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007567238039813, + "account_data": -380.0, + "after": 308.0, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 01:15:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007567172896773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 308.0, + "principal_before": 688.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007525298637701, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 00:32:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 3007525249518469, + "account_data": 388.0, + "after": 388.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 00:32:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 388.0, + "principal_before": 0.0, + "principal_data": 388.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3007525201972101, + "account_data": 88.0, + "after": 588.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-15 00:32:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 588.0, + "principal_before": 500.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007525105076229, + "account_data": -62.0, + "after": 2712.31, + "before": 2774.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-15 00:32:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007525032691845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2712.31, + "principal_before": 2774.31, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3007449485887621, + "account_data": -4.0, + "after": 0.38, + "before": 4.38, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 23:15:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007449442371653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 0.38, + "principal_before": 4.38, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3007447136553221, + "account_data": -496.73, + "after": 1102.45, + "before": 1599.18, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 23:13:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007447080945925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1102.45, + "principal_before": 1599.18, + "principal_data": -496.73 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007434432153605, + "account_data": -24.0, + "after": 151.0, + "before": 175.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-14 23:00:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007434366683141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 151.0, + "principal_before": 175.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3007415992223749, + "account_data": -122.86, + "after": 0.0, + "before": 122.86, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 22:41:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007415695591429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 122.86, + "principal_data": -122.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3007415992059909, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 22:41:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007415695591429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007415101818949, + "account_data": -72.0, + "after": 2774.31, + "before": 2846.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 22:40:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007415007365125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2774.31, + "principal_before": 2846.31, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3007415101687877, + "account_data": -688.0, + "after": 0.0, + "before": 688.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 22:40:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007415007365125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 688.0, + "principal_data": -688.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3007409561225477, + "account_data": -120.0, + "after": 538.55, + "before": 658.55, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 22:35:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007409387784325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 538.55, + "principal_before": 658.55, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3007372842813701, + "account_data": -662.51, + "after": 2525.37, + "before": 3187.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 21:57:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007372724226309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 2525.37, + "principal_before": 3187.88, + "principal_data": -662.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3007359277779013, + "account_data": -385.29, + "after": 930.54, + "before": 1315.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 21:44:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007359220582469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 930.54, + "principal_before": 1315.83, + "principal_data": -385.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3007334271748229, + "account_data": -6.0, + "after": 4.38, + "before": 10.38, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 21:18:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007334187976837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 4.38, + "principal_before": 10.38, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3007334271584389, + "account_data": -2.0, + "after": 0.0, + "before": 2.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 21:18:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007334187976837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 0.0, + "principal_before": 2.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3007314296637509, + "account_data": -460.52, + "after": 539.48, + "before": 1000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 20:58:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007314202118277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003186241311685, + "tenant_member_id": 3003185854190085, + "principal_after": 539.48, + "principal_before": 1000.0, + "principal_data": -460.52 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3007251335399685, + "account_data": -51.0, + "after": 6996.0, + "before": 7047.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-14 19:54:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007251282807045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6996.0, + "principal_before": 7047.0, + "principal_data": -51.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3007250900715589, + "account_data": -339.41, + "after": 5708.46, + "before": 6047.87, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 19:53:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007250818615365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5708.46, + "principal_before": 6047.87, + "principal_data": -339.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3007222840035397, + "account_data": -2.0, + "after": 441.66, + "before": 443.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 19:25:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007222822144261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 441.66, + "principal_before": 443.66, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3007166037330053, + "account_data": -195.75, + "after": 2803.34, + "before": 2999.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 18:27:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007165997631493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 2803.34, + "principal_before": 2999.09, + "principal_data": -195.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3007112330447109, + "account_data": -77.18, + "after": 1315.83, + "before": 1393.01, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 17:32:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007112282327045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 1315.83, + "principal_before": 1393.01, + "principal_data": -77.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3007087329462277, + "account_data": -121.45, + "after": 658.55, + "before": 780.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 17:07:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3007087017838853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 658.55, + "principal_before": 780.0, + "principal_data": -121.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3006339442624645, + "account_data": -116.79, + "after": 6047.87, + "before": 6164.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 04:26:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006339238070405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6047.87, + "principal_before": 6164.66, + "principal_data": -116.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3006335388551237, + "account_data": -4843.86, + "after": 4341.7, + "before": 9185.56, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 04:22:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006335222892805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 4341.7, + "principal_before": 9185.56, + "principal_data": -4843.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3006335388387397, + "account_data": -1588.0, + "after": 0.0, + "before": 1588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-14 04:22:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006335222892805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1588.0, + "principal_data": -1588.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3006283496654917, + "account_data": -904.19, + "after": 2092.01, + "before": 2996.2, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 03:29:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006283397744773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 2092.01, + "principal_before": 2996.2, + "principal_data": -904.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3006272289081413, + "account_data": -1321.29, + "after": 1393.01, + "before": 2714.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 03:18:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006272068814917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 1393.01, + "principal_before": 2714.3, + "principal_data": -1321.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3006268609300485, + "account_data": -1044.52, + "after": 1599.18, + "before": 2643.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 03:14:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006267697367109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1599.18, + "principal_before": 2643.7, + "principal_data": -1044.52 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3006191427405829, + "account_data": -35.0, + "after": 596.0, + "before": 631.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-14 01:56:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006191360477189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2965088556746437, + "tenant_member_id": 2846153189592005, + "principal_after": 596.0, + "principal_before": 631.0, + "principal_data": -35.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 3006191030487301, + "account_data": -35.07, + "after": 467.74, + "before": 502.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-14 01:55:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006190942013509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 467.74, + "principal_before": 502.81, + "principal_data": -35.07 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 3006080258410565, + "account_data": -99.0, + "after": 1049.0, + "before": 1148.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-14 00:03:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3006080200919173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217420912389, + "tenant_member_id": 2799209753708293, + "principal_after": 1049.0, + "principal_before": 1148.0, + "principal_data": -99.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3005979534247941, + "account_data": -108.0, + "after": 780.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 22:20:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005979466680581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 780.0, + "principal_before": 888.0, + "principal_data": -108.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 3005970124916805, + "account_data": -103.0, + "after": 15742.0, + "before": 15845.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 22:10:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005970050173061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15742.0, + "principal_before": 15845.0, + "principal_data": -103.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3005968462071877, + "account_data": -285.7, + "after": 2714.3, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 22:09:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005968384575493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 2714.3, + "principal_before": 3000.0, + "principal_data": -285.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3005968461924421, + "account_data": -45.61, + "after": 0.0, + "before": 45.61, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 22:09:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005968384575493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 0.0, + "principal_before": 45.61, + "principal_data": -45.61 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "18617310511", + "id": 3005964384602373, + "account_data": -152.0, + "after": 0.0, + "before": 152.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 22:05:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005963975624965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974755669182341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974755670771589, + "tenant_member_id": 2974755670493061, + "principal_after": 0.0, + "principal_before": 152.0, + "principal_data": -152.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3005945572608133, + "account_data": -0.91, + "after": 2999.09, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 21:46:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005945446598725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 2999.09, + "principal_before": 3000.0, + "principal_data": -0.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3005945572444293, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 21:46:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005945446598725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003852642833349, + "tenant_member_id": 3003552553390789, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005944920950917, + "account_data": -117.0, + "after": 7047.0, + "before": 7164.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 21:45:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005944869947525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 7047.0, + "principal_before": 7164.0, + "principal_data": -117.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005944074389765, + "account_data": -497.93, + "after": 6164.66, + "before": 6662.59, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 21:44:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005943986718789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6164.66, + "principal_before": 6662.59, + "principal_data": -497.93 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005944074242310, + "account_data": -293.87, + "after": 0.0, + "before": 293.87, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 21:44:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005943986718789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 293.87, + "principal_data": -293.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3005912705550405, + "account_data": -197.81, + "after": 2643.7, + "before": 2841.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 21:12:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005912611358725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2643.7, + "principal_before": 2841.51, + "principal_data": -197.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3005912705386565, + "account_data": -288.0, + "after": 0.0, + "before": 288.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 21:12:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005912611358725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 288.0, + "principal_data": -288.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3005859067906309, + "account_data": -15.0, + "after": 323.9, + "before": 338.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 20:18:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005859008104709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 323.9, + "principal_before": 338.9, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3005849579637509, + "account_data": 135.0, + "after": 3187.88, + "before": 3052.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 20:08:21", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3187.88, + "principal_before": 3052.88, + "principal_data": 135.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3005839392016453, + "account_data": -31.53, + "after": 122.86, + "before": 154.39, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 19:57:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005839292909829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 122.86, + "principal_before": 154.39, + "principal_data": -31.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3005832619231301, + "account_data": -20.0, + "after": 338.9, + "before": 358.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 19:51:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005832558266437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 338.9, + "principal_before": 358.9, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3005830894061637, + "account_data": -8.0, + "after": 2.0, + "before": 10.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 19:49:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005830823659653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 2.0, + "principal_before": 10.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3005768713897989, + "account_data": -52.0, + "after": 2160.31, + "before": 2212.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 18:46:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005768695695621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2160.31, + "principal_before": 2212.31, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3005764984408069, + "account_data": -211.19, + "after": 2212.31, + "before": 2423.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 18:42:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005764854433861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2212.31, + "principal_before": 2423.5, + "principal_data": -211.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005709617252613, + "account_data": -40.0, + "after": 293.87, + "before": 333.87, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 17:45:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005709586892805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 293.87, + "principal_before": 333.87, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 3005662864246853, + "account_data": -110.74, + "after": 1301.26, + "before": 1412.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 16:58:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005662756702213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217903847173, + "tenant_member_id": 2799209914730245, + "principal_after": 1301.26, + "principal_before": 1412.0, + "principal_data": -110.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 3005662864099397, + "account_data": -88.0, + "after": 0.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 16:58:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005662756702213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3005510275991557, + "tenant_member_id": 2799209914730245, + "principal_after": 0.0, + "principal_before": 88.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005540620011781, + "account_data": -10.0, + "after": 333.87, + "before": 343.87, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 14:54:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005540600432773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 333.87, + "principal_before": 343.87, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005540136994885, + "account_data": -28.0, + "after": 343.87, + "before": 371.87, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 14:53:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005540087793669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 343.87, + "principal_before": 371.87, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3005525670758533, + "account_data": -454.39, + "after": 45.61, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 14:38:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005525610170437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 45.61, + "principal_before": 500.0, + "principal_data": -454.39 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 3005510731598725, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 14:23:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3005510275991557, + "tenant_member_id": 2799209914730245, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 3005510073550853, + "account_data": 1000.0, + "after": 1412.0, + "before": 412.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 14:22:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005510070650885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217903847173, + "tenant_member_id": 2799209914730245, + "principal_after": 1412.0, + "principal_before": 412.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 3005509329111813, + "account_data": 411.0, + "after": 412.0, + "before": 1.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 14:22:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217903847173, + "tenant_member_id": 2799209914730245, + "principal_after": 412.0, + "principal_before": 1.0, + "principal_data": 411.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3005137374759749, + "account_data": 288.0, + "after": 288.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 08:03:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 288.0, + "principal_before": 0.0, + "principal_data": 288.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3005137319611205, + "account_data": 1588.0, + "after": 1588.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 08:03:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1588.0, + "principal_before": 0.0, + "principal_data": 1588.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3005137260628805, + "account_data": 688.0, + "after": 688.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 08:03:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 688.0, + "principal_before": 0.0, + "principal_data": 688.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3005101009848325, + "account_data": -3615.96, + "after": 2846.31, + "before": 6462.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:26:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005100842256389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2846.31, + "principal_before": 6462.27, + "principal_data": -3615.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3005101009717253, + "account_data": -508.0, + "after": 0.0, + "before": 508.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 07:26:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005100842256389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 508.0, + "principal_data": -508.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3005099975985221, + "account_data": 5000.0, + "after": 6462.27, + "before": 1462.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:25:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005099972970565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6462.27, + "principal_before": 1462.27, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3005098199025669, + "account_data": -3670.89, + "after": 9185.56, + "before": 12856.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:24:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005098095413509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 9185.56, + "principal_before": 12856.45, + "principal_data": -3670.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3005097236547845, + "account_data": 10000.0, + "after": 12856.45, + "before": 2856.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:23:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005097233795333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 12856.45, + "principal_before": 2856.45, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3005095573080197, + "account_data": -380.0, + "after": 2841.51, + "before": 3221.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:21:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005095399393413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2841.51, + "principal_before": 3221.51, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3005078171797509, + "account_data": 3000.0, + "after": 3221.51, + "before": 221.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 07:03:38", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005078168471557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3221.51, + "principal_before": 221.51, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3005062668470533, + "account_data": -1516.13, + "after": 371.87, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 06:47:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3005062531450949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 371.87, + "principal_before": 1888.0, + "principal_data": -1516.13 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3004820669942021, + "account_data": -277.0, + "after": 223.78, + "before": 500.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 02:41:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004820628654213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 223.78, + "principal_before": 500.78, + "principal_data": -277.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3004820165691653, + "account_data": -832.5, + "after": 0.0, + "before": 832.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 02:41:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004819749800197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 832.5, + "principal_data": -832.5 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3004791188441349, + "account_data": -242.0, + "after": 421.0, + "before": 663.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 02:11:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004791115303173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 421.0, + "principal_before": 663.0, + "principal_data": -242.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3004790579808261, + "account_data": -1128.69, + "after": 158.79, + "before": 1287.48, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 02:11:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004790430337157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 158.79, + "principal_before": 1287.48, + "principal_data": -1128.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3004684173773637, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 00:22:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 3004683498080325, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 00:22:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004683495114821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3004681717991493, + "account_data": -170.0, + "after": 369.0, + "before": 539.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-13 00:20:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004681649211461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 369.0, + "principal_before": 539.0, + "principal_data": -170.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3004680452655941, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 00:19:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3004680407402565, + "account_data": -1415.2, + "after": 1778.79, + "before": 3193.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 00:19:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004680327956549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1778.79, + "principal_before": 3193.99, + "principal_data": -1415.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3004680015186053, + "account_data": 3000.0, + "after": 3193.99, + "before": 193.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 00:18:36", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004680012449925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3193.99, + "principal_before": 193.99, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3004676627302661, + "account_data": -6.0, + "after": 193.99, + "before": 199.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-13 00:15:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004676570941509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 193.99, + "principal_before": 199.99, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3004672039603077, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-13 00:10:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3004635289192453, + "account_data": -85.0, + "after": 0.0, + "before": 85.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 23:33:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004635245725957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 0.0, + "principal_before": 85.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3004605563554053, + "account_data": -52.57, + "after": 832.5, + "before": 885.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 23:02:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004605481338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 832.5, + "principal_before": 885.07, + "principal_data": -52.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3004605563390213, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 23:02:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004605481338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3004598572976261, + "account_data": -96.0, + "after": 676.0, + "before": 772.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 22:55:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004598512519237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 676.0, + "principal_before": 772.0, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 3004598166505605, + "account_data": -151.68, + "after": 95.2, + "before": 246.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 22:55:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004598083520645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215962556165, + "tenant_member_id": 2799207117129477, + "principal_after": 95.2, + "principal_before": 246.88, + "principal_data": -151.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3004595131320581, + "account_data": 1000.0, + "after": 1062.58, + "before": 62.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 22:52:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004595127781637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1062.58, + "principal_before": 62.58, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3004594594809925, + "account_data": -111.42, + "after": 62.58, + "before": 174.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 22:51:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004594437785669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 62.58, + "principal_before": 174.0, + "principal_data": -111.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004577747159173, + "account_data": -232.57, + "after": 221.51, + "before": 454.08, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 22:34:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004577671743621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 221.51, + "principal_before": 454.08, + "principal_data": -232.57 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004504440195333, + "account_data": -105.0, + "after": 283.72, + "before": 388.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 21:20:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004504384702469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 283.72, + "principal_before": 388.72, + "principal_data": -105.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004503581132869, + "account_data": -702.23, + "after": 454.08, + "before": 1156.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 21:19:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004503488841797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 454.08, + "principal_before": 1156.31, + "principal_data": -702.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004503406708805, + "account_data": 598.15, + "after": 1156.31, + "before": 558.16, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 21:18:57", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004503109568581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1156.31, + "principal_before": 558.16, + "principal_data": 598.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004503406561349, + "account_data": 104.08, + "after": 388.72, + "before": 284.64, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 21:18:57", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004503109568581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 388.72, + "principal_before": 284.64, + "principal_data": 104.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004503128443013, + "account_data": -598.15, + "after": 558.16, + "before": 1156.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 21:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004503109568581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 558.16, + "principal_before": 1156.31, + "principal_data": -598.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3004503128295557, + "account_data": -104.08, + "after": 284.64, + "before": 388.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 21:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004503109568581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 284.64, + "principal_before": 388.72, + "principal_data": -104.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3004499931154437, + "account_data": -8.0, + "after": 885.07, + "before": 893.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 21:15:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004499858262277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 885.07, + "principal_before": 893.07, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3004444362541061, + "account_data": -449.92, + "after": 3052.88, + "before": 3502.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 20:18:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004444253784325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3052.88, + "principal_before": 3502.8, + "principal_data": -449.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3004373286374213, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 19:06:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3004369766844485, + "account_data": 5000.0, + "after": 6639.14, + "before": 1639.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 19:03:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004369763698757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 6639.14, + "principal_before": 1639.14, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 3004333829457989, + "account_data": -100.0, + "after": 411.0, + "before": 511.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 18:26:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3004333781698565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 411.0, + "principal_before": 511.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003857258530949, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 10:21:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3003857200121989, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 10:21:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003852642833349, + "tenant_member_id": 3003552553390789, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003851507126789, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-12 10:15:48", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3003568779137797, + "account_data": -2846.31, + "after": 154.39, + "before": 3000.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 05:28:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003568503198405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 154.39, + "principal_before": 3000.7, + "principal_data": -2846.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3003567393605765, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 05:26:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003567319320709, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-12 05:26:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 3003565057987525, + "account_data": 3000.0, + "after": 3000.7, + "before": 0.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 05:24:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003565055185861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.7, + "principal_before": 0.7, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003557718758277, + "account_data": -5514.03, + "after": 6662.59, + "before": 12176.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 05:16:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003557633201029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6662.59, + "principal_before": 12176.62, + "principal_data": -5514.03 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003555903296389, + "account_data": 10000.0, + "after": 12176.62, + "before": 2176.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 05:15:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003555900052357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 12176.62, + "principal_before": 2176.62, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "候", + "memberMobile": "13161960323", + "id": 3003553513624325, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 05:12:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003553510904581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003552552014533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003552553702085, + "tenant_member_id": 3003552553390789, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3003428477276869, + "account_data": -5.0, + "after": 199.99, + "before": 204.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 03:05:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003428256551813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 199.99, + "principal_before": 204.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3003380686689157, + "account_data": -7.0, + "after": 539.0, + "before": 546.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 02:16:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003380606374661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 539.0, + "principal_before": 546.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3003380121228165, + "account_data": -51.91, + "after": 204.99, + "before": 256.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 02:16:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003380029936517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 204.99, + "principal_before": 256.9, + "principal_data": -51.91 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003356051935941, + "account_data": -69.0, + "after": 7164.0, + "before": 7233.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 01:51:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003355999835013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 7164.0, + "principal_before": 7233.0, + "principal_data": -69.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003354592793349, + "account_data": -459.14, + "after": 2176.62, + "before": 2635.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 01:50:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003354523227077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2176.62, + "principal_before": 2635.76, + "principal_data": -459.14 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3003353911956357, + "account_data": -130.0, + "after": 399.0, + "before": 529.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 01:49:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003353801937605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980067022260549, + "tenant_member_id": 2980065690831173, + "principal_after": 399.0, + "principal_before": 529.0, + "principal_data": -130.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3003353545918725, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 01:49:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3003353401643717, + "account_data": -1301.86, + "after": 358.9, + "before": 1660.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 01:49:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003353328456581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 358.9, + "principal_before": 1660.76, + "principal_data": -1301.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3003353152951045, + "account_data": 1000.0, + "after": 1660.76, + "before": 660.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 01:48:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003353150280453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1660.76, + "principal_before": 660.76, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3003347165041413, + "account_data": -584.64, + "after": 256.9, + "before": 841.54, + "card_type_id": 2793249295533893, + "create_time": "2025-12-12 01:42:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003347090904005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 256.9, + "principal_before": 841.54, + "principal_data": -584.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3003253764838149, + "account_data": -30.0, + "after": 10.0, + "before": 40.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-12 00:07:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003253720044293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 10.0, + "principal_before": 40.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3003250071950085, + "account_data": -120.0, + "after": 85.0, + "before": 205.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-12 00:03:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003250027303813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 85.0, + "principal_before": 205.0, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 3003220108301189, + "account_data": -225.21, + "after": 174.0, + "before": 399.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 23:33:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003219966170053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 174.0, + "principal_before": 399.21, + "principal_data": -225.21 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3003188726483077, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 23:01:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003186241311685, + "tenant_member_id": 3003185854190085, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "常总", + "memberMobile": "18570077188", + "id": 3003186187719557, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 22:59:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003186184573829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 3003185852666373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 3003185854517765, + "tenant_member_id": 3003185854190085, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3003130283381445, + "account_data": -119.92, + "after": 1639.14, + "before": 1759.06, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 22:02:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003130226316229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1639.14, + "principal_before": 1759.06, + "principal_data": -119.92 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3003096131392197, + "account_data": -51.0, + "after": 1260.0, + "before": 1311.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 21:27:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003096059024133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 1260.0, + "principal_before": 1311.0, + "principal_data": -51.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 3003093918536645, + "account_data": -60.93, + "after": 3680.65, + "before": 3741.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 21:25:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003093833175813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3680.65, + "principal_before": 3741.58, + "principal_data": -60.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3003088003879621, + "account_data": -69.9, + "after": 3502.8, + "before": 3572.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 21:19:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003087864419013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3502.8, + "principal_before": 3572.7, + "principal_data": -69.9 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3003088003715781, + "account_data": -145.69, + "after": 0.0, + "before": 145.69, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 21:19:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003087864419013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 145.69, + "principal_data": -145.69 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18302299763", + "id": 3003071141532421, + "account_data": -62.0, + "after": 138.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 21:01:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003071081485189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973199974385541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973199976089477, + "tenant_member_id": 2973199975761797, + "principal_after": 138.0, + "principal_before": 200.0, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 3003042963542789, + "account_data": -22.0, + "after": 3112.0, + "before": 3134.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 20:33:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003042910622661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3112.0, + "principal_before": 3134.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3003030237598405, + "account_data": -760.0, + "after": 2635.76, + "before": 3395.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 20:20:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003030189659077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2635.76, + "principal_before": 3395.76, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3003021833196229, + "account_data": -220.0, + "after": 175.0, + "before": 395.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-11 20:11:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3003021749195461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 175.0, + "principal_before": 395.0, + "principal_data": -220.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3002983762105029, + "account_data": -4.0, + "after": 443.66, + "before": 447.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 19:33:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002983715296133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 443.66, + "principal_before": 447.66, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3002982949131205, + "account_data": -234.6, + "after": 2423.5, + "before": 2658.1, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 19:32:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002982859363205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2423.5, + "principal_before": 2658.1, + "principal_data": -234.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3002972199965445, + "account_data": -190.0, + "after": 508.0, + "before": 698.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 19:21:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002972125680581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 508.0, + "principal_before": 698.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3002945998181317, + "account_data": -190.0, + "after": 841.54, + "before": 1031.54, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 18:54:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002945959056069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 841.54, + "principal_before": 1031.54, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3002829300454341, + "account_data": -8.0, + "after": 40.0, + "before": 48.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 16:55:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002829259592453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 40.0, + "principal_before": 48.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3002075641400133, + "account_data": -272.0, + "after": 388.72, + "before": 660.72, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 04:09:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002075594607365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 388.72, + "principal_before": 660.72, + "principal_data": -272.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3002073883266053, + "account_data": -1841.35, + "after": 1156.31, + "before": 2997.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 04:07:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002073775082501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1156.31, + "principal_before": 2997.66, + "principal_data": -1841.35 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3002070119516997, + "account_data": -1414.29, + "after": 1031.54, + "before": 2445.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 04:03:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002069983710021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1031.54, + "principal_before": 2445.83, + "principal_data": -1414.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3002069427325829, + "account_data": 1118.75, + "after": 2445.83, + "before": 1327.08, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 04:02:59", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002014585277253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2445.83, + "principal_before": 1327.08, + "principal_data": 1118.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3002068868795205, + "account_data": -5748.81, + "after": 2856.45, + "before": 8605.26, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 04:02:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002068764937093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2856.45, + "principal_before": 8605.26, + "principal_data": -5748.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3002014658186117, + "account_data": -1118.75, + "after": 1327.08, + "before": 2445.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 03:07:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002014585277253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1327.08, + "principal_before": 2445.83, + "principal_data": -1118.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3002014297426949, + "account_data": -712.32, + "after": 2445.83, + "before": 3158.15, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 03:06:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3002014209968901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2445.83, + "principal_before": 3158.15, + "principal_data": -712.32 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3001975785196549, + "account_data": -181.0, + "after": 500.78, + "before": 681.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 02:27:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001975649815301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 500.78, + "principal_before": 681.78, + "principal_data": -181.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3001975552248069, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 02:27:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3001975016115013, + "account_data": -42.39, + "after": 893.07, + "before": 935.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 02:26:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001974969846661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 893.07, + "principal_before": 935.46, + "principal_data": -42.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3001974804319045, + "account_data": -718.29, + "after": 935.46, + "before": 1653.75, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 02:26:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001974733179781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 935.46, + "principal_before": 1653.75, + "principal_data": -718.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3001974471101189, + "account_data": 1000.0, + "after": 1653.75, + "before": 653.75, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 02:26:23", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001974467971845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1653.75, + "principal_before": 653.75, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3001875340544901, + "account_data": -12.0, + "after": 660.76, + "before": 672.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 00:45:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001875289443077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 660.76, + "principal_before": 672.76, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 3001874346609541, + "account_data": -52.0, + "after": 48.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 00:44:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001874284923717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 48.0, + "principal_before": 100.0, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3001869680823173, + "account_data": -119.0, + "after": 529.0, + "before": 648.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 00:39:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001869630589765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980067022260549, + "tenant_member_id": 2980065690831173, + "principal_after": 529.0, + "principal_before": 648.0, + "principal_data": -119.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3001868738251589, + "account_data": -805.17, + "after": 672.76, + "before": 1477.93, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 00:38:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001868629461765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 672.76, + "principal_before": 1477.93, + "principal_data": -805.17 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 3001868738087749, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-11 00:38:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001868629461765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3001833938799493, + "account_data": -54.0, + "after": 205.0, + "before": 259.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-11 00:03:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001833887026181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 205.0, + "principal_before": 259.0, + "principal_data": -54.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3001833373141765, + "account_data": -5.06, + "after": 0.0, + "before": 5.06, + "card_type_id": 2793249295533893, + "create_time": "2025-12-11 00:02:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001833139391493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 0.0, + "principal_before": 5.06, + "principal_data": -5.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 3001665558383365, + "account_data": -572.45, + "after": 145.69, + "before": 718.14, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 21:12:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001665335511813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 145.69, + "principal_before": 718.14, + "principal_data": -572.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3001591402892101, + "account_data": -2130.39, + "after": 8605.26, + "before": 10735.65, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 19:56:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001591335865349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 8605.26, + "principal_before": 10735.65, + "principal_data": -2130.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 3001589332216837, + "account_data": -114.75, + "after": 10735.65, + "before": 10850.4, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 19:54:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001589275495237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 10735.65, + "principal_before": 10850.4, + "principal_data": -114.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3001512752761669, + "account_data": -12.0, + "after": 2474.64, + "before": 2486.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 18:36:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001512684620805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 2474.64, + "principal_before": 2486.64, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 3001481214167813, + "account_data": -49.38, + "after": 303.19, + "before": 352.57, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 18:04:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001481150614533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 303.19, + "principal_before": 352.57, + "principal_data": -49.38 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3001463458859845, + "account_data": -190.0, + "after": 698.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 17:46:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3001463397862149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 698.0, + "principal_before": 888.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3000592361654661, + "account_data": -169.28, + "after": 660.72, + "before": 830.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-10 03:00:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000592303032837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 660.72, + "principal_before": 830.0, + "principal_data": -169.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 3000591613954437, + "account_data": -1146.32, + "after": 2997.66, + "before": 4143.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 02:59:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000591533673029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2997.66, + "principal_before": 4143.98, + "principal_data": -1146.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3000540009302533, + "account_data": -122.68, + "after": 2996.2, + "before": 3118.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 02:07:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000539911129605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 2996.2, + "principal_before": 3118.88, + "principal_data": -122.68 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3000540009155077, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 02:07:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000539911129605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3000532700842373, + "account_data": -123.0, + "after": 663.0, + "before": 786.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-10 01:59:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000532549536133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 663.0, + "principal_before": 786.0, + "principal_data": -123.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 3000532062194181, + "account_data": -1508.97, + "after": 1287.48, + "before": 2796.45, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 01:59:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000531981797893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 1287.48, + "principal_before": 2796.45, + "principal_data": -1508.97 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3000525184813573, + "account_data": -404.0, + "after": 1084.0, + "before": 1488.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-10 01:52:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000525129173381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 1084.0, + "principal_before": 1488.0, + "principal_data": -404.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3000523358046661, + "account_data": -2898.77, + "after": 2486.64, + "before": 5385.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 01:50:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000523189570053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 2486.64, + "principal_before": 5385.41, + "principal_data": -2898.77 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3000523357882821, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 01:50:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000523189570053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856364174021, + "tenant_member_id": 2799210064873221, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3000482604976645, + "account_data": -154.61, + "after": 3158.15, + "before": 3312.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 01:08:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000482499725829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3158.15, + "principal_before": 3312.76, + "principal_data": -154.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3000482604812805, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 01:08:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000482499725829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3000440868441861, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-10 00:26:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856364174021, + "tenant_member_id": 2799210064873221, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 3000438165850629, + "account_data": 5000.0, + "after": 5385.41, + "before": 385.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 00:23:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000438163032581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 5385.41, + "principal_before": 385.41, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 3000436480903749, + "account_data": -684.08, + "after": 653.75, + "before": 1337.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 00:21:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000436380699077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 653.75, + "principal_before": 1337.83, + "principal_data": -684.08 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3000420723952133, + "account_data": -110.0, + "after": 259.0, + "before": 369.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-10 00:05:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000420673636933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 259.0, + "principal_before": 369.0, + "principal_data": -110.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 3000419139521093, + "account_data": -410.96, + "after": 5.06, + "before": 416.02, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 00:04:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000418996914629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 5.06, + "principal_before": 416.02, + "principal_data": -410.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000415128586821, + "account_data": -10.0, + "after": 3395.76, + "before": 3405.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-10 00:00:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000415064361349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3395.76, + "principal_before": 3405.76, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 3000413679880581, + "account_data": -22.0, + "after": 395.0, + "before": 417.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-09 23:58:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000413529852293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 395.0, + "principal_before": 417.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 3000411363756485, + "account_data": -26.0, + "after": 447.66, + "before": 473.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 23:56:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000411306690949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 447.66, + "principal_before": 473.66, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3000386729201349, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 23:31:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000377993841157, + "account_data": -55.0, + "after": 3405.76, + "before": 3460.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 23:22:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000377915591173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3405.76, + "principal_before": 3460.76, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000373873986117, + "account_data": -8.0, + "after": 3460.76, + "before": 3468.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 23:18:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000373826505285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3460.76, + "principal_before": 3468.76, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 3000366609484229, + "account_data": 3000.0, + "after": 3312.76, + "before": 312.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 23:10:47", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000366606371269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3312.76, + "principal_before": 312.76, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 3000357007886917, + "account_data": -96.0, + "after": 1759.06, + "before": 1855.06, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 23:01:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000356965665349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1759.06, + "principal_before": 1855.06, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3000332005592837, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 22:35:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 3000317542828613, + "account_data": 3000.0, + "after": 3118.88, + "before": 118.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 22:20:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000317539961413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 3118.88, + "principal_before": 118.88, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000310897773125, + "account_data": -30.0, + "after": 3468.76, + "before": 3498.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 22:14:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000309705361925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3468.76, + "principal_before": 3498.76, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3000303476066885, + "account_data": -185.04, + "after": 2658.1, + "before": 2843.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 22:06:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000303387429253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2658.1, + "principal_before": 2843.14, + "principal_data": -185.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 3000303475903045, + "account_data": -169.65, + "after": 0.0, + "before": 169.65, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 22:06:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000303387429253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 169.65, + "principal_data": -169.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000218508315141, + "account_data": -30.0, + "after": 3498.76, + "before": 3528.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 20:40:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000218461194757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3498.76, + "principal_before": 3528.76, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 3000142817004037, + "account_data": -48.0, + "after": 3528.76, + "before": 3576.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 19:23:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 3000142761789957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3528.76, + "principal_before": 3576.76, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2999177437071941, + "account_data": -258.0, + "after": 830.0, + "before": 1088.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-09 03:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999177362737669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 830.0, + "principal_before": 1088.0, + "principal_data": -258.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2999176702167429, + "account_data": -1739.96, + "after": 4143.98, + "before": 5883.94, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 03:00:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999176636779077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 4143.98, + "principal_before": 5883.94, + "principal_data": -1739.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2999139813330693, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 02:22:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2999138986264965, + "account_data": -118.74, + "after": 312.76, + "before": 431.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 02:21:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999138924054981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 312.76, + "principal_before": 431.5, + "principal_data": -118.74 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2999138603485573, + "account_data": -240.0, + "after": 648.0, + "before": 888.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-09 02:21:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999138553760197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980067022260549, + "tenant_member_id": 2980065690831173, + "principal_after": 648.0, + "principal_before": 888.0, + "principal_data": -240.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2999137190480389, + "account_data": -1991.07, + "after": 1477.93, + "before": 3469.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 02:20:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999137132137029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1477.93, + "principal_before": 3469.0, + "principal_data": -1991.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2999136864979333, + "account_data": 3000.0, + "after": 3469.0, + "before": 469.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 02:19:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999136862030213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 3469.0, + "principal_before": 469.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 2999136024465157, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 02:18:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999126038989317, + "tenant_member_id": 2999125651818885, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2999127663626757, + "account_data": -75.0, + "after": 205.0, + "before": 280.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-09 02:10:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999127616375173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 205.0, + "principal_before": 280.0, + "principal_data": -75.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 2999126657206789, + "account_data": -1055.24, + "after": 1944.76, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 02:09:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999126604106309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 1944.76, + "principal_before": 3000.0, + "principal_data": -1055.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "清", + "memberMobile": "13066433087", + "id": 2999125999684101, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 02:08:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999125996653061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2999125649164677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2999125652146565, + "tenant_member_id": 2999125651818885, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999109509007877, + "account_data": -489.0, + "after": 3590.0, + "before": 4079.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-09 01:52:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999109434132869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219200280325, + "tenant_member_id": 2799212491392773, + "principal_after": 3590.0, + "principal_before": 4079.0, + "principal_data": -489.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999107397093957, + "account_data": -164.59, + "after": 10850.4, + "before": 11014.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 01:49:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999107174582789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 10850.4, + "principal_before": 11014.99, + "principal_data": -164.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999107396930117, + "account_data": -5664.0, + "after": 0.0, + "before": 5664.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 01:49:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999107174582789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 5664.0, + "principal_data": -5664.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999106818853317, + "account_data": 1743.27, + "after": 11014.99, + "before": 9271.72, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 01:49:15", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999106453670405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 11014.99, + "principal_before": 9271.72, + "principal_data": 1743.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999106818705861, + "account_data": 3776.0, + "after": 5664.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 01:49:15", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999106453670405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 5664.0, + "principal_before": 1888.0, + "principal_data": 3776.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999106574028485, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 01:49:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999106562689605, + "account_data": -1743.27, + "after": 9271.72, + "before": 11014.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 01:49:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999106453670405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 9271.72, + "principal_before": 11014.99, + "principal_data": -1743.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999106562542149, + "account_data": -3776.0, + "after": 0.0, + "before": 3776.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-09 01:49:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999106453670405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 3776.0, + "principal_data": -3776.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2999105598884357, + "account_data": 10000.0, + "after": 11014.99, + "before": 1014.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-09 01:48:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2999105596000773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 11014.99, + "principal_before": 1014.99, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2998934547761541, + "account_data": -329.05, + "after": 399.21, + "before": 728.26, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 22:54:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998934321203653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 399.21, + "principal_before": 728.26, + "principal_data": -329.05 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2998842259507717, + "account_data": -135.0, + "after": 280.0, + "before": 415.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-08 21:20:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998842214353477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 280.0, + "principal_before": 415.0, + "principal_data": -135.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2998837664074181, + "account_data": -304.68, + "after": 718.14, + "before": 1022.82, + "card_type_id": 2793266846533445, + "create_time": "2025-12-08 21:15:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998837564524933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 718.14, + "principal_before": 1022.82, + "principal_data": -304.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2998693508663749, + "account_data": -380.0, + "after": 469.0, + "before": 849.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 18:48:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998693458496069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 469.0, + "principal_before": 849.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2998677076576773, + "account_data": -8.0, + "after": 502.81, + "before": 510.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 18:32:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998677026752901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 502.81, + "principal_before": 510.81, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2998648077142597, + "account_data": -8.0, + "after": 431.5, + "before": 439.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 18:02:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2998648045799877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 431.5, + "principal_before": 439.5, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2997877484702277, + "account_data": -1132.85, + "after": 0.0, + "before": 1132.85, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 04:58:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997876836829765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 1132.85, + "principal_data": -1132.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2997864045890117, + "account_data": -380.0, + "after": 0.7, + "before": 380.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 04:45:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997863774194053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.7, + "principal_before": 380.7, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2997863415319045, + "account_data": 8.0, + "after": 380.7, + "before": 372.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 04:44:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997863412533765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 380.7, + "principal_before": 372.7, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2997860282796613, + "account_data": 220.0, + "after": 372.7, + "before": 152.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 04:41:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997860280076869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 372.7, + "principal_before": 152.7, + "principal_data": 220.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2997761818511813, + "account_data": -133.0, + "after": 1088.0, + "before": 1221.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-08 03:01:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997761750469125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1088.0, + "principal_before": 1221.0, + "principal_data": -133.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2997761194379781, + "account_data": -4.27, + "after": 5883.94, + "before": 5888.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 03:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997761074121221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 5883.94, + "principal_before": 5888.21, + "principal_data": -4.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2997761194232325, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-08 03:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997761074121221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2997653895891333, + "account_data": -8.0, + "after": 1337.83, + "before": 1345.83, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 01:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997653850311046, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1337.83, + "principal_before": 1345.83, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2997586719771013, + "account_data": -380.0, + "after": 510.81, + "before": 890.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-08 00:02:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997586676910661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 510.81, + "principal_before": 890.81, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2997571870280197, + "account_data": -218.0, + "after": 3349.0, + "before": 3567.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-07 23:47:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997571809299013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219134678789, + "tenant_member_id": 2799207204882181, + "principal_after": 3349.0, + "principal_before": 3567.0, + "principal_data": -218.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2997565709945285, + "account_data": -196.37, + "after": 303.63, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 23:41:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997565494905221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 303.63, + "principal_before": 500.0, + "principal_data": -196.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2997563835828677, + "account_data": 257.39, + "after": 500.0, + "before": 242.61, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 23:39:39", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997562950732357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 500.0, + "principal_before": 242.61, + "principal_data": 257.39 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2997563352287813, + "account_data": -257.39, + "after": 242.61, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 23:39:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997562950732357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 242.61, + "principal_before": 500.0, + "principal_data": -257.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2997555623184773, + "account_data": -42.99, + "after": 0.0, + "before": 42.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 23:31:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997555421252165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 0.0, + "principal_before": 42.99, + "principal_data": -42.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2997499106200133, + "account_data": -121.24, + "after": 1855.06, + "before": 1976.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 22:33:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997499061406213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1855.06, + "principal_before": 1976.3, + "principal_data": -121.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2997452829953733, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 21:46:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2997429281442245, + "account_data": -190.0, + "after": 1462.27, + "before": 1652.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 21:22:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997429208599045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1462.27, + "principal_before": 1652.27, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2997428650461765, + "account_data": 5000.0, + "after": 5888.21, + "before": 888.21, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 21:22:08", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997428647103045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 5888.21, + "principal_before": 888.21, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2997413313956229, + "account_data": -4.09, + "after": 0.0, + "before": 4.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 21:06:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997413062969861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 4.09, + "principal_data": -4.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2997348047702597, + "account_data": -8.0, + "after": 152.7, + "before": 160.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 20:00:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997347997551109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 152.7, + "principal_before": 160.7, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2997289724348933, + "account_data": -570.0, + "after": 890.81, + "before": 1460.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 19:00:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997289675721285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 890.81, + "principal_before": 1460.81, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2997174561180229, + "account_data": -120.0, + "after": 1976.3, + "before": 2096.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 17:03:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2997174534162821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1976.3, + "principal_before": 2096.3, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996806218830085, + "account_data": -2737.81, + "after": 160.7, + "before": 2898.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 10:48:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996806153949509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 160.7, + "principal_before": 2898.51, + "principal_data": -2737.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2996409519476485, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 04:05:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2996399031144709, + "account_data": -1140.0, + "after": 3576.76, + "before": 4716.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 03:54:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996398360023301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3576.76, + "principal_before": 4716.76, + "principal_data": -1140.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2996387250770117, + "account_data": -989.62, + "after": 10.38, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 03:42:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996387073003653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 10.38, + "principal_before": 1000.0, + "principal_data": -989.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2996384917704965, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 03:40:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996384914247941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996380266123589, + "account_data": -156.47, + "after": 1345.83, + "before": 1502.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 03:35:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996380033683781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1345.83, + "principal_before": 1502.3, + "principal_data": -156.47 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996305446883589, + "account_data": -127.0, + "after": 681.78, + "before": 808.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-07 02:19:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996305393471685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 681.78, + "principal_before": 808.78, + "principal_data": -127.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996304695005509, + "account_data": -28.0, + "after": 1502.3, + "before": 1530.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 02:18:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996304641741125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1502.3, + "principal_before": 1530.3, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996304095252741, + "account_data": -483.14, + "after": 1530.3, + "before": 2013.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 02:18:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996304010956933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1530.3, + "principal_before": 2013.44, + "principal_data": -483.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996304095105285, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 02:18:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996304010956933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2996296689586501, + "account_data": -489.0, + "after": 760.83, + "before": 1249.83, + "card_type_id": 2791990152417157, + "create_time": "2025-12-07 02:10:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996296638500997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217086531333, + "tenant_member_id": 2799207533332229, + "principal_after": 760.83, + "principal_before": 1249.83, + "principal_data": -489.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2996295743197509, + "account_data": -1228.88, + "after": 0.0, + "before": 1228.88, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 02:09:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996295418302789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 0.0, + "principal_before": 1228.88, + "principal_data": -1228.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996291165409541, + "account_data": -162.14, + "after": 2898.51, + "before": 3060.65, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 02:05:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996291073069381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2898.51, + "principal_before": 3060.65, + "principal_data": -162.14 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2996281052123269, + "account_data": -106.0, + "after": 786.0, + "before": 892.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-07 01:54:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996281000268101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 786.0, + "principal_before": 892.0, + "principal_data": -106.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2996280452256005, + "account_data": -378.98, + "after": 2796.45, + "before": 3175.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 01:54:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996280386834757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 2796.45, + "principal_before": 3175.43, + "principal_data": -378.98 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2996280452108549, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 01:54:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996280386834757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465806018694, + "tenant_member_id": 2976465665476741, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2996280338714309, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 01:54:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465806018694, + "tenant_member_id": 2976465665476741, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2996279971729733, + "account_data": 3000.0, + "after": 3175.43, + "before": 175.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 01:53:38", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996279968584005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 3175.43, + "principal_before": 175.43, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996233183023237, + "account_data": -44.15, + "after": 3060.65, + "before": 3104.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 01:06:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996233040482565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3060.65, + "principal_before": 3104.8, + "principal_data": -44.15 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996233182875781, + "account_data": -620.0, + "after": 0.0, + "before": 620.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 01:06:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996233040482565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 620.0, + "principal_data": -620.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996231737167557, + "account_data": 500.0, + "after": 620.0, + "before": 120.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 01:04:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 620.0, + "principal_before": 120.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2996230476812549, + "account_data": 3000.0, + "after": 3104.8, + "before": 104.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 01:03:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996230473896197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3104.8, + "principal_before": 104.8, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2996230163222213, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 01:02:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2996227474411653, + "account_data": -7947.7, + "after": 1652.27, + "before": 9599.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 01:00:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996227392131397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1652.27, + "principal_before": 9599.97, + "principal_data": -7947.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2996226852769989, + "account_data": 5000.0, + "after": 9599.97, + "before": 4599.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 00:59:36", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996226849722565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9599.97, + "principal_before": 4599.97, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2996226002473157, + "account_data": -483.65, + "after": 4599.97, + "before": 5083.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 00:58:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996225931448645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4599.97, + "principal_before": 5083.62, + "principal_data": -483.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2996226002325701, + "account_data": -211.88, + "after": 0.0, + "before": 211.88, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 00:58:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996225931448645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 211.88, + "principal_data": -211.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 2996204379361413, + "account_data": -881.12, + "after": 118.88, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 00:36:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996204300570949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 118.88, + "principal_before": 1000.0, + "principal_data": -881.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 2996204379213957, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-07 00:36:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996204300570949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2996181694501125, + "account_data": -50.0, + "after": 2013.44, + "before": 2063.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-07 00:13:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996181614219589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2013.44, + "principal_before": 2063.44, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2996167241224453, + "account_data": -330.35, + "after": 169.65, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-06 23:58:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2996167161647365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 169.65, + "principal_before": 500.0, + "principal_data": -330.35 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2995981365203269, + "account_data": -234.99, + "after": 1022.82, + "before": 1257.81, + "card_type_id": 2793266846533445, + "create_time": "2025-12-06 20:49:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995981178835269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1022.82, + "principal_before": 1257.81, + "principal_data": -234.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 2995907039530693, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-06 19:34:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995833659035909, + "tenant_member_id": 2995832745758917, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2995864393257221, + "account_data": -69.0, + "after": 15845.0, + "before": 15914.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-06 18:50:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995864338944133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15845.0, + "principal_before": 15914.0, + "principal_data": -69.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2995864006709509, + "account_data": -390.32, + "after": 42.99, + "before": 433.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 18:50:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995863928508549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 42.99, + "principal_before": 433.31, + "principal_data": -390.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "19350986822", + "id": 2995833618305285, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 18:19:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995833615503621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2995832744415429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2995832746102981, + "tenant_member_id": 2995832745758917, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2995776624103749, + "account_data": -126.6, + "after": 2096.3, + "before": 2222.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 17:21:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995776547082437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2096.3, + "principal_before": 2222.9, + "principal_data": -126.6 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2995776278909189, + "account_data": -90.0, + "after": 3954.61, + "before": 4044.61, + "card_type_id": 2791990152417157, + "create_time": "2025-12-06 17:21:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995776241144133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 3954.61, + "principal_before": 4044.61, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2995766775369989, + "account_data": -187.46, + "after": 0.0, + "before": 187.46, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 17:11:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995766301134981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 187.46, + "principal_data": -187.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2995745359024389, + "account_data": -5.0, + "after": 439.5, + "before": 444.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 16:49:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2995745321914501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 439.5, + "principal_before": 444.5, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2994948857057413, + "account_data": -1055.89, + "after": 4716.76, + "before": 5772.65, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 03:19:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994948789719237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4716.76, + "principal_before": 5772.65, + "principal_data": -1055.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2994902828241221, + "account_data": -26.0, + "after": 473.66, + "before": 499.66, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 02:32:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994902742765765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 473.66, + "principal_before": 499.66, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2994889139703493, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-06 02:18:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2994889125564741, + "account_data": -1199.32, + "after": 2063.44, + "before": 3262.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 02:18:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994889065877765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2063.44, + "principal_before": 3262.76, + "principal_data": -1199.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2994888749175109, + "account_data": 3000.0, + "after": 3262.76, + "before": 262.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 02:18:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994888746062149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3262.76, + "principal_before": 262.76, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2994885862822021, + "account_data": -144.0, + "after": 356.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-06 02:15:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994885796384965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403742328773, + "tenant_member_id": 2799207067109125, + "principal_after": 356.0, + "principal_before": 500.0, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2994868733350021, + "account_data": -225.0, + "after": 892.0, + "before": 1117.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-06 01:58:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994868661604613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 892.0, + "principal_before": 1117.0, + "principal_data": -225.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2994867965612229, + "account_data": -1145.17, + "after": 175.43, + "before": 1320.6, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 01:57:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994867844206853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 175.43, + "principal_before": 1320.6, + "principal_data": -1145.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2994866121969861, + "account_data": -313.05, + "after": 444.5, + "before": 757.55, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 01:55:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994866040918277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 444.5, + "principal_before": 757.55, + "principal_data": -313.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2994865959063685, + "account_data": -1222.36, + "after": 757.55, + "before": 1979.91, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 01:55:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994865781592261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 757.55, + "principal_before": 1979.91, + "principal_data": -1222.36 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2994865958916229, + "account_data": -411.51, + "after": 0.0, + "before": 411.51, + "card_type_id": 2793266846533445, + "create_time": "2025-12-06 01:55:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994865781592261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 411.51, + "principal_data": -411.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2994859961929861, + "account_data": -50.0, + "after": 433.31, + "before": 483.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 01:49:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994859917267077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 433.31, + "principal_before": 483.31, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2994780885700933, + "account_data": -380.0, + "after": 310.31, + "before": 690.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 00:28:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994780811677957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 310.31, + "principal_before": 690.31, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2994761041825989, + "account_data": -319.39, + "after": 84.51, + "before": 403.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-06 00:08:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994760869122181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217522181893, + "tenant_member_id": 2799209794651909, + "principal_after": 84.51, + "principal_before": 403.9, + "principal_data": -319.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2994668875665733, + "account_data": -96.0, + "after": 2222.9, + "before": 2318.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 22:34:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994668821106949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2222.9, + "principal_before": 2318.9, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2994635288187141, + "account_data": -570.0, + "after": 690.31, + "before": 1260.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 22:00:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994635233628485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 690.31, + "principal_before": 1260.31, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2994631548309701, + "account_data": -58.0, + "after": 287.5, + "before": 345.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 21:56:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994631502123269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 287.5, + "principal_before": 345.5, + "principal_data": -58.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2994599925649669, + "account_data": -83.53, + "after": 262.76, + "before": 346.29, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 21:24:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994599857721669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 262.76, + "principal_before": 346.29, + "principal_data": -83.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2994599925485829, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 21:24:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994599857721669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2994574138233093, + "account_data": -78.0, + "after": 15914.0, + "before": 15992.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-05 20:58:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994574077694277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15914.0, + "principal_before": 15992.0, + "principal_data": -78.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2994573442404677, + "account_data": -272.2, + "after": 483.31, + "before": 755.51, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 20:57:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994573354111237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 483.31, + "principal_before": 755.51, + "principal_data": -272.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2994565763272837, + "account_data": -70.0, + "after": 1260.31, + "before": 1330.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 20:49:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994565706764485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 1260.31, + "principal_before": 1330.31, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2994565763076229, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 20:49:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994565706764485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2915510109228037, + "tenant_member_id": 2799209768765189, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2994529752961349, + "account_data": -215.69, + "after": 1257.81, + "before": 1473.5, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 20:13:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994529602670789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1257.81, + "principal_before": 1473.5, + "principal_data": -215.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2994416106246277, + "account_data": -10.0, + "after": 849.0, + "before": 859.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 18:17:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994416080851141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 849.0, + "principal_before": 859.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2994353673605317, + "account_data": -288.12, + "after": 211.88, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 17:14:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2994353579626629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 211.88, + "principal_before": 500.0, + "principal_data": -288.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2993884632943237, + "account_data": -1454.09, + "after": 5772.65, + "before": 7226.74, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 09:16:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993884310639301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5772.65, + "principal_before": 7226.74, + "principal_data": -1454.09 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2993848823908741, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 08:40:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2993540434137669, + "account_data": 3000.0, + "after": 5083.62, + "before": 2083.62, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 03:26:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993540431417925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5083.62, + "principal_before": 2083.62, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2993539910650565, + "account_data": -380.0, + "after": 385.41, + "before": 765.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 03:26:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993539846474437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 385.41, + "principal_before": 765.41, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2993523328406213, + "account_data": -3042.69, + "after": 2083.62, + "before": 5126.31, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 03:09:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993522941315717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2083.62, + "principal_before": 5126.31, + "principal_data": -3042.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2993523328258757, + "account_data": -190.19, + "after": 0.0, + "before": 190.19, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 03:09:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993522941315717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 190.19, + "principal_data": -190.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993505307904389, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 02:51:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2993505272711493, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 02:51:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2993505229506949, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-05 02:51:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993467714392645, + "account_data": -154.0, + "after": 808.78, + "before": 962.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-05 02:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993467669596805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 808.78, + "principal_before": 962.78, + "principal_data": -154.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993467200852549, + "account_data": -701.86, + "after": 346.29, + "before": 1048.15, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 02:12:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993467122242245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 346.29, + "principal_before": 1048.15, + "principal_data": -701.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993466846106181, + "account_data": 1000.0, + "after": 1048.15, + "before": 48.15, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 02:11:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993466843451973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1048.15, + "principal_before": 48.15, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2993395686871749, + "account_data": -88.0, + "after": 1221.0, + "before": 1309.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-05 00:59:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993395627561541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1221.0, + "principal_before": 1309.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2993395247878725, + "account_data": -587.59, + "after": 888.21, + "before": 1475.8, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 00:59:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993395118279365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 888.21, + "principal_before": 1475.8, + "principal_data": -587.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2993361672587909, + "account_data": -8.0, + "after": 1460.81, + "before": 1468.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 00:24:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993361622796997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1460.81, + "principal_before": 1468.81, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2993361143908997, + "account_data": -30.0, + "after": 1468.81, + "before": 1498.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-05 00:24:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993361085057669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1468.81, + "principal_before": 1498.81, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2993296325315269, + "account_data": -1140.0, + "after": 765.41, + "before": 1905.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 23:18:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993296262613637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 765.41, + "principal_before": 1905.41, + "principal_data": -1140.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2993287436030533, + "account_data": -516.07, + "after": 612.33, + "before": 1128.4, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 23:09:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993287312149125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 612.33, + "principal_before": 1128.4, + "principal_data": -516.07 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2993287435883077, + "account_data": -22.0, + "after": 0.0, + "before": 22.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-04 23:09:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993287312149125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377380161669, + "tenant_member_id": 2976376546117574, + "principal_after": 0.0, + "principal_before": 22.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2993286875894469, + "account_data": 1000.0, + "after": 1128.4, + "before": 128.4, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 23:08:54", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993286873141957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 1128.4, + "principal_before": 128.4, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2993207176598213, + "account_data": -604.07, + "after": 1473.5, + "before": 2077.57, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 21:47:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993206957312645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1473.5, + "principal_before": 2077.57, + "principal_data": -604.07 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13802623964", + "id": 2993201104605893, + "account_data": -40.0, + "after": 5620.0, + "before": 5660.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-04 21:41:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993201055288005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1823736961667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216461530885, + "tenant_member_id": 2799207146407685, + "principal_after": 5620.0, + "principal_before": 5660.0, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2993195118938821, + "account_data": -194.85, + "after": 2843.14, + "before": 3037.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 21:35:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993195056976453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2843.14, + "principal_before": 3037.99, + "principal_data": -194.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2993194850947781, + "account_data": 3000.0, + "after": 3037.99, + "before": 37.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 21:35:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993194848195269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 3037.99, + "principal_before": 37.99, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993187398521541, + "account_data": -188.2, + "after": 48.15, + "before": 236.35, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 21:27:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993187338111621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 48.15, + "principal_before": 236.35, + "principal_data": -188.2 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2993182043869893, + "account_data": -100.0, + "after": 1309.0, + "before": 1409.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-04 21:22:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993181992014533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1309.0, + "principal_before": 1409.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2993181161474757, + "account_data": -682.43, + "after": 1475.8, + "before": 2158.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 21:21:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993181074524869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1475.8, + "principal_before": 2158.23, + "principal_data": -682.43 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2993138027022981, + "account_data": -110.0, + "after": 15992.0, + "before": 16102.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-04 20:37:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993137967155909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15992.0, + "principal_before": 16102.0, + "principal_data": -110.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2993137428369989, + "account_data": -596.72, + "after": 755.51, + "before": 1352.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 20:36:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993137298229893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 755.51, + "principal_before": 1352.23, + "principal_data": -596.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2993137428173381, + "account_data": -142.15, + "after": 0.0, + "before": 142.15, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 20:36:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993137298229893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 0.0, + "principal_before": 142.15, + "principal_data": -142.15 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2993135778091589, + "account_data": -380.0, + "after": 120.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 20:35:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993135700234949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 120.0, + "principal_before": 500.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2993066163538629, + "account_data": -40.61, + "after": 236.35, + "before": 276.96, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 19:24:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993066099952325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 236.35, + "principal_before": 276.96, + "principal_data": -40.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2993060822764229, + "account_data": -1140.0, + "after": 859.0, + "before": 1999.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 19:18:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993060772350661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 859.0, + "principal_before": 1999.0, + "principal_data": -1140.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2993006028198597, + "account_data": -83.49, + "after": 411.51, + "before": 495.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 18:23:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993005929450181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 411.51, + "principal_before": 495.0, + "principal_data": -83.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2993005313084101, + "account_data": -15.0, + "after": 1008.07, + "before": 1023.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 18:22:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2993005279531589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1008.07, + "principal_before": 1023.07, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2992925836268229, + "account_data": -21.0, + "after": 1999.0, + "before": 2020.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 17:01:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992925787392645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 1999.0, + "principal_before": 2020.0, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2992924437189189, + "account_data": -5.0, + "after": 495.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 17:00:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992924415429317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 495.0, + "principal_before": 500.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2992872522519237, + "account_data": -10.0, + "after": 0.0, + "before": 10.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 16:07:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992872396837573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 0.0, + "principal_before": 10.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2992745544897093, + "account_data": -54.07, + "after": 352.57, + "before": 406.64, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 13:58:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992745472101061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 352.57, + "principal_before": 406.64, + "principal_data": -54.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2992511271733957, + "account_data": -1212.96, + "after": 7226.74, + "before": 8439.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 09:59:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992511209736837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7226.74, + "principal_before": 8439.7, + "principal_data": -1212.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2992263513589957, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-04 05:47:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2992053045856965, + "account_data": -133.0, + "after": 962.78, + "before": 1095.78, + "card_type_id": 2791990152417157, + "create_time": "2025-12-04 02:13:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992052995412677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 962.78, + "principal_before": 1095.78, + "principal_data": -133.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2992052501648069, + "account_data": -1017.82, + "after": 276.96, + "before": 1294.78, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 02:13:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992052416203461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 276.96, + "principal_before": 1294.78, + "principal_data": -1017.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2992005105930821, + "account_data": -3202.78, + "after": 104.8, + "before": 3307.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 01:25:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992005028776645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 104.8, + "principal_before": 3307.58, + "principal_data": -3202.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2992004781298245, + "account_data": 3000.0, + "after": 3307.58, + "before": 307.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 01:24:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2992004777448005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3307.58, + "principal_before": 307.58, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2991991400780357, + "account_data": -584.45, + "after": 1905.41, + "before": 2489.86, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 01:11:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991991316796101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 1905.41, + "principal_before": 2489.86, + "principal_data": -584.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2991990228488901, + "account_data": 730.89, + "after": 2489.86, + "before": 1758.97, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 01:09:53", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991983202323077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 2489.86, + "principal_before": 1758.97, + "principal_data": 730.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2991983344603717, + "account_data": -730.89, + "after": 1758.97, + "before": 2489.86, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 01:02:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991983202323077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 1758.97, + "principal_before": 2489.86, + "principal_data": -730.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2991975947700933, + "account_data": -570.0, + "after": 2158.23, + "before": 2728.23, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 00:55:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991975903300293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2158.23, + "principal_before": 2728.23, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2991921686614725, + "account_data": -570.0, + "after": 2489.86, + "before": 3059.86, + "card_type_id": 2793249295533893, + "create_time": "2025-12-04 00:00:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991921634069125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 2489.86, + "principal_before": 3059.86, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2991918791922373, + "account_data": -570.0, + "after": 1498.81, + "before": 2068.81, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 23:57:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991918745211589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1498.81, + "principal_before": 2068.81, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2991838241523909, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 22:35:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2991833045422661, + "account_data": -93.0, + "after": 22.0, + "before": 115.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 22:29:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991832998431365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377380161669, + "tenant_member_id": 2976376546117574, + "principal_after": 22.0, + "principal_before": 115.0, + "principal_data": -93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2991832341203653, + "account_data": -301.6, + "after": 128.4, + "before": 430.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 22:29:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991832215228997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 128.4, + "principal_before": 430.0, + "principal_data": -301.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2991832341056197, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 22:29:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991832215228997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2991815976766085, + "account_data": -1421.08, + "after": 1979.91, + "before": 3400.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 22:12:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991815912592069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1979.91, + "principal_before": 3400.99, + "principal_data": -1421.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2991815729040005, + "account_data": 3000.0, + "after": 3400.99, + "before": 400.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 22:12:23", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991815725910661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3400.99, + "principal_before": 400.99, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2991804112063109, + "account_data": -570.0, + "after": 3059.86, + "before": 3629.86, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 22:00:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991804033274565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 3059.86, + "principal_before": 3629.86, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2991765287047877, + "account_data": -369.67, + "after": 2077.57, + "before": 2447.24, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 21:21:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991765163707013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2077.57, + "principal_before": 2447.24, + "principal_data": -369.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2991765088817861, + "account_data": -82.64, + "after": 1294.78, + "before": 1377.42, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 21:20:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991765031340677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1294.78, + "principal_before": 1377.42, + "principal_data": -82.64 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2991723566764741, + "account_data": -39.0, + "after": 1409.0, + "before": 1448.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 20:38:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991723518120517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1409.0, + "principal_before": 1448.0, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2991722532197061, + "account_data": -275.07, + "after": 2728.23, + "before": 3003.3, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 20:37:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991722474031813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 2728.23, + "principal_before": 3003.3, + "principal_data": -275.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2991682600407749, + "account_data": -58.0, + "after": 345.5, + "before": 403.5, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 19:56:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991682544634501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 345.5, + "principal_before": 403.5, + "principal_data": -58.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2991648943362629, + "account_data": -35.0, + "after": 0.0, + "before": 35.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 19:22:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991648906171077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 0.0, + "principal_before": 35.0, + "principal_data": -35.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2991591174034117, + "account_data": -27.0, + "after": 1448.0, + "before": 1475.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 18:23:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991591123309125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1448.0, + "principal_before": 1475.0, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2991590310318789, + "account_data": -85.61, + "after": 3003.3, + "before": 3088.91, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 18:23:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991590237407877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3003.3, + "principal_before": 3088.91, + "principal_data": -85.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029782104709, + "account_data": -566.87, + "after": 8439.7, + "before": 9006.57, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 08:52:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029691208261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8439.7, + "principal_before": 9006.57, + "principal_data": -566.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029781957253, + "account_data": -876.99, + "after": 0.0, + "before": 876.99, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 08:52:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029691208261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 876.99, + "principal_data": -876.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029580712645, + "account_data": 289.16, + "after": 9006.57, + "before": 8717.41, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 08:52:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9006.57, + "principal_before": 8717.41, + "principal_data": 289.16 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029580565189, + "account_data": 876.99, + "after": 876.99, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 08:52:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 876.99, + "principal_before": 0.0, + "principal_data": 876.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029580434117, + "account_data": 277.71, + "after": 7233.0, + "before": 6955.29, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 08:52:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 7233.0, + "principal_before": 6955.29, + "principal_data": 277.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029486850629, + "account_data": -289.16, + "after": 8717.41, + "before": 9006.57, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 08:52:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8717.41, + "principal_before": 9006.57, + "principal_data": -289.16 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029486719557, + "account_data": -876.99, + "after": 0.0, + "before": 876.99, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 08:52:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 876.99, + "principal_data": -876.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2991029486572101, + "account_data": -277.71, + "after": 6955.29, + "before": 7233.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 08:52:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2991029466876613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 6955.29, + "principal_before": 7233.0, + "principal_data": -277.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2990922746514117, + "account_data": -24.0, + "after": 307.58, + "before": 331.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 07:03:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990922664282757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 307.58, + "principal_before": 331.58, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2990841565744197, + "account_data": 3776.0, + "after": 3776.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 05:41:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 3776.0, + "principal_before": 0.0, + "principal_data": 3776.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2990834169729605, + "account_data": -21639.71, + "after": 1014.99, + "before": 22654.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 05:33:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990834049419973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1014.99, + "principal_before": 22654.7, + "principal_data": -21639.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2990834169582149, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 05:33:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990834049419973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2990833566468805, + "account_data": 20000.0, + "after": 22654.7, + "before": 2654.7, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 05:33:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990833563568837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 22654.7, + "principal_before": 2654.7, + "principal_data": 20000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2990720651315909, + "account_data": -697.81, + "after": 190.19, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 03:38:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990719857396357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 190.19, + "principal_before": 888.0, + "principal_data": -697.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2990710648050245, + "account_data": -5.0, + "after": 400.99, + "before": 405.99, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 03:28:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990710576878277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 400.99, + "principal_before": 405.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2990639190348485, + "account_data": -55.0, + "after": 1451.0, + "before": 1506.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 02:15:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990639132578501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1451.0, + "principal_before": 1506.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2990635472865989, + "account_data": -153.0, + "after": 1117.0, + "before": 1270.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-03 02:11:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990635409427077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 1117.0, + "principal_before": 1270.0, + "principal_data": -153.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2990633988182597, + "account_data": -914.23, + "after": 272.15, + "before": 1186.38, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 02:10:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990633927578309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452013316421, + "tenant_member_id": 2983452013021509, + "principal_after": 272.15, + "principal_before": 1186.38, + "principal_data": -914.23 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2990633988051525, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-03 02:10:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990633927578309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452974256837, + "tenant_member_id": 2983452013021509, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2990625023249029, + "account_data": -1039.47, + "after": 1320.6, + "before": 2360.07, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 02:01:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990624858493637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 1320.6, + "principal_before": 2360.07, + "principal_data": -1039.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2990542222346885, + "account_data": -563.52, + "after": 3088.91, + "before": 3652.43, + "card_type_id": 2793249295533893, + "create_time": "2025-12-03 00:36:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990542168918661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3088.91, + "principal_before": 3652.43, + "principal_data": -563.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2990488981686917, + "account_data": -107.73, + "after": 0.0, + "before": 107.73, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 23:42:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990488747020869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 0.0, + "principal_before": 107.73, + "principal_data": -107.73 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 2990452731382405, + "account_data": -90.0, + "after": 772.0, + "before": 862.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-02 23:05:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990452679152197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 772.0, + "principal_before": 862.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 2990451693195973, + "account_data": -131.12, + "after": 246.88, + "before": 378.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 23:04:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990451646712453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215962556165, + "tenant_member_id": 2799207117129477, + "principal_after": 246.88, + "principal_before": 378.0, + "principal_data": -131.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2990438361877125, + "account_data": -310.89, + "after": 1228.88, + "before": 1539.77, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 22:51:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990438306941637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 1228.88, + "principal_before": 1539.77, + "principal_data": -310.89 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "肖先生", + "memberMobile": "15675486427", + "id": 2990369633913477, + "account_data": -50.0, + "after": 57.0, + "before": 107.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-02 21:41:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990369590940357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974756214654853, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974756216326021, + "tenant_member_id": 2974756216031109, + "principal_after": 57.0, + "principal_before": 107.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2990368803000901, + "account_data": -87.29, + "after": 2068.81, + "before": 2156.1, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 21:40:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990368759550533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2068.81, + "principal_before": 2156.1, + "principal_data": -87.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2990346139947589, + "account_data": -239.33, + "after": 3652.43, + "before": 3891.76, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 21:17:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990346046313029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3652.43, + "principal_before": 3891.76, + "principal_data": -239.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2990320671427205, + "account_data": -94.45, + "after": 405.99, + "before": 500.44, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 20:51:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990320598176325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 405.99, + "principal_before": 500.44, + "principal_data": -94.45 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2990305788432965, + "account_data": -313.58, + "after": 142.15, + "before": 455.73, + "card_type_id": 2793266846533445, + "create_time": "2025-12-02 20:36:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990305720881861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 142.15, + "principal_before": 455.73, + "principal_data": -313.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2990203993363013, + "account_data": -20.0, + "after": 20.11, + "before": 40.11, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 18:52:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990203959642757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 20.11, + "principal_before": 40.11, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2990199838593733, + "account_data": -24.0, + "after": 331.58, + "before": 355.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 18:48:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990199819883205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 331.58, + "principal_before": 355.58, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2990196952255109, + "account_data": -10.0, + "after": 2200.38, + "before": 2210.38, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 18:45:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2990196917260997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2200.38, + "principal_before": 2210.38, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2989575634389637, + "account_data": -481.64, + "after": 1132.85, + "before": 1614.49, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 08:13:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989575573197509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1132.85, + "principal_before": 1614.49, + "principal_data": -481.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2989575634242181, + "account_data": -149.31, + "after": 0.0, + "before": 149.31, + "card_type_id": 2793266846533445, + "create_time": "2025-12-02 08:13:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989575573197509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 0.0, + "principal_before": 149.31, + "principal_data": -149.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2989436756546117, + "account_data": -1500.07, + "after": 2360.07, + "before": 3860.14, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 05:52:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989436550615749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 2360.07, + "principal_before": 3860.14, + "principal_data": -1500.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2989293955748421, + "account_data": -24.0, + "after": 355.58, + "before": 379.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 03:27:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989293884951237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 355.58, + "principal_before": 379.58, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2989216014699141, + "account_data": -739.45, + "after": 1377.42, + "before": 2116.87, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 02:07:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989215959157445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1377.42, + "principal_before": 2116.87, + "principal_data": -739.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2989103390263941, + "account_data": -422.32, + "after": 1539.77, + "before": 1962.09, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 00:13:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989103314684613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 1539.77, + "principal_before": 1962.09, + "principal_data": -422.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2989094157128261, + "account_data": -30.0, + "after": 2020.0, + "before": 2050.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-02 00:03:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2989094120149573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2020.0, + "principal_before": 2050.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2988972805165637, + "account_data": -200.96, + "after": 0.0, + "before": 200.96, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 22:00:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988972540627653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 0.0, + "principal_before": 200.96, + "principal_data": -200.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2988972805018181, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 22:00:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988972540627653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2988939784325765, + "account_data": -8.0, + "after": 2156.1, + "before": 2164.1, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 21:26:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988939728440005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2156.1, + "principal_before": 2164.1, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2988921803592389, + "account_data": -5.0, + "after": 385.0, + "before": 390.0, + "card_type_id": 2794699703437125, + "create_time": "2025-12-01 21:08:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988921771741893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 385.0, + "principal_before": 390.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2988908679549637, + "account_data": -510.3, + "after": 2447.24, + "before": 2957.54, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 20:55:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988908545135173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2447.24, + "principal_before": 2957.54, + "principal_data": -510.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2988907521067717, + "account_data": -760.0, + "after": 379.58, + "before": 1139.58, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 20:54:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988907474621125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 379.58, + "principal_before": 1139.58, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13682854528", + "id": 2988906996124357, + "account_data": -55.0, + "after": 82.0, + "before": 137.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 20:53:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988906944041669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2963357030157765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963357031960005, + "tenant_member_id": 2963357031615941, + "principal_after": 82.0, + "principal_before": 137.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13428382609", + "id": 2988776553040581, + "account_data": -41.0, + "after": 159.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 18:40:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988776492026565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2988677060660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2988677063166981, + "tenant_member_id": 2988677062855685, + "principal_after": 159.0, + "principal_before": 200.0, + "principal_data": -41.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13428382609", + "id": 2988767860362309, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 18:31:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2988677060660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2988677063166981, + "tenant_member_id": 2988677062855685, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2988764680098373, + "account_data": -140.83, + "after": 500.44, + "before": 641.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 18:28:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988764498168453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 500.44, + "principal_before": 641.27, + "principal_data": -140.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2988737622594117, + "account_data": -120.0, + "after": 2318.9, + "before": 2438.9, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 18:01:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988737599343301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2318.9, + "principal_before": 2438.9, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "18617310511", + "id": 2988674489848517, + "account_data": -48.0, + "after": 152.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 16:56:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988674442873541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974755669182341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974755670771589, + "tenant_member_id": 2974755670493061, + "principal_after": 152.0, + "principal_before": 200.0, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2988574311140037, + "account_data": -8.0, + "after": 641.27, + "before": 649.27, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 15:15:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988574285763141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 641.27, + "principal_before": 649.27, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218939378309, + "account_data": -1037.91, + "after": 1962.09, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 09:13:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218832521925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 1962.09, + "principal_before": 3000.0, + "principal_data": -1037.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218939247237, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 09:13:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218832521925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218606211781, + "account_data": 1283.61, + "after": 3000.0, + "before": 1716.39, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 09:13:12", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218090015365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 3000.0, + "principal_before": 1716.39, + "principal_data": 1283.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218606064325, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 09:13:12", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218090015365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218178767557, + "account_data": -1283.61, + "after": 1716.39, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 09:12:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218090015365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 1716.39, + "principal_before": 3000.0, + "principal_data": -1283.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988218178620101, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 09:12:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988218090015365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988217794235525, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 09:12:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2988217007002309, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 09:11:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988217004102341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2988183598877765, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 08:37:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2988183431629893, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 08:37:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2988098787658373, + "account_data": -4182.12, + "after": 2654.7, + "before": 6836.82, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 07:11:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988098725595845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2654.7, + "principal_before": 6836.82, + "principal_data": -4182.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2988096764531269, + "account_data": -7389.16, + "after": 6836.82, + "before": 14225.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 07:09:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988096687166021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6836.82, + "principal_before": 14225.98, + "principal_data": -7389.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2988095260988101, + "account_data": 10000.0, + "after": 14225.98, + "before": 4225.98, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 07:07:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988095258202821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 14225.98, + "principal_before": 4225.98, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2988030887709317, + "account_data": -821.71, + "after": 5126.31, + "before": 5948.02, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 06:02:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988030668589701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5126.31, + "principal_before": 5948.02, + "principal_data": -821.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2988030887545477, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 06:02:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988030668589701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2988022519614149, + "account_data": 5000.0, + "after": 5948.02, + "before": 948.02, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 05:53:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2988022516501189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5948.02, + "principal_before": 948.02, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "15919579997", + "id": 2987808144364101, + "account_data": -63.0, + "after": 98.0, + "before": 161.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 02:15:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987808080040645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2977807257618309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2977807259453317, + "tenant_member_id": 2977807259142021, + "principal_after": 98.0, + "principal_before": 161.0, + "principal_data": -63.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2987683067892421, + "account_data": -380.0, + "after": 876.99, + "before": 1256.99, + "card_type_id": 2793266846533445, + "create_time": "2025-12-01 00:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987682982122053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 876.99, + "principal_before": 1256.99, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2987676717140613, + "account_data": -131.0, + "after": 369.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-12-01 00:01:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987676661895749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 369.0, + "principal_before": 500.0, + "principal_data": -131.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2987675345523269, + "account_data": -510.27, + "after": 416.02, + "before": 926.29, + "card_type_id": 2793249295533893, + "create_time": "2025-12-01 00:00:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987675294190277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 416.02, + "principal_before": 926.29, + "principal_data": -510.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2987586285636293, + "account_data": -631.01, + "after": 1256.99, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-30 22:29:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987586189773445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1256.99, + "principal_before": 1888.0, + "principal_data": -631.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2987582361946757, + "account_data": -114.24, + "after": 2438.9, + "before": 2553.14, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 22:25:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987582301080197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2438.9, + "principal_before": 2553.14, + "principal_data": -114.24 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2987577241785029, + "account_data": -31.0, + "after": 3134.0, + "before": 3165.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-30 22:20:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987577171153477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3134.0, + "principal_before": 3165.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2987499740908165, + "account_data": -224.04, + "after": 2957.54, + "before": 3181.58, + "card_type_id": 2793266846533445, + "create_time": "2025-11-30 21:01:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987499595008645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 2957.54, + "principal_before": 3181.58, + "principal_data": -224.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2987489121815173, + "account_data": -15.0, + "after": 2050.0, + "before": 2065.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 20:51:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987489028838085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2050.0, + "principal_before": 2065.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2987265824606917, + "account_data": -114.0, + "after": 2553.14, + "before": 2667.14, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 17:03:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987265772718789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2553.14, + "principal_before": 2667.14, + "principal_data": -114.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2987264931531461, + "account_data": -23.91, + "after": 795.66, + "before": 819.57, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 17:03:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2987264856986181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 795.66, + "principal_before": 819.57, + "principal_data": -23.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2986683757005893, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-30 07:11:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2986678247705221, + "account_data": -1221.82, + "after": 9006.57, + "before": 10228.39, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 07:06:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986677924514501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 9006.57, + "principal_before": 10228.39, + "principal_data": -1221.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2986677316555333, + "account_data": 10000.0, + "after": 10228.39, + "before": 228.39, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 07:05:19", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986677313868357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10228.39, + "principal_before": 228.39, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2986482180131525, + "account_data": -2820.75, + "after": 1352.23, + "before": 4172.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 03:46:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986481899145861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 1352.23, + "principal_before": 4172.98, + "principal_data": -2820.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2986427954891397, + "account_data": -72.0, + "after": 2009.69, + "before": 2081.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 02:51:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986427881753285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2009.69, + "principal_before": 2081.69, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2986424499997317, + "account_data": -231.94, + "after": 2116.87, + "before": 2348.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 02:48:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986424424499909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2116.87, + "principal_before": 2348.81, + "principal_data": -231.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2986424499833477, + "account_data": -103.94, + "after": 0.0, + "before": 103.94, + "card_type_id": 2793266846533445, + "create_time": "2025-11-30 02:48:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986424424499909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 103.94, + "principal_data": -103.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2986424112976581, + "account_data": -2049.45, + "after": 107.73, + "before": 2157.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 02:47:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986424031842885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 107.73, + "principal_before": 2157.18, + "principal_data": -2049.45 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2986287658767045, + "account_data": -92.0, + "after": 1475.0, + "before": 1567.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-30 00:28:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986287611251333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1475.0, + "principal_before": 1567.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2986287311131333, + "account_data": -467.19, + "after": 3891.76, + "before": 4358.95, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 00:28:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986287210449605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 3891.76, + "principal_before": 4358.95, + "principal_data": -467.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2986283223124613, + "account_data": -6.0, + "after": 926.29, + "before": 932.29, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 00:24:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986283167664774, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 926.29, + "principal_before": 932.29, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2986264032006853, + "account_data": -352.8, + "after": 932.29, + "before": 1285.09, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 00:04:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986263973120645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 932.29, + "principal_before": 1285.09, + "principal_data": -352.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2986261353433733, + "account_data": -3.0, + "after": 228.39, + "before": 231.39, + "card_type_id": 2793249295533893, + "create_time": "2025-11-30 00:02:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986261251787461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 228.39, + "principal_before": 231.39, + "principal_data": -3.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2986261353269893, + "account_data": -7.0, + "after": 0.0, + "before": 7.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-30 00:02:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986261251787461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 7.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "19197038219", + "id": 2986227360748229, + "account_data": -43.0, + "after": 97.0, + "before": 140.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 23:27:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986227322342021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2967557409476037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2967557411868101, + "tenant_member_id": 2967557411589573, + "principal_after": 97.0, + "principal_before": 140.0, + "principal_data": -43.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2986207998642821, + "account_data": -16.0, + "after": 2164.1, + "before": 2180.1, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 23:07:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986207950885573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2164.1, + "principal_before": 2180.1, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13682854528", + "id": 2986200987865797, + "account_data": -63.0, + "after": 137.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 23:00:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986200946805382, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2963357030157765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963357031960005, + "tenant_member_id": 2963357031615941, + "principal_after": 137.0, + "principal_before": 200.0, + "principal_data": -63.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2986177654755909, + "account_data": -396.06, + "after": 103.94, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 22:37:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986177563642501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 103.94, + "principal_before": 500.0, + "principal_data": -396.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2986144556878469, + "account_data": -312.81, + "after": 2157.18, + "before": 2469.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 22:03:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986144489114245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2157.18, + "principal_before": 2469.99, + "principal_data": -312.81 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2986129363913349, + "account_data": -7.0, + "after": 1567.0, + "before": 1574.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 21:47:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986129319973445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1567.0, + "principal_before": 1574.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2986128249998021, + "account_data": -44.97, + "after": 4358.95, + "before": 4403.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 21:46:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986128116779653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 4358.95, + "principal_before": 4403.92, + "principal_data": -44.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2986126988315269, + "account_data": -149.3, + "after": 4403.92, + "before": 4553.22, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 21:45:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986126941721285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 4403.92, + "principal_before": 4553.22, + "principal_data": -149.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2986083540060869, + "account_data": -148.08, + "after": 649.27, + "before": 797.35, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 21:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2986083470281413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 649.27, + "principal_before": 797.35, + "principal_data": -148.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2985981348252293, + "account_data": -10.0, + "after": 2348.81, + "before": 2358.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 19:17:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985981274149445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2348.81, + "principal_before": 2358.81, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2985979915014853, + "account_data": -10.0, + "after": 2469.99, + "before": 2479.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 19:15:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985979874513477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2469.99, + "principal_before": 2479.99, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙", + "memberMobile": "17631643741", + "id": 2985941622690501, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-11-29 18:36:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985941619888837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2985941424229381, + "tenant_member_id": 2985941423934469, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2985940579404805, + "account_data": -64.0, + "after": 0.0, + "before": 64.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 18:35:52", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978938150160197, + "tenant_member_id": 2878376367018757, + "principal_after": 0.0, + "principal_before": 64.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2985940579290117, + "account_data": -985.0, + "after": 0.0, + "before": 985.0, + "card_type_id": 2793306611533637, + "create_time": "2025-11-29 18:35:52", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2878376367297285, + "tenant_member_id": 2878376367018757, + "principal_after": 0.0, + "principal_before": 985.0, + "principal_data": -985.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2985875840471621, + "account_data": -120.0, + "after": 2667.14, + "before": 2787.14, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 17:30:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985875800541829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2667.14, + "principal_before": 2787.14, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2985748553978565, + "account_data": -21.54, + "after": 40.11, + "before": 61.65, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 15:20:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985748487033541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 40.11, + "principal_before": 61.65, + "principal_data": -21.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2985748553814725, + "account_data": -50.46, + "after": 0.0, + "before": 50.46, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 15:20:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985748487033541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 50.46, + "principal_data": -50.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2985390004210821, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 09:15:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2985381800921797, + "account_data": -7811.41, + "after": 948.02, + "before": 8759.43, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 09:07:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985381586864773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 948.02, + "principal_before": 8759.43, + "principal_data": -7811.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2985380901229125, + "account_data": 5000.0, + "after": 8759.43, + "before": 3759.43, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 09:06:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985380898411077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8759.43, + "principal_before": 3759.43, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2985302359870085, + "account_data": -3005.92, + "after": 231.39, + "before": 3237.31, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 07:46:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985302109246021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 231.39, + "principal_before": 3237.31, + "principal_data": -3005.92 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18613058308", + "id": 2985290871427781, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 07:34:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985289648689733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2984798968941189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984798973020805, + "tenant_member_id": 2984798972709509, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18613058308", + "id": 2985290871280325, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 07:34:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985289648689733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2984798968941189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984799475798725, + "tenant_member_id": 2984798972709509, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2985205995375237, + "account_data": -64.0, + "after": 546.0, + "before": 610.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 06:08:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985205900972741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 546.0, + "principal_before": 610.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2985204961546821, + "account_data": -62.46, + "after": 797.35, + "before": 859.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 06:07:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985204866683589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 797.35, + "principal_before": 859.81, + "principal_data": -62.46 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "15919579997", + "id": 2985054574185157, + "account_data": -39.0, + "after": 161.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 03:34:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985054525115077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2977807257618309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2977807259453317, + "tenant_member_id": 2977807259142021, + "principal_after": 161.0, + "principal_before": 200.0, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2985001787380421, + "account_data": -20.0, + "after": 1023.07, + "before": 1043.07, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 02:40:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2985001738572357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1023.07, + "principal_before": 1043.07, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984973648546885, + "account_data": 600.0, + "after": 1488.0, + "before": 888.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 02:12:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 1488.0, + "principal_before": 888.0, + "principal_data": 600.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984949338952261, + "account_data": -1370.14, + "after": 3629.86, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 01:47:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984949215810245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 3629.86, + "principal_before": 5000.0, + "principal_data": -1370.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984949338821189, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 01:47:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984949215810245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856364174021, + "tenant_member_id": 2799210064873221, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟智豪", + "memberMobile": "18814002803", + "id": 2984938750480965, + "account_data": -188.0, + "after": 0.0, + "before": 188.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 01:36:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984938250605125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2938228398655685, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2938228400277701, + "tenant_member_id": 2938228399917253, + "principal_after": 0.0, + "principal_before": 188.0, + "principal_data": -188.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18613058308", + "id": 2984914977459269, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 01:12:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2984798968941189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984799523015365, + "tenant_member_id": 2984798972709509, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18613058308", + "id": 2984914931829893, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 01:12:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2984798968941189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984799475798725, + "tenant_member_id": 2984798972709509, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984914886904901, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 01:12:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856364174021, + "tenant_member_id": 2799210064873221, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984914840800389, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 01:12:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984856411132485, + "tenant_member_id": 2799210064873221, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2984914795416709, + "account_data": 500.0, + "after": 1095.78, + "before": 595.78, + "card_type_id": 2791990152417157, + "create_time": "2025-11-29 01:12:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 1095.78, + "principal_before": 595.78, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2984914751589445, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-29 01:12:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2984898999816901, + "account_data": -641.19, + "after": 2358.81, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 00:56:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984898945026757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2358.81, + "principal_before": 3000.0, + "principal_data": -641.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2984898603551429, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 00:55:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984898600487621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "明哥", + "memberMobile": "16620040999", + "id": 2984856294101701, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-29 00:12:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984856291283653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210063857413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218300471045, + "tenant_member_id": 2799210064873221, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2984827344769605, + "account_data": -38.63, + "after": 1285.09, + "before": 1323.72, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 23:43:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984827280462405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 1285.09, + "principal_before": 1323.72, + "principal_data": -38.63 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2984804222751301, + "account_data": -203.65, + "after": 455.73, + "before": 659.38, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 23:19:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984804170519237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 455.73, + "principal_before": 659.38, + "principal_data": -203.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2984802269121221, + "account_data": -108.0, + "after": 2787.14, + "before": 2895.14, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 23:17:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984802221036229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2787.14, + "principal_before": 2895.14, + "principal_data": -108.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18613058308", + "id": 2984799425057349, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 23:15:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984799421616709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2984798968941189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984798973020805, + "tenant_member_id": 2984798972709509, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2984792928504517, + "account_data": -156.0, + "after": 1574.0, + "before": 1730.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 23:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984792872342213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1574.0, + "principal_before": 1730.0, + "principal_data": -156.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2984791964732101, + "account_data": -1126.83, + "after": 4553.22, + "before": 5680.05, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 23:07:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984791908387525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 4553.22, + "principal_before": 5680.05, + "principal_data": -1126.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2984761407834821, + "account_data": -8.0, + "after": 2065.0, + "before": 2073.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 22:36:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984761344447173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2065.0, + "principal_before": 2073.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "肖先生", + "memberMobile": "15675486427", + "id": 2984738049102533, + "account_data": -93.0, + "after": 107.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 22:12:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984738004636357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974756214654853, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974756216326021, + "tenant_member_id": 2974756216031109, + "principal_after": 107.0, + "principal_before": 200.0, + "principal_data": -93.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15820216447", + "id": 2984737530401477, + "account_data": -28.0, + "after": 172.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 22:12:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984737491798725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974785492141957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974785493747589, + "tenant_member_id": 2974785493485445, + "principal_after": 172.0, + "principal_before": 200.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2984704126454469, + "account_data": -15.0, + "after": 2073.0, + "before": 2088.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 21:38:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984704071619269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2073.0, + "principal_before": 2088.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2984703417602629, + "account_data": -8.0, + "after": 2180.1, + "before": 2188.1, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 21:37:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984703367268997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2180.1, + "principal_before": 2188.1, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "涂先生", + "memberMobile": "13929546115", + "id": 2984700601109509, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 21:34:30", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2984700275739653, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2984700277558277, + "tenant_member_id": 2984700277263365, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2984659485493893, + "account_data": -298.71, + "after": 3181.58, + "before": 3480.29, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 20:52:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984659055086213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3181.58, + "principal_before": 3480.29, + "principal_data": -298.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2984657744515781, + "account_data": -228.62, + "after": 659.38, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 20:50:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984657649914437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 659.38, + "principal_before": 888.0, + "principal_data": -228.62 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2984630197865157, + "account_data": -28.0, + "after": 417.0, + "before": 445.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-28 20:22:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984630145927813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 417.0, + "principal_before": 445.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2984608651643589, + "account_data": -439.45, + "after": 1323.72, + "before": 1763.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 20:00:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984608598299333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 1323.72, + "principal_before": 1763.17, + "principal_data": -439.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2984600945316421, + "account_data": -317.1, + "after": 859.81, + "before": 1176.91, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 19:53:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984600897851973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 859.81, + "principal_before": 1176.91, + "principal_data": -317.1 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2984596680297157, + "account_data": -50.0, + "after": 35.0, + "before": 85.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 19:48:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984596633309893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 35.0, + "principal_before": 85.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2984567818654405, + "account_data": -34.0, + "after": 64.0, + "before": 98.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 19:19:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984567768992453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978938150160197, + "tenant_member_id": 2878376367018757, + "principal_after": 64.0, + "principal_before": 98.0, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2984547646065349, + "account_data": -101.47, + "after": 728.26, + "before": 829.73, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 18:58:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984547567768133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 728.26, + "principal_before": 829.73, + "principal_data": -101.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2984547645901509, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 18:58:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984547567768133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2984545665798725, + "account_data": -183.89, + "after": 37.99, + "before": 221.88, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 18:56:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984545599113861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 37.99, + "principal_before": 221.88, + "principal_data": -183.89 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2984464327789189, + "account_data": -133.0, + "after": 445.0, + "before": 578.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-28 17:34:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2984464279098053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 445.0, + "principal_before": 578.0, + "principal_data": -133.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2983645348170373, + "account_data": -504.88, + "after": 2188.1, + "before": 2692.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 03:41:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983645234580165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2188.1, + "principal_before": 2692.98, + "principal_data": -504.88 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2983617472762437, + "account_data": -91.0, + "after": 517.0, + "before": 608.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 03:12:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983617163823813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946072298784837, + "tenant_member_id": 2946070922169029, + "principal_after": 517.0, + "principal_before": 608.0, + "principal_data": -91.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2983616080399045, + "account_data": -133.89, + "after": 1938.1, + "before": 2071.99, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 03:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983615947311749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 1938.1, + "principal_before": 2071.99, + "principal_data": -133.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2983557440705093, + "account_data": -56.1, + "after": 1176.91, + "before": 1233.01, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 02:11:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983557382687365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1176.91, + "principal_before": 1233.01, + "principal_data": -56.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 2983526363679429, + "account_data": -112.89, + "after": 0.0, + "before": 112.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 01:40:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983526113465029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 0.0, + "principal_before": 112.89, + "principal_data": -112.89 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 2983526363548357, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 01:40:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983526113465029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2983482301270661, + "account_data": -82.86, + "after": 1186.38, + "before": 1269.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 00:55:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983482214339141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452013316421, + "tenant_member_id": 2983452013021509, + "principal_after": 1186.38, + "principal_before": 1269.24, + "principal_data": -82.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2983481792235973, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-28 00:54:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452974256837, + "tenant_member_id": 2983452013021509, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2983481740167621, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-28 00:54:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452911798917, + "tenant_member_id": 2983452013021509, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2983454798303813, + "account_data": -1730.76, + "after": 1269.24, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 00:27:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983454744515141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452013316421, + "tenant_member_id": 2983452013021509, + "principal_after": 1269.24, + "principal_before": 3000.0, + "principal_data": -1730.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "君姐", + "memberMobile": "16624614594", + "id": 2983452387707589, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 00:24:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983452384971461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2983452011170117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983452013316421, + "tenant_member_id": 2983452013021509, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2983446705230533, + "account_data": -233.34, + "after": 0.0, + "before": 233.34, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 00:18:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983446450295365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 233.34, + "principal_data": -233.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2983436370365125, + "account_data": -308.33, + "after": 1763.17, + "before": 2071.5, + "card_type_id": 2793249295533893, + "create_time": "2025-11-28 00:08:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983436285710917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 1763.17, + "principal_before": 2071.5, + "principal_data": -308.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2983423230708421, + "account_data": -318.58, + "after": 5680.05, + "before": 5998.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 23:55:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983423165057669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 5680.05, + "principal_before": 5998.63, + "principal_data": -318.58 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2983381525121477, + "account_data": 1200.0, + "after": 4079.0, + "before": 2879.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 23:12:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219200280325, + "tenant_member_id": 2799212491392773, + "principal_after": 4079.0, + "principal_before": 2879.0, + "principal_data": 1200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983381448395205, + "account_data": 900.0, + "after": 1311.0, + "before": 411.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 23:12:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 1311.0, + "principal_before": 411.0, + "principal_data": 900.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2983288492642885, + "account_data": -312.16, + "after": 3480.29, + "before": 3792.45, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 21:38:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983288418175621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3480.29, + "principal_before": 3792.45, + "principal_data": -312.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2983237986570949, + "account_data": -260.0, + "after": 1139.58, + "before": 1399.58, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 20:46:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983237892442757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1139.58, + "principal_before": 1399.58, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2983237986407109, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 20:46:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983237892442757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983225140988613, + "account_data": -89.0, + "after": 411.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 20:33:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983225060758085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 411.0, + "principal_before": 500.0, + "principal_data": -89.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983223932488325, + "account_data": -88.23, + "after": 3741.58, + "before": 3829.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 20:32:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983223802596037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3741.58, + "principal_before": 3829.81, + "principal_data": -88.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2983218618782405, + "account_data": -283.08, + "after": 1233.01, + "before": 1516.09, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 20:26:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983218554260101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1233.01, + "principal_before": 1516.09, + "principal_data": -283.08 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983210426861957, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 20:18:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983210381707653, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 20:18:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2983144658832005, + "tenant_member_id": 2799207356434181, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2983144488225413, + "account_data": 3000.0, + "after": 3829.81, + "before": 829.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 19:11:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983144485210757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3829.81, + "principal_before": 829.81, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2983083976116933, + "account_data": -148.78, + "after": 1516.09, + "before": 1664.87, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 18:09:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2983083921936965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1516.09, + "principal_before": 1664.87, + "principal_data": -148.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2982999200271045, + "account_data": -46.02, + "after": 2895.14, + "before": 2941.16, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 16:43:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982999153840709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2895.14, + "principal_before": 2941.16, + "principal_data": -46.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2982999200123589, + "account_data": -63.75, + "after": 0.0, + "before": 63.75, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 16:43:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982999153840709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 0.0, + "principal_before": 63.75, + "principal_data": -63.75 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2982694516509317, + "account_data": -24.0, + "after": 578.0, + "before": 602.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-27 11:33:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982694470947525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 578.0, + "principal_before": 602.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2982694039409221, + "account_data": -1575.58, + "after": 3237.31, + "before": 4812.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 11:33:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982693809900165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3237.31, + "principal_before": 4812.89, + "principal_data": -1575.58 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2982691811709637, + "account_data": -42.0, + "after": 602.0, + "before": 644.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-27 11:31:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982691764507205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 602.0, + "principal_before": 644.0, + "principal_data": -42.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2982266265604805, + "account_data": -217.42, + "after": 5998.63, + "before": 6216.05, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 04:18:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982266114558661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 5998.63, + "principal_before": 6216.05, + "principal_data": -217.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2982189586942661, + "account_data": -409.11, + "after": 6216.05, + "before": 6625.16, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 03:00:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982189523636805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 6216.05, + "principal_before": 6625.16, + "principal_data": -409.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982138413992645, + "account_data": -192.51, + "after": 1664.87, + "before": 1857.38, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 02:08:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982138354338437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1664.87, + "principal_before": 1857.38, + "principal_data": -192.51 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2982091670131397, + "account_data": -74.0, + "after": 608.0, + "before": 682.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 01:20:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982091544089157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946072298784837, + "tenant_member_id": 2946070922169029, + "principal_after": 608.0, + "principal_before": 682.0, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2982090261942981, + "account_data": -533.42, + "after": 2071.99, + "before": 2605.41, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 01:19:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982090152497733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 2071.99, + "principal_before": 2605.41, + "principal_data": -533.42 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982036052691077, + "account_data": 388.0, + "after": 888.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 00:23:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 888.0, + "principal_before": 500.0, + "principal_data": 388.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982036005439621, + "account_data": 388.0, + "after": 16102.0, + "before": 15714.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 00:23:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 16102.0, + "principal_before": 15714.0, + "principal_data": 388.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2982035979340421, + "account_data": -28.0, + "after": 4812.89, + "before": 4840.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:23:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982035923913349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4812.89, + "principal_before": 4840.89, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982034022533381, + "account_data": 500.0, + "after": 15714.0, + "before": 15214.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 00:21:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15714.0, + "principal_before": 15214.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982033978001669, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 00:21:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982031769326149, + "tenant_member_id": 2799207435323141, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982032151122629, + "account_data": -827.02, + "after": 4172.98, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:20:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982032042693189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 4172.98, + "principal_before": 5000.0, + "principal_data": -827.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2982031614790341, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:19:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982031611988677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219600049925, + "tenant_member_id": 2799207435323141, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982028823562885, + "account_data": -435.8, + "after": 1857.38, + "before": 2293.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:16:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982028739973701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1857.38, + "principal_before": 2293.18, + "principal_data": -435.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982028654137925, + "account_data": 722.25, + "after": 2293.18, + "before": 1570.93, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:16:27", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982028399579845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2293.18, + "principal_before": 1570.93, + "principal_data": 722.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982028473324229, + "account_data": -722.25, + "after": 1570.93, + "before": 2293.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:16:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982028399579845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1570.93, + "principal_before": 2293.18, + "principal_data": -722.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2982027587373701, + "account_data": -372.84, + "after": 3759.43, + "before": 4132.27, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:15:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982027521739461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3759.43, + "principal_before": 4132.27, + "principal_data": -372.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2982024275118725, + "account_data": -278.62, + "after": 2071.5, + "before": 2350.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:12:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982024215038597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 2071.5, + "principal_before": 2350.12, + "principal_data": -278.62 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2982022243470021, + "account_data": -188.0, + "after": 312.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 00:09:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982022138727109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982019644361413, + "tenant_member_id": 2799209768765189, + "principal_after": 312.0, + "principal_before": 500.0, + "principal_data": -188.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2982021903993093, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 00:09:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2915510109228037, + "tenant_member_id": 2799209768765189, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2982021824022661, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-27 00:09:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2982019644361413, + "tenant_member_id": 2799209768765189, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982020759900869, + "account_data": -1019.19, + "after": 2293.18, + "before": 3312.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982020571943621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2293.18, + "principal_before": 3312.37, + "principal_data": -1019.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2982020759753413, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-27 00:08:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982020571943621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2982019178842821, + "account_data": -1669.69, + "after": 1330.31, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:06:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982019104180933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 1330.31, + "principal_before": 3000.0, + "principal_data": -1669.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2982018385744581, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-27 00:06:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2982018382271173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2982012108621957, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-26 23:59:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2982012046100741, + "account_data": 100.0, + "after": 115.0, + "before": 15.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 23:59:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377380161669, + "tenant_member_id": 2976376546117574, + "principal_after": 115.0, + "principal_before": 15.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2981925577036485, + "account_data": -570.0, + "after": 430.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 22:31:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981925528259205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 430.0, + "principal_before": 1000.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2981925223961157, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 22:31:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981925220717125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2981924418245189, + "account_data": -44.14, + "after": 0.0, + "before": 44.14, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 22:30:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981924166374085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 0.0, + "principal_before": 44.14, + "principal_data": -44.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2981859909372613, + "account_data": -190.86, + "after": 3792.45, + "before": 3983.31, + "card_type_id": 2793266846533445, + "create_time": "2025-11-26 21:24:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981859833350853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3792.45, + "principal_before": 3983.31, + "principal_data": -190.86 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2981799729711237, + "account_data": 100.0, + "after": 610.0, + "before": 510.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 20:23:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 610.0, + "principal_before": 510.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2981799667927173, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-26 20:23:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2981788228784709, + "account_data": 1000.0, + "after": 3312.37, + "before": 2312.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 20:11:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981788225933893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3312.37, + "principal_before": 2312.37, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2981655332835909, + "account_data": -95.52, + "after": 2312.37, + "before": 2407.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 17:56:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981655277113925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2312.37, + "principal_before": 2407.89, + "principal_data": -95.52 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18520321125", + "id": 2981653480819333, + "account_data": -73.0, + "after": 0.0, + "before": 73.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 17:54:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981653056408261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970386002150981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970386005919301, + "tenant_member_id": 2970386005050949, + "principal_after": 0.0, + "principal_before": 73.0, + "principal_data": -73.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2981472791579333, + "account_data": -1900.0, + "after": 2088.0, + "before": 3988.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 14:51:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2981472758352581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 2088.0, + "principal_before": 3988.0, + "principal_data": -1900.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18102616452", + "id": 2980984244160901, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 06:34:01", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980948430489989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976369236133765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976369237837701, + "tenant_member_id": 2976369237493637, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18102616452", + "id": 2980948524206085, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 05:57:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980948430489989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976369236133765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976369237837701, + "tenant_member_id": 2976369237493637, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2980902614845829, + "account_data": -208.68, + "after": 6625.16, + "before": 6833.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 05:10:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980902492391429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 6625.16, + "principal_before": 6833.84, + "principal_data": -208.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2980901787552133, + "account_data": -1278.59, + "after": 4840.89, + "before": 6119.48, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 05:10:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980901642323397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4840.89, + "principal_before": 6119.48, + "principal_data": -1278.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2980826838664901, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-26 03:53:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2980826797049541, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-26 03:53:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980723881215429, + "tenant_member_id": 2955204541320325, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2980736294536645, + "account_data": -383.6, + "after": 2407.89, + "before": 2791.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 02:21:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980736237717893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2407.89, + "principal_before": 2791.49, + "principal_data": -383.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2980722842584517, + "account_data": -799.04, + "after": 200.96, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 02:08:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980722801445253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 200.96, + "principal_before": 1000.0, + "principal_data": -799.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2980722439276869, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 02:07:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980722435983685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2980663515793413, + "account_data": -655.6, + "after": 233.34, + "before": 888.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 01:07:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980663452616133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 233.34, + "principal_before": 888.94, + "principal_data": -655.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2980608738560325, + "account_data": -18.0, + "after": 499.66, + "before": 517.66, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 00:12:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980608683804101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 499.66, + "principal_before": 517.66, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2980601517114821, + "account_data": -267.65, + "after": 2350.12, + "before": 2617.77, + "card_type_id": 2793249295533893, + "create_time": "2025-11-26 00:04:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980601452152261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 2350.12, + "principal_before": 2617.77, + "principal_data": -267.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2980601516983749, + "account_data": -71.21, + "after": 0.0, + "before": 71.21, + "card_type_id": 2793266846533445, + "create_time": "2025-11-26 00:04:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980601452152261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362493413509, + "tenant_member_id": 2976361970370373, + "principal_after": 0.0, + "principal_before": 71.21, + "principal_data": -71.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2980595945227717, + "account_data": -226.83, + "after": 2479.99, + "before": 2706.82, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 23:59:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980595631130053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2479.99, + "principal_before": 2706.82, + "principal_data": -226.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2980573058091013, + "account_data": -394.33, + "after": 44.14, + "before": 438.47, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 23:35:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980572968716613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 44.14, + "principal_before": 438.47, + "principal_data": -394.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2980539655669765, + "account_data": -96.0, + "after": 63.75, + "before": 159.75, + "card_type_id": 2793266846533445, + "create_time": "2025-11-25 23:01:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980539604977093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 63.75, + "principal_before": 159.75, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2980535125395781, + "account_data": -167.46, + "after": 16729.21, + "before": 16896.67, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 22:57:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980535039739333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16729.21, + "principal_before": 16896.67, + "principal_data": -167.46 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13265107417", + "id": 2980518440585093, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 22:40:11", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2980518049187717, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980518051317637, + "tenant_member_id": 2980518051006341, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2980516352837061, + "account_data": -189.16, + "after": 6833.84, + "before": 7023.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 22:38:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980516286842885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 6833.84, + "principal_before": 7023.0, + "principal_data": -189.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2980514554628421, + "account_data": -3.32, + "after": 0.0, + "before": 3.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 22:36:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980514448869765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 0.0, + "principal_before": 3.32, + "principal_data": -3.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2980494803109317, + "account_data": -191.6, + "after": 888.94, + "before": 1080.54, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 22:16:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980494706968581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 888.94, + "principal_before": 1080.54, + "principal_data": -191.6 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "19197038219", + "id": 2980485904812421, + "account_data": -27.0, + "after": 140.0, + "before": 167.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 22:07:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980485867866117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2967557409476037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2967557411868101, + "tenant_member_id": 2967557411589573, + "principal_after": 140.0, + "principal_before": 167.0, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2980461068585349, + "account_data": -213.98, + "after": 7023.0, + "before": 7236.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 21:41:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980460989515781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 7023.0, + "principal_before": 7236.98, + "principal_data": -213.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2980458820569093, + "account_data": -24.0, + "after": 6119.48, + "before": 6143.48, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 21:39:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980458749512069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6119.48, + "principal_before": 6143.48, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2980410925730117, + "account_data": -5.0, + "after": 2706.82, + "before": 2711.82, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 20:50:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980410871482373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2706.82, + "principal_before": 2711.82, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2980353852770629, + "account_data": -5.0, + "after": 2711.82, + "before": 2716.82, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 19:52:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980353801799685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2711.82, + "principal_before": 2716.82, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18520321125", + "id": 2980257128367557, + "account_data": -67.0, + "after": 73.0, + "before": 140.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 18:14:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980257070074245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970386002150981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970386005919301, + "tenant_member_id": 2970386005050949, + "principal_after": 73.0, + "principal_before": 140.0, + "principal_data": -67.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2980131589179397, + "account_data": -15.0, + "after": 2791.49, + "before": 2806.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 16:06:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980131530312005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2791.49, + "principal_before": 2806.49, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2980067736012805, + "account_data": -1012.0, + "after": 3988.0, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 15:01:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980067605562821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 3988.0, + "principal_before": 5000.0, + "principal_data": -1012.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2980067735881733, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-25 15:01:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980067605562821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2980067352135429, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-25 15:01:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980066559166853, + "tenant_member_id": 2980065690831173, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2980067304032005, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 15:01:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980067022260549, + "tenant_member_id": 2980065690831173, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周周", + "memberMobile": "19874278725", + "id": 2980066467694021, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 15:00:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2980066463499717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2980065689078085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2980065691617605, + "tenant_member_id": 2980065690831173, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2979939893921861, + "account_data": -132.0, + "after": 644.0, + "before": 776.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-25 12:51:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979939847636933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 644.0, + "principal_before": 776.0, + "principal_data": -132.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2979430815614789, + "account_data": -1251.52, + "after": 6143.48, + "before": 7395.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 04:13:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979430568167493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6143.48, + "principal_before": 7395.0, + "principal_data": -1251.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2979403293624261, + "account_data": -10.0, + "after": 71.21, + "before": 81.21, + "card_type_id": 2793266846533445, + "create_time": "2025-11-25 03:45:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979403248126021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362493413509, + "tenant_member_id": 2976361970370373, + "principal_after": 71.21, + "principal_before": 81.21, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2979352401413957, + "account_data": -612.18, + "after": 4225.98, + "before": 4838.16, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 02:54:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979352253073221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 4225.98, + "principal_before": 4838.16, + "principal_data": -612.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2979251093260421, + "account_data": -443.3, + "after": 7395.0, + "before": 7838.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 01:10:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979250989942597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7395.0, + "principal_before": 7838.3, + "principal_data": -443.3 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2979245736265541, + "account_data": -130.0, + "after": 1270.0, + "before": 1400.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 01:05:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979245684459653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 1270.0, + "principal_before": 1400.0, + "principal_data": -130.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2979244949211269, + "account_data": -493.97, + "after": 3860.14, + "before": 4354.11, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 01:04:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979244854298437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 3860.14, + "principal_before": 4354.11, + "principal_data": -493.97 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2979244949080197, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-25 01:04:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979244854298437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465806018694, + "tenant_member_id": 2976465665476741, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2979244249483333, + "account_data": -304.89, + "after": 4132.27, + "before": 4437.16, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 01:04:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979244188240005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4132.27, + "principal_before": 4437.16, + "principal_data": -304.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2979220985661253, + "account_data": -292.23, + "after": 49.48, + "before": 341.71, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 00:40:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979220944636037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 49.48, + "principal_before": 341.71, + "principal_data": -292.23 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2979190149220165, + "account_data": -112.0, + "after": 1730.0, + "before": 1842.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-25 00:08:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979190098479173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1730.0, + "principal_before": 1842.0, + "principal_data": -112.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2979188749535045, + "account_data": -986.56, + "after": 7236.98, + "before": 8223.54, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 00:07:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979188696139909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 7236.98, + "principal_before": 8223.54, + "principal_data": -986.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2979188004636485, + "account_data": -791.31, + "after": 8223.54, + "before": 9014.85, + "card_type_id": 2793249295533893, + "create_time": "2025-11-25 00:06:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979187886409861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 8223.54, + "principal_before": 9014.85, + "principal_data": -791.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2979178109405253, + "account_data": -389.57, + "after": 221.88, + "before": 611.45, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 23:56:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979178051831621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 221.88, + "principal_before": 611.45, + "principal_data": -389.57 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2979153337026373, + "account_data": -85.0, + "after": 15.0, + "before": 100.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 23:31:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979153253959813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377380161669, + "tenant_member_id": 2976376546117574, + "principal_after": 15.0, + "principal_before": 100.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2979152115648645, + "account_data": -240.22, + "after": 438.47, + "before": 678.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 23:30:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979152052029381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 438.47, + "principal_before": 678.69, + "principal_data": -240.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2979152115517573, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 23:30:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979152052029381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2979150556498053, + "account_data": -102.0, + "after": 98.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 23:28:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979150500448197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978938150160197, + "tenant_member_id": 2878376367018757, + "principal_after": 98.0, + "principal_before": 200.0, + "principal_data": -102.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "19197038219", + "id": 2979139126397061, + "account_data": -33.0, + "after": 167.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 23:17:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979139091384133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2967557409476037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2967557411868101, + "tenant_member_id": 2967557411589573, + "principal_after": 167.0, + "principal_before": 200.0, + "principal_data": -33.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2979099637188357, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 22:36:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2979099548305093, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 22:36:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2979067131775045, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2979067571029829, + "account_data": -1909.05, + "after": 1399.58, + "before": 3308.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 22:04:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979067476559813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1399.58, + "principal_before": 3308.63, + "principal_data": -1909.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2979066988677189, + "account_data": 3000.0, + "after": 3308.63, + "before": 308.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 22:03:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979066984990789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3308.63, + "principal_before": 308.63, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2979034669664389, + "account_data": -30.0, + "after": 3165.0, + "before": 3195.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 21:30:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2979034612139845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3165.0, + "principal_before": 3195.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2978999720806342, + "account_data": -2708.59, + "after": 4437.16, + "before": 7145.75, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 20:55:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978999460038597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4437.16, + "principal_before": 7145.75, + "principal_data": -2708.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2978997987182661, + "account_data": -93.33, + "after": 0.0, + "before": 93.33, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 20:53:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978997914388421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268383766469, + "tenant_member_id": 2973479575832453, + "principal_after": 0.0, + "principal_before": 93.33, + "principal_data": -93.33 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2978995638126341, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 20:51:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978938150160197, + "tenant_member_id": 2878376367018757, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2978984104380357, + "account_data": -760.0, + "after": 341.71, + "before": 1101.71, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 20:39:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978984065845317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 341.71, + "principal_before": 1101.71, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2978868863469637, + "account_data": -196.82, + "after": 2806.49, + "before": 3003.31, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 18:42:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978868797147269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2806.49, + "principal_before": 3003.31, + "principal_data": -196.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2978858411640773, + "account_data": -71.94, + "after": 159.75, + "before": 231.69, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 18:31:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978858360358981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 159.75, + "principal_before": 231.69, + "principal_data": -71.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2978791735445445, + "account_data": -2482.34, + "after": 517.66, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 17:23:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978791638173829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 517.66, + "principal_before": 3000.0, + "principal_data": -2482.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2978791735297989, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 17:23:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978791638173829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978790039226501, + "tenant_member_id": 2799210084452101, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2978790531696325, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 17:22:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2978790039226501, + "tenant_member_id": 2799210084452101, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2978790482724613, + "account_data": 21.0, + "after": 500.0, + "before": 479.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 17:22:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218344363781, + "tenant_member_id": 2799210084452101, + "principal_after": 500.0, + "principal_before": 479.0, + "principal_data": 21.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2978789981472901, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 17:21:54", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978789978572933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218568087301, + "tenant_member_id": 2799210084452101, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2978580862060677, + "account_data": -33.67, + "after": 1761.17, + "before": 1794.84, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 13:49:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978580794574917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2913393474192965, + "tenant_member_id": 2860039721438277, + "principal_after": 1761.17, + "principal_before": 1794.84, + "principal_data": -33.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2978580103677893, + "account_data": -33.74, + "after": 219.13, + "before": 252.87, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 13:48:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978580037044165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 219.13, + "principal_before": 252.87, + "principal_data": -33.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2978578062608453, + "account_data": -70.62, + "after": 406.64, + "before": 477.26, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 13:46:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2978578019846277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 406.64, + "principal_before": 477.26, + "principal_data": -70.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2977813147600709, + "account_data": -570.0, + "after": 2692.98, + "before": 3262.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 00:48:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977813099644997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2692.98, + "principal_before": 3262.98, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "15919579997", + "id": 2977807599323013, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-24 00:42:34", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2977807257618309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2977807259453317, + "tenant_member_id": 2977807259142021, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2977798148327493, + "account_data": -26.44, + "after": 2716.82, + "before": 2743.26, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 00:32:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977798075090885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2716.82, + "principal_before": 2743.26, + "principal_data": -26.44 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2977798148163653, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 00:32:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977798075090885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403805718469, + "tenant_member_id": 2799207067109125, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2977797782669125, + "account_data": -556.11, + "after": 1080.54, + "before": 1636.65, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 00:32:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977797706631301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1080.54, + "principal_before": 1636.65, + "principal_data": -556.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2977794613626693, + "account_data": -258.25, + "after": 3003.31, + "before": 3261.56, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 00:29:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977794501510981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3003.31, + "principal_before": 3261.56, + "principal_data": -258.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2977794613479237, + "account_data": -120.0, + "after": 0.0, + "before": 120.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 00:29:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977794501510981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 120.0, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977791774476229, + "account_data": -22.0, + "after": 9014.85, + "before": 9036.85, + "card_type_id": 2793249295533893, + "create_time": "2025-11-24 00:26:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977791698225285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 9014.85, + "principal_before": 9036.85, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2977769882192005, + "account_data": -418.79, + "after": 81.21, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-24 00:04:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977769800845381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362493413509, + "tenant_member_id": 2976361970370373, + "principal_after": 81.21, + "principal_before": 500.0, + "principal_data": -418.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977732956162181, + "account_data": -725.94, + "after": 9036.85, + "before": 9762.79, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 23:26:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977732848338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 9036.85, + "principal_before": 9762.79, + "principal_data": -725.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977732956014725, + "account_data": -267.43, + "after": 0.0, + "before": 267.43, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 23:26:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977732848338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 267.43, + "principal_data": -267.43 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977728329205893, + "account_data": -411.57, + "after": 267.43, + "before": 679.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 23:21:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977728265848645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 267.43, + "principal_before": 679.0, + "principal_data": -411.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2977595482081093, + "account_data": -448.17, + "after": 3983.31, + "before": 4431.48, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 21:06:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977595400439941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3983.31, + "principal_before": 4431.48, + "principal_data": -448.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2977592930289733, + "account_data": -140.18, + "after": 0.0, + "before": 140.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 21:04:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977592780753029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 0.0, + "principal_before": 140.18, + "principal_data": -140.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2977592930125893, + "account_data": -281.83, + "after": 0.0, + "before": 281.83, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 21:04:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977592780753029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818227314724613, + "tenant_member_id": 2799207328155397, + "principal_after": 0.0, + "principal_before": 281.83, + "principal_data": -281.83 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977591334733765, + "account_data": -44.0, + "after": 1842.0, + "before": 1886.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 21:02:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977591277275077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1842.0, + "principal_before": 1886.0, + "principal_data": -44.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2977590873491589, + "account_data": -259.91, + "after": 679.0, + "before": 938.91, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 21:02:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977590771599301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 679.0, + "principal_before": 938.91, + "principal_data": -259.91 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2977534839343045, + "account_data": -25.0, + "after": 1797.0, + "before": 1822.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 20:05:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977534793828421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217202251525, + "tenant_member_id": 2799207378798341, + "principal_after": 1797.0, + "principal_before": 1822.0, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2977511144703941, + "account_data": -128.0, + "after": 273.0, + "before": 401.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 19:41:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977511093389125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973479576110981, + "tenant_member_id": 2973479575832453, + "principal_after": 273.0, + "principal_before": 401.0, + "principal_data": -128.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2977510419007621, + "account_data": -461.45, + "after": 93.33, + "before": 554.78, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 19:40:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977510329288517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268383766469, + "tenant_member_id": 2973479575832453, + "principal_after": 93.33, + "principal_before": 554.78, + "principal_data": -461.45 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2977510418860165, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 19:40:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977510329288517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268659476293, + "tenant_member_id": 2973479575832453, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2977472300222597, + "account_data": -5.0, + "after": 3261.56, + "before": 3266.56, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 19:01:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977472203933509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3261.56, + "principal_before": 3266.56, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2977471395760261, + "account_data": -570.0, + "after": 3262.98, + "before": 3832.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 19:00:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977471346821189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 3262.98, + "principal_before": 3832.98, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2977465835161349, + "account_data": 500.0, + "after": 23202.0, + "before": 22702.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 18:54:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217220863749, + "tenant_member_id": 2799207406946053, + "principal_after": 23202.0, + "principal_before": 22702.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2977465746409221, + "account_data": 500.0, + "after": 4431.48, + "before": 3931.48, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 18:54:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4431.48, + "principal_before": 3931.48, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2977465001707589, + "account_data": -380.0, + "after": 120.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 18:54:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977464925079365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 120.0, + "principal_before": 500.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2977461359233157, + "account_data": 3000.0, + "after": 3572.7, + "before": 572.7, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 18:50:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977461355956357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3572.7, + "principal_before": 572.7, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2977419716462533, + "account_data": -148.68, + "after": 231.69, + "before": 380.37, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 18:08:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977419634362437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 231.69, + "principal_before": 380.37, + "principal_data": -148.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2977400340416581, + "account_data": -333.73, + "after": 16896.67, + "before": 17230.4, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 17:48:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977400270161861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 16896.67, + "principal_before": 17230.4, + "principal_data": -333.73 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2977253204477893, + "account_data": -30.0, + "after": 390.0, + "before": 420.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-23 15:18:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2977253136173189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 390.0, + "principal_before": 420.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2976789148305541, + "account_data": -1139.96, + "after": 7838.3, + "before": 8978.26, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 07:26:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976788998735813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7838.3, + "principal_before": 8978.26, + "principal_data": -1139.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976517438064325, + "account_data": 500.0, + "after": 1000.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 02:50:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465806018694, + "tenant_member_id": 2976465665476741, + "principal_after": 1000.0, + "principal_before": 500.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976517357995717, + "account_data": 900.0, + "after": 1400.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 02:50:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 1400.0, + "principal_before": 500.0, + "principal_data": 900.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976484480387141, + "account_data": -1528.01, + "after": 1636.65, + "before": 3164.66, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 02:16:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976484408756293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1636.65, + "principal_before": 3164.66, + "principal_data": -1528.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976484480223301, + "account_data": -258.76, + "after": 0.0, + "before": 258.76, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 02:16:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976484408756293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 258.76, + "principal_data": -258.76 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2976480434440325, + "account_data": -218.17, + "after": 281.83, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 02:12:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976480297092933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818227314724613, + "tenant_member_id": 2799207328155397, + "principal_after": 281.83, + "principal_before": 500.0, + "principal_data": -218.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976471070083013, + "account_data": 3000.0, + "after": 4354.11, + "before": 1354.11, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 02:02:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976471067346885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 4354.11, + "principal_before": 1354.11, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976468315145925, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 02:00:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465806018694, + "tenant_member_id": 2976465665476741, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976468216858309, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 02:00:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465858267269, + "tenant_member_id": 2976465665476741, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976466802460613, + "account_data": -1645.89, + "after": 1354.11, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 01:58:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976466712561733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 1354.11, + "principal_before": 3000.0, + "principal_data": -1645.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13342871070", + "id": 2976465945266117, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 01:57:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976465941923781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976465664116869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976465665755269, + "tenant_member_id": 2976465665476741, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976441580816325, + "account_data": -25.0, + "after": 1886.0, + "before": 1911.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 01:32:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976441522014021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1886.0, + "principal_before": 1911.0, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976440854104133, + "account_data": -197.41, + "after": 938.91, + "before": 1136.32, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 01:32:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976440767104965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 938.91, + "principal_before": 1136.32, + "principal_data": -197.41 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2976408703125189, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:59:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403742328773, + "tenant_member_id": 2799207067109125, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2976408631609093, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:59:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976403805718469, + "tenant_member_id": 2799207067109125, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2976404249626437, + "account_data": -256.74, + "after": 2743.26, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:55:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976404201424965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 2743.26, + "principal_before": 3000.0, + "principal_data": -256.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13763388785", + "id": 2976403673892805, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:54:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976403670828997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207066060549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215882176261, + "tenant_member_id": 2799207067109125, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2976401694853061, + "account_data": -323.86, + "after": 7145.75, + "before": 7469.61, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:52:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976401593911365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7145.75, + "principal_before": 7469.61, + "principal_data": -323.86 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976398149208133, + "account_data": -22.0, + "after": 1911.0, + "before": 1933.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:48:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976398069827397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1911.0, + "principal_before": 1933.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976397336643717, + "account_data": -181.59, + "after": 1136.32, + "before": 1317.91, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:47:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976397278693317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 1136.32, + "principal_before": 1317.91, + "principal_data": -181.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976396046518341, + "account_data": -341.24, + "after": 258.76, + "before": 600.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:46:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976395956406341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 258.76, + "principal_before": 600.0, + "principal_data": -341.24 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976395790878405, + "account_data": 500.0, + "after": 595.78, + "before": 95.78, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:46:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 595.78, + "principal_before": 95.78, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976395711153925, + "account_data": 500.0, + "after": 600.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:46:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 600.0, + "principal_before": 100.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2976395102521157, + "account_data": 3000.0, + "after": 3164.66, + "before": 164.66, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:45:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976395099113285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3164.66, + "principal_before": 164.66, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2976393196062661, + "account_data": -50.0, + "after": 1043.07, + "before": 1093.07, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:43:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976393162311749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1043.07, + "principal_before": 1093.07, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18102616452", + "id": 2976386757117701, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:37:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976369236133765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976369237837701, + "tenant_member_id": 2976369237493637, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "15816135232", + "id": 2976386696382213, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:37:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976372410107781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976372411828101, + "tenant_member_id": 2976372411533189, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2976386641659653, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:37:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377329895557, + "tenant_member_id": 2976376546117574, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2976386588722949, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:37:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976377380161669, + "tenant_member_id": 2976376546117574, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2976377818171333, + "account_data": -321.31, + "after": 678.69, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:28:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976377770608709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 678.69, + "principal_before": 1000.0, + "principal_data": -321.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿亮", + "memberMobile": "15920462628", + "id": 2976377258444869, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:27:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976377255905349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976376544708549, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976376546412485, + "tenant_member_id": 2976376546117574, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976372377437957, + "account_data": 200.0, + "after": 401.0, + "before": 201.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:22:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973479576110981, + "tenant_member_id": 2973479575832453, + "principal_after": 401.0, + "principal_before": 201.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2976365509330693, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:15:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362549004101, + "tenant_member_id": 2976361970370373, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2976365397116677, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:15:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976362493413509, + "tenant_member_id": 2976361970370373, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976365329680133, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-23 00:15:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268659476293, + "tenant_member_id": 2973479575832453, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976365265929989, + "account_data": 100.0, + "after": 201.0, + "before": 101.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:15:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973479576110981, + "tenant_member_id": 2973479575832453, + "principal_after": 201.0, + "principal_before": 101.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2976363172268165, + "account_data": -382.23, + "after": 2617.77, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:13:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976363107436485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 2617.77, + "principal_before": 3000.0, + "principal_data": -382.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生", + "memberMobile": "15902794331", + "id": 2976362442442693, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-23 00:12:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976362439329733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2976361969010501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976361972205381, + "tenant_member_id": 2976361970370373, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13221949635", + "id": 2976354840921989, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-23 00:04:45", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2976354545420165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976354547206021, + "tenant_member_id": 2976354546927493, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2976297821259909, + "account_data": -85.0, + "after": 415.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 23:06:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976297762129733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 415.0, + "principal_before": 500.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2976296640939845, + "account_data": -350.69, + "after": 149.31, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 23:05:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976296562345797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 149.31, + "principal_before": 500.0, + "principal_data": -350.69 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976270321715013, + "account_data": -99.0, + "after": 101.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 22:38:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976270261471365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973479576110981, + "tenant_member_id": 2973479575832453, + "principal_after": 101.0, + "principal_before": 200.0, + "principal_data": -99.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976269438879813, + "account_data": -445.22, + "after": 554.78, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 22:37:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976269365364869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268383766469, + "tenant_member_id": 2973479575832453, + "principal_after": 554.78, + "principal_before": 1000.0, + "principal_data": -445.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2976268500174917, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 22:36:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976268497094725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976268383766469, + "tenant_member_id": 2973479575832453, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976257490389061, + "account_data": -111.0, + "after": 1933.0, + "before": 2044.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 22:25:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976257406896261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1933.0, + "principal_before": 2044.0, + "principal_data": -111.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976255504713797, + "account_data": -570.09, + "after": 1317.91, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 22:23:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976255393843013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 1317.91, + "principal_before": 1888.0, + "principal_data": -570.09 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2976226293483269, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 21:53:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2976226229356293, + "account_data": 500.0, + "after": 510.0, + "before": 10.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 21:53:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 510.0, + "principal_before": 10.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2976185484052613, + "account_data": 3000.0, + "after": 3266.56, + "before": 266.56, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 21:12:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976185479891077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3266.56, + "principal_before": 266.56, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976131501213445, + "account_data": 200.0, + "after": 2044.0, + "before": 1844.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 20:17:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 2044.0, + "principal_before": 1844.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2976131398780677, + "account_data": 200.0, + "after": 700.0, + "before": 500.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 20:17:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770908697477, + "tenant_member_id": 2974770547348357, + "principal_after": 700.0, + "principal_before": 500.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976065856014405, + "account_data": -44.0, + "after": 1844.0, + "before": 1888.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 19:10:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976065743701829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1844.0, + "principal_before": 1888.0, + "principal_data": -44.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976064770099013, + "account_data": -237.21, + "after": 9762.79, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 19:09:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976064617203525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 9762.79, + "principal_before": 10000.0, + "principal_data": -237.21 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976063795955461, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 19:08:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2976060892301445, + "tenant_member_id": 2969257129938053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976063168841477, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 19:08:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2976060712634181, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 19:05:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976060709603141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2976027395836037, + "account_data": -251.0, + "after": 776.0, + "before": 1027.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-22 18:31:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2976027321780357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 776.0, + "principal_before": 1027.0, + "principal_data": -251.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2976021943191237, + "account_data": 1000.0, + "after": 1027.0, + "before": 27.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-22 18:26:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 1027.0, + "principal_before": 27.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2975938563360581, + "account_data": -119.63, + "after": 380.37, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 17:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975938502002821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 380.37, + "principal_before": 500.0, + "principal_data": -119.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2975809436125125, + "account_data": -5366.88, + "after": 4838.16, + "before": 10205.04, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 14:49:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975809351223365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 4838.16, + "principal_before": 10205.04, + "principal_data": -5366.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2975809435961285, + "account_data": -2388.0, + "after": 0.0, + "before": 2388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 14:49:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975809351223365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 2388.0, + "principal_data": -2388.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2975640111859845, + "account_data": 1888.0, + "after": 2388.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 11:57:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 2388.0, + "principal_before": 500.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2975639526232965, + "account_data": 10000.0, + "after": 10205.04, + "before": 205.04, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 11:57:05", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975639522907013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 10205.04, + "principal_before": 205.04, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2975505168438021, + "account_data": -24.0, + "after": 4094.0, + "before": 4118.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 09:40:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975505085960965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 4094.0, + "principal_before": 4118.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2975503791739845, + "account_data": -31.28, + "after": 4.09, + "before": 35.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 09:39:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975503432668037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 4.09, + "principal_before": 35.37, + "principal_data": -31.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2975503791592389, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 09:39:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975503432668037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2975096736173509, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 02:44:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065876861893, + "tenant_member_id": 2975065345119045, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2975096682450373, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-22 02:44:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065981473541, + "tenant_member_id": 2975065345119045, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2975066397791109, + "account_data": -1385.51, + "after": 1614.49, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 02:14:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975066351260549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 1614.49, + "principal_before": 3000.0, + "principal_data": -1385.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13672464552", + "id": 2975065782506437, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 02:13:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975065779901381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2975065343808325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2975065345397573, + "tenant_member_id": 2975065345119045, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 2975014830016645, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-22 01:21:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271252707077, + "tenant_member_id": 2935271033079557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 2975014710104965, + "account_data": -887.11, + "after": 112.89, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 01:21:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975014664557509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 112.89, + "principal_before": 1000.0, + "principal_data": -887.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "T", + "memberMobile": "18028579962", + "id": 2975012820226949, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 01:19:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975012817359749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2935271031129861, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2935271033390853, + "tenant_member_id": 2935271033079557, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2975008862704581, + "account_data": -668.43, + "after": 266.56, + "before": 934.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-22 01:15:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2975008780882693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 266.56, + "principal_before": 934.99, + "principal_data": -668.43 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13316256117", + "id": 2974878369289093, + "account_data": -64.0, + "after": 0.0, + "before": 64.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 23:02:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974878323249989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2968940592547269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2968940594202053, + "tenant_member_id": 2968940593907141, + "principal_after": 0.0, + "principal_before": 64.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2974791533956549, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 21:34:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770908697477, + "tenant_member_id": 2974770547348357, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2974791477546437, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-21 21:34:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770958340933, + "tenant_member_id": 2974770547348357, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15820216447", + "id": 2974785799456645, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 21:28:38", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2974785492141957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974785493747589, + "tenant_member_id": 2974785493485445, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2974771463721925, + "account_data": -528.02, + "after": 2471.98, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 21:14:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974771310744325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770547643269, + "tenant_member_id": 2974770547348357, + "principal_after": 2471.98, + "principal_before": 3000.0, + "principal_data": -528.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "昌哥", + "memberMobile": "13798811229", + "id": 2974770847650629, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 21:13:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974770844734277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2974770545677189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974770547643269, + "tenant_member_id": 2974770547348357, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2974762163016645, + "account_data": -117.99, + "after": 2941.16, + "before": 3059.15, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 21:04:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974762102969093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2941.16, + "principal_before": 3059.15, + "principal_data": -117.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "肖先生", + "memberMobile": "15675486427", + "id": 2974758047860613, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 21:00:24", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2974756214654853, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974756216326021, + "tenant_member_id": 2974756216031109, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "18617310511", + "id": 2974757797169029, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 21:00:09", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2974755669182341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974755670771589, + "tenant_member_id": 2974755670493061, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "18718073689", + "id": 2974757570365317, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 20:59:55", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2974754558281605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974754559903621, + "tenant_member_id": 2974754559625093, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13924268527", + "id": 2974756920936325, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 20:59:15", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2974754074085253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2974754075723653, + "tenant_member_id": 2974754075445125, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2974736401044293, + "account_data": -178.5, + "after": 3931.48, + "before": 4109.98, + "card_type_id": 2793266846533445, + "create_time": "2025-11-21 20:38:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974736338342789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 3931.48, + "principal_before": 4109.98, + "principal_data": -178.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2974722729300933, + "account_data": -225.95, + "after": 829.81, + "before": 1055.76, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 20:24:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974722672268037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 829.81, + "principal_before": 1055.76, + "principal_data": -225.95 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2974652566098757, + "account_data": -45.0, + "after": 85.0, + "before": 130.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-21 19:13:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974652524942213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 85.0, + "principal_before": 130.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2974602764932037, + "account_data": -187.17, + "after": 611.45, + "before": 798.62, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 18:22:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974602697380805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 611.45, + "principal_before": 798.62, + "principal_data": -187.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2974507498459973, + "account_data": -138.99, + "after": 934.99, + "before": 1073.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 16:45:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974507366847365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 934.99, + "principal_before": 1073.98, + "principal_data": -138.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2974488517743557, + "account_data": -16.0, + "after": 514.08, + "before": 530.08, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 16:26:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974488481567685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 514.08, + "principal_before": 530.08, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2974487553430405, + "account_data": -205.34, + "after": 530.08, + "before": 735.42, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 16:25:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974487440560965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 530.08, + "principal_before": 735.42, + "principal_data": -205.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2974475006497605, + "account_data": -5.0, + "after": 798.62, + "before": 803.62, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 16:12:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974474970420165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 798.62, + "principal_before": 803.62, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2974183369772485, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-21 11:15:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2974179323368197, + "account_data": 3000.0, + "after": 3059.15, + "before": 59.15, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 11:11:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2974179320681221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 3059.15, + "principal_before": 59.15, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2973953209652101, + "account_data": -1586.55, + "after": 308.63, + "before": 1895.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 07:21:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973953155863365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 308.63, + "principal_before": 1895.18, + "principal_data": -1586.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2973875636343685, + "account_data": -1391.8, + "after": 8978.26, + "before": 10370.06, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 06:02:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973875491279685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8978.26, + "principal_before": 10370.06, + "principal_data": -1391.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973608357628037, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-21 01:30:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973597455782853, + "account_data": -202.97, + "after": 164.66, + "before": 367.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 01:19:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973597405369093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 164.66, + "principal_before": 367.63, + "principal_data": -202.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973597251654469, + "account_data": -632.37, + "after": 367.63, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 01:19:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973597185905541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 367.63, + "principal_before": 1000.0, + "principal_data": -632.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973596881015621, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 01:19:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973596878050117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973596588036997, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 01:18:54", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973596582482821, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2973596399227781, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 01:18:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973596396589957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2973561705223045, + "account_data": -736.39, + "after": 1073.98, + "before": 1810.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-21 00:43:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973561631183749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1073.98, + "principal_before": 1810.37, + "principal_data": -736.39 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2973516144055045, + "account_data": -155.0, + "after": 3195.0, + "before": 3350.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 23:57:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973516095525829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3195.0, + "principal_before": 3350.0, + "principal_data": -155.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2973487596947717, + "account_data": -5.0, + "after": 50.46, + "before": 55.46, + "card_type_id": 2793266846533445, + "create_time": "2025-11-20 23:28:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973487544895685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 50.46, + "principal_before": 55.46, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "牛先生", + "memberMobile": "15201265159", + "id": 2973479954155397, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 23:20:16", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2973479574538117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973479576110981, + "tenant_member_id": 2973479575832453, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18684668238", + "id": 2973464360880325, + "account_data": -416.17, + "after": 497.83, + "before": 914.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 23:04:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973464263116997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212915558149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220108068613, + "tenant_member_id": 2799212917131013, + "principal_after": 497.83, + "principal_before": 914.0, + "principal_data": -416.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2973461587167493, + "account_data": -8.0, + "after": 3832.98, + "before": 3840.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 23:01:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973461512177925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 3832.98, + "principal_before": 3840.98, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2973437502654661, + "account_data": -29.0, + "after": 5736.0, + "before": 5765.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 22:37:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973437448177925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216549955333, + "tenant_member_id": 2799207229441797, + "principal_after": 5736.0, + "principal_before": 5765.0, + "principal_data": -29.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2973436654012613, + "account_data": -84.02, + "after": 0.0, + "before": 84.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 22:36:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973436289599749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216556492549, + "tenant_member_id": 2799207229441797, + "principal_after": 0.0, + "principal_before": 84.02, + "principal_data": -84.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2973410897447173, + "account_data": -20.0, + "after": 3840.98, + "before": 3860.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 22:10:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973410845755781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 3840.98, + "principal_before": 3860.98, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2973380276013317, + "account_data": -48.0, + "after": 563.47, + "before": 611.47, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 21:38:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973380233333061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 563.47, + "principal_before": 611.47, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2973362188011909, + "account_data": -4.0, + "after": 35.37, + "before": 39.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 21:20:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973362136336581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 35.37, + "principal_before": 39.37, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2973361499031813, + "account_data": -20.0, + "after": 39.37, + "before": 59.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 21:19:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973361439934661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 39.37, + "principal_before": 59.37, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2973360212101509, + "account_data": -38.0, + "after": 130.0, + "before": 168.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 21:18:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973360095234373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 130.0, + "principal_before": 168.0, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2973329438509381, + "account_data": -38.0, + "after": 1810.37, + "before": 1848.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 20:47:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973329384065349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1810.37, + "principal_before": 1848.37, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2973323249649925, + "account_data": -3739.16, + "after": 7469.61, + "before": 11208.77, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 20:40:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973323104635077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7469.61, + "principal_before": 11208.77, + "principal_data": -3739.16 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2973323249502469, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-20 20:40:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973323104635077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18302299763", + "id": 2973231579220037, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 19:07:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2973199974385541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2973199976089477, + "tenant_member_id": 2973199975761797, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2973229831604421, + "account_data": -32.0, + "after": 168.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 19:05:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973229688752453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 168.0, + "principal_before": 200.0, + "principal_data": -32.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2973218022983877, + "account_data": -8.0, + "after": 803.62, + "before": 811.62, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 18:53:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2973217972046213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 803.62, + "principal_before": 811.62, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2972941550308421, + "account_data": -110.31, + "after": 477.26, + "before": 587.57, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 14:12:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972941427495557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 477.26, + "principal_before": 587.57, + "principal_data": -110.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2972433894935173, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-20 05:36:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2972352944802885, + "account_data": -169.0, + "after": 631.0, + "before": 800.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 04:13:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972352854543493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2965088556746437, + "tenant_member_id": 2846153189592005, + "principal_after": 631.0, + "principal_before": 800.0, + "principal_data": -169.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2972348717616261, + "account_data": -514.19, + "after": 3860.98, + "before": 4375.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 04:09:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972348636580741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 3860.98, + "principal_before": 4375.17, + "principal_data": -514.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2972320625118085, + "account_data": 5000.0, + "after": 11208.77, + "before": 6208.77, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 03:40:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972320622480261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 11208.77, + "principal_before": 6208.77, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2972263800638597, + "account_data": -146.67, + "after": 0.0, + "before": 146.67, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 02:43:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972263560483461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 146.67, + "principal_data": -146.67 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2972262255889285, + "account_data": -167.0, + "after": 7233.0, + "before": 7400.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-20 02:41:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972262180293765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 7233.0, + "principal_before": 7400.0, + "principal_data": -167.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2972261588061061, + "account_data": -526.37, + "after": 10370.06, + "before": 10896.43, + "card_type_id": 2793249295533893, + "create_time": "2025-11-20 02:40:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972261465541701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10370.06, + "principal_before": 10896.43, + "principal_data": -526.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2972261587929989, + "account_data": -245.8, + "after": 0.0, + "before": 245.8, + "card_type_id": 2793266846533445, + "create_time": "2025-11-20 02:40:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972261465541701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 245.8, + "principal_data": -245.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2972092253328005, + "account_data": -1898.29, + "after": 1101.71, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 23:48:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972092165870213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 1101.71, + "principal_before": 3000.0, + "principal_data": -1898.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2972092253196933, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 23:48:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972092165870213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037629840517, + "tenant_member_id": 2972037072081541, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2972091862504069, + "account_data": -570.0, + "after": 187.46, + "before": 757.46, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 23:48:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972091803126661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 187.46, + "principal_before": 757.46, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2972049626450501, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 23:05:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037629840517, + "tenant_member_id": 2972037072081541, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15999970021", + "id": 2972037542449797, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 22:52:58", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972037539189381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2972037070803589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2972037072343685, + "tenant_member_id": 2972037072081541, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2972031552656005, + "account_data": -367.51, + "after": 0.0, + "before": 367.51, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 22:46:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972031322164101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 367.51, + "principal_data": -367.51 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 2972018332044421, + "account_data": -53.0, + "after": 366.61, + "before": 419.61, + "card_type_id": 2791990152417157, + "create_time": "2025-11-19 22:33:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972018292444293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 366.61, + "principal_before": 419.61, + "principal_data": -53.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2972000973671301, + "account_data": -82.0, + "after": 5765.0, + "before": 5847.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-19 22:15:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2972000912149637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216549955333, + "tenant_member_id": 2799207229441797, + "principal_after": 5765.0, + "principal_before": 5847.0, + "principal_data": -82.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2972000070701701, + "account_data": -81.47, + "after": 84.02, + "before": 165.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 22:14:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971999942953861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216556492549, + "tenant_member_id": 2799207229441797, + "principal_after": 84.02, + "principal_before": 165.49, + "principal_data": -81.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2971959933717381, + "account_data": -371.32, + "after": 4109.98, + "before": 4481.3, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 21:34:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971959801451141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4109.98, + "principal_before": 4481.3, + "principal_data": -371.32 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2971912661781061, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 20:45:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2971903026957445, + "account_data": -170.27, + "after": 829.73, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 20:36:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971902988323973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 829.73, + "principal_before": 1000.0, + "principal_data": -170.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2971902679995013, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 20:35:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971902677291653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2971851217588869, + "account_data": -8.0, + "after": 1895.18, + "before": 1903.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 19:43:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971851169993349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1895.18, + "principal_before": 1903.18, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "余先生", + "memberMobile": "13727176029", + "id": 2971830480094917, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-19 19:22:20", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2971830155937477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2971830157772485, + "tenant_member_id": 2971830157477573, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2971821974096773, + "account_data": -165.19, + "after": 1848.37, + "before": 2013.56, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 19:13:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971821887720581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1848.37, + "principal_before": 2013.56, + "principal_data": -165.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2971821973965701, + "account_data": -277.72, + "after": 0.0, + "before": 277.72, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 19:13:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971821887720581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 277.72, + "principal_data": -277.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2971821763383941, + "account_data": -222.28, + "after": 277.72, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 19:13:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971821659262021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 277.72, + "principal_before": 500.0, + "principal_data": -222.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2971819894049925, + "account_data": -64.0, + "after": 811.62, + "before": 875.62, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 19:11:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971819830332485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 811.62, + "principal_before": 875.62, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18520321125", + "id": 2971798055178885, + "account_data": -60.0, + "after": 140.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-19 18:49:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971798007729221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970386002150981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970386005919301, + "tenant_member_id": 2970386005050949, + "principal_after": 140.0, + "principal_before": 200.0, + "principal_data": -60.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13316256117", + "id": 2971787409919045, + "account_data": -136.0, + "after": 64.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-19 18:38:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971787367666309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2968940592547269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2968940594202053, + "tenant_member_id": 2968940593907141, + "principal_after": 64.0, + "principal_before": 200.0, + "principal_data": -136.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971125981383301, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 07:25:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971125564902533, + "account_data": -6151.56, + "after": 205.04, + "before": 6356.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 07:25:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971125461945221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 205.04, + "principal_before": 6356.6, + "principal_data": -6151.56 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971125564771461, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 07:25:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971125461945221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971123958565765, + "account_data": 5482.04, + "after": 6356.6, + "before": 874.56, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 07:23:37", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971116158208901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6356.6, + "principal_before": 874.56, + "principal_data": 5482.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971123958434693, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 07:23:37", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971116158208901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971116226219141, + "account_data": -5482.04, + "after": 874.56, + "before": 6356.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 07:15:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971116158208901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 874.56, + "principal_before": 6356.6, + "principal_data": -5482.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971116226071685, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 07:15:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971116158208901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2971114468789317, + "account_data": 5000.0, + "after": 6356.6, + "before": 1356.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 07:13:58", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971114465922117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6356.6, + "principal_before": 1356.6, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2971092276021893, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 06:51:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818227314724613, + "tenant_member_id": 2799207328155397, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2971016950582341, + "account_data": -1642.2, + "after": 245.8, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 05:34:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971016766966661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 245.8, + "principal_before": 1888.0, + "principal_data": -1642.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2971007676583109, + "account_data": -2859.82, + "after": 140.18, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 05:25:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971007528438853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 140.18, + "principal_before": 3000.0, + "principal_data": -2859.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2971007256120197, + "account_data": 2055.42, + "after": 3000.0, + "before": 944.58, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 05:24:54", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971001662262149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 3000.0, + "principal_before": 944.58, + "principal_data": 2055.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2971001789516933, + "account_data": -2055.42, + "after": 944.58, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 05:19:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971001662262149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 944.58, + "principal_before": 3000.0, + "principal_data": -2055.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2971000775756677, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 05:18:19", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2971000773249925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2970996411665541, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 05:13:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970995609176965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2970996411501701, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 05:13:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970995609176965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2970979014642245, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 04:56:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2970966602747077, + "account_data": 10000.0, + "after": 10896.43, + "before": 896.43, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 04:43:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970966600027333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10896.43, + "principal_before": 896.43, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2970852084943749, + "account_data": 669.52, + "after": 6208.77, + "before": 5539.25, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 02:47:03", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970851490581701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6208.77, + "principal_before": 5539.25, + "principal_data": 669.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2970851929263173, + "account_data": -669.52, + "after": 5539.25, + "before": 6208.77, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 02:46:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970851490581701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5539.25, + "principal_before": 6208.77, + "principal_data": -669.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2970843217054341, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 02:38:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2970842559843397, + "account_data": -1470.65, + "after": 2013.56, + "before": 3484.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 02:37:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970842481282245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2013.56, + "principal_before": 3484.21, + "principal_data": -1470.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2970841520671621, + "account_data": 3000.0, + "after": 3484.21, + "before": 484.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 02:36:18", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970841516526469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3484.21, + "principal_before": 484.21, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2970806530427461, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-19 02:00:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668479384453, + "tenant_member_id": 2970668087594181, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2970729384791109, + "account_data": -242.18, + "after": 367.51, + "before": 609.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-19 00:42:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970729337080709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 367.51, + "principal_before": 609.69, + "principal_data": -242.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13427574343", + "id": 2970668403182789, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 23:40:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970668399725765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2970668086299845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970668087872709, + "tenant_member_id": 2970668087594181, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2970622220848325, + "account_data": -106.43, + "after": 609.69, + "before": 716.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 22:53:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970622169730181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 609.69, + "principal_before": 716.12, + "principal_data": -106.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2970533610425221, + "account_data": -184.97, + "after": 1903.18, + "before": 2088.15, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 21:23:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970533544053829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1903.18, + "principal_before": 2088.15, + "principal_data": -184.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2970517823867973, + "account_data": -8.0, + "after": 484.21, + "before": 492.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 21:07:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970517764803781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 484.21, + "principal_before": 492.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2970477296798917, + "account_data": -570.0, + "after": 492.21, + "before": 1062.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 20:25:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970477233228869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 492.21, + "principal_before": 1062.21, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2970418265246853, + "account_data": -8.0, + "after": 4375.17, + "before": 4383.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 19:25:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970418157374341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 4375.17, + "principal_before": 4383.17, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2970404543040581, + "account_data": -36.0, + "after": 27.0, + "before": 63.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-18 19:11:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970404493642949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 27.0, + "principal_before": 63.0, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18520321125", + "id": 2970386352834117, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-18 18:53:17", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2970386002150981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2970386005919301, + "tenant_member_id": 2970386005050949, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2970362943179845, + "account_data": -279.82, + "after": 875.62, + "before": 1155.44, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 18:29:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970362892356485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 875.62, + "principal_before": 1155.44, + "principal_data": -279.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2970358633122949, + "account_data": -178.82, + "after": 146.67, + "before": 325.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 18:25:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970358573436037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 146.67, + "principal_before": 325.49, + "principal_data": -178.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2970358632975493, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-18 18:25:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970358573436037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2970099172428869, + "account_data": -88.55, + "after": 587.57, + "before": 676.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 14:01:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2970099022515333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 587.57, + "principal_before": 676.12, + "principal_data": -88.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2969473143753285, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-18 03:24:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2969416943160517, + "account_data": -6557.92, + "after": 1356.6, + "before": 7914.52, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 02:27:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969416781466821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1356.6, + "principal_before": 7914.52, + "principal_data": -6557.92 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2969416201489477, + "account_data": 5000.0, + "after": 7914.52, + "before": 2914.52, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 02:26:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969416198360133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 7914.52, + "principal_before": 2914.52, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2969353769356485, + "account_data": -408.78, + "after": 716.12, + "before": 1124.9, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 01:22:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969353710062469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 716.12, + "principal_before": 1124.9, + "principal_data": -408.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2969342729505925, + "account_data": -8.0, + "after": 4383.17, + "before": 4391.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 01:11:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969342510435398, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 4383.17, + "principal_before": 4391.17, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2969330849057861, + "account_data": -252.0, + "after": 4391.17, + "before": 4643.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-18 00:59:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969330769562757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 4391.17, + "principal_before": 4643.17, + "principal_data": -252.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2969330848910405, + "account_data": -318.0, + "after": 0.0, + "before": 318.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-18 00:59:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969330769562757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 0.0, + "principal_before": 318.0, + "principal_data": -318.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2969264167684741, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-17 23:51:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257428700293, + "tenant_member_id": 2969257129938053, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2969257843837829, + "account_data": -674.51, + "after": 325.49, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 23:45:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969257795964037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 325.49, + "principal_before": 1000.0, + "principal_data": -674.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小燕", + "memberMobile": "17802081334", + "id": 2969257326070853, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 23:44:47", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969257323105349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2644610908900421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2969257130232965, + "tenant_member_id": 2969257129938053, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2969250528267333, + "account_data": -57.6, + "after": 2605.41, + "before": 2663.01, + "card_type_id": 2793266846533445, + "create_time": "2025-11-17 23:37:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969250461224005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 2605.41, + "principal_before": 2663.01, + "principal_data": -57.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2969184202558597, + "account_data": -68.4, + "after": 819.57, + "before": 887.97, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 22:30:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969184145558405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 819.57, + "principal_before": 887.97, + "principal_data": -68.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2969182514170757, + "account_data": -155.1, + "after": 1124.9, + "before": 1280.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 22:28:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969182463691909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1124.9, + "principal_before": 1280.0, + "principal_data": -155.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2969135167851397, + "account_data": -109.15, + "after": 887.97, + "before": 997.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 21:40:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969135100578885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 887.97, + "principal_before": 997.12, + "principal_data": -109.15 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2969108114672837, + "account_data": -518.7, + "after": 4481.3, + "before": 5000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-17 21:13:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969107974114373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4481.3, + "principal_before": 5000.0, + "principal_data": -518.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15360603185", + "id": 2969019549010821, + "account_data": -84.3, + "after": 0.0, + "before": 84.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 19:42:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2969019287948485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2939339800955397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2939339802626565, + "tenant_member_id": 2939339802315269, + "principal_after": 0.0, + "principal_before": 84.3, + "principal_data": -84.3 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2968977053142149, + "account_data": -570.0, + "after": 318.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-17 18:59:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2968976991079557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 318.0, + "principal_before": 888.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13316256117", + "id": 2968942319143557, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-17 18:24:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2968940592547269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2968940594202053, + "tenant_member_id": 2968940593907141, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2967899982940101, + "account_data": -164.06, + "after": 1280.0, + "before": 1444.06, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 00:44:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967899929593541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1280.0, + "principal_before": 1444.06, + "principal_data": -164.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2967866257016773, + "account_data": -261.08, + "after": 2914.52, + "before": 3175.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 00:09:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967866167772933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 2914.52, + "principal_before": 3175.6, + "principal_data": -261.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2967864060577733, + "account_data": -502.53, + "after": 1062.21, + "before": 1564.74, + "card_type_id": 2793249295533893, + "create_time": "2025-11-17 00:07:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967863947495109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1062.21, + "principal_before": 1564.74, + "principal_data": -502.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2967816406830277, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-16 23:19:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2967772844918533, + "account_data": -120.0, + "after": 59.15, + "before": 179.15, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 22:34:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967772782151429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 59.15, + "principal_before": 179.15, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2967708240709317, + "account_data": -8.0, + "after": 2088.15, + "before": 2096.15, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 21:28:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967708198143941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2088.15, + "principal_before": 2096.15, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "19197038219", + "id": 2967603231214405, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-16 19:42:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2967557409476037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2967557411868101, + "tenant_member_id": 2967557411589573, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2967463584171973, + "account_data": -254.27, + "after": 1155.44, + "before": 1409.71, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 17:20:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967463505741765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1155.44, + "principal_before": 1409.71, + "principal_data": -254.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2967449117001477, + "account_data": -118.55, + "after": 179.15, + "before": 297.7, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 17:05:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967449073796805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 179.15, + "principal_before": 297.7, + "principal_data": -118.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2967385825167045, + "account_data": -190.0, + "after": 55.46, + "before": 245.46, + "card_type_id": 2793266846533445, + "create_time": "2025-11-16 16:01:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967385780340485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 55.46, + "principal_before": 245.46, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2967353283561157, + "account_data": -5.0, + "after": 997.12, + "before": 1002.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 15:27:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967353192990469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 997.12, + "principal_before": 1002.12, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2967043094104005, + "account_data": -2039.77, + "after": 2096.15, + "before": 4135.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 10:12:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967043050768069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2096.15, + "principal_before": 4135.92, + "principal_data": -2039.77 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2967043093956549, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-16 10:12:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967043050768069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2967042891697349, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-16 10:12:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2967042298922885, + "account_data": 3000.0, + "after": 4135.92, + "before": 1135.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 10:11:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2967042296235909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 4135.92, + "principal_before": 1135.92, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966602994173701, + "account_data": -3282.6, + "after": 6208.77, + "before": 9491.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 02:44:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966602850272965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6208.77, + "principal_before": 9491.37, + "principal_data": -3282.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966590978738053, + "account_data": -203.53, + "after": 1444.06, + "before": 1647.59, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 02:32:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966590902273989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1444.06, + "principal_before": 1647.59, + "principal_data": -203.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2966582294497157, + "account_data": -2729.89, + "after": 896.43, + "before": 3626.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 02:23:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966582205417413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 896.43, + "principal_before": 3626.32, + "principal_data": -2729.89 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "尤", + "memberMobile": "15915866234", + "id": 2966581518928709, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-16 02:22:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2966381618761157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2966381621185989, + "tenant_member_id": 2966381620874693, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2966581453868229, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-16 02:22:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "严先生", + "memberMobile": "13352889019", + "id": 2966581376945349, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-16 02:22:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2966453463403973, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2966453465615813, + "tenant_member_id": 2966453465337285, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2966579279595269, + "account_data": -591.27, + "after": 1564.74, + "before": 2156.01, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 02:20:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966579161810821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1564.74, + "principal_before": 2156.01, + "principal_data": -591.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966501039851461, + "account_data": -318.64, + "after": 1647.59, + "before": 1966.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 01:00:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966500986996421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1647.59, + "principal_before": 1966.23, + "principal_data": -318.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2966452922140550, + "account_data": -940.63, + "after": 59.37, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 00:12:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966452850198277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 59.37, + "principal_before": 1000.0, + "principal_data": -940.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2966452588545925, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-16 00:11:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966452584695685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "19927670195", + "id": 2966369663044421, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-15 22:47:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2966362984713669, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2966362986630597, + "tenant_member_id": 2966362986335685, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966362711279493, + "account_data": -395.55, + "after": 1966.23, + "before": 2361.78, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 22:40:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966362553960133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1966.23, + "principal_before": 2361.78, + "principal_data": -395.55 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966334269802245, + "account_data": -27.0, + "after": 63.0, + "before": 90.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 22:11:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966334175348677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 63.0, + "principal_before": 90.0, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2966326372534213, + "account_data": -8.0, + "after": 1135.92, + "before": 1143.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 22:03:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966326323496837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1135.92, + "principal_before": 1143.92, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966285027559365, + "account_data": -48.0, + "after": 90.0, + "before": 138.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 21:21:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966284953274117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 90.0, + "principal_before": 138.0, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966255373158085, + "account_data": -100.0, + "after": 138.0, + "before": 238.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 20:51:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966255245707141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 138.0, + "principal_before": 238.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966237141272325, + "account_data": -5.0, + "after": 238.0, + "before": 243.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 20:32:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966237034432453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 238.0, + "principal_before": 243.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966221117556677, + "account_data": -12.0, + "after": 243.0, + "before": 255.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 20:16:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966221067798277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 243.0, + "principal_before": 255.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966194639996678, + "account_data": -36.0, + "after": 255.0, + "before": 291.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 19:49:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966194578212741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 255.0, + "principal_before": 291.0, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2966177510049669, + "account_data": -26.0, + "after": 3626.32, + "before": 3652.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 19:31:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966177430521541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3626.32, + "principal_before": 3652.32, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "18277409368", + "id": 2966175194631365, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-15 19:29:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2966172494302661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2966172496350661, + "tenant_member_id": 2966172496072133, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966159984658118, + "account_data": -101.27, + "after": 2361.78, + "before": 2463.05, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 19:14:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966159959672773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2361.78, + "principal_before": 2463.05, + "principal_data": -101.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966159984395973, + "account_data": -10.65, + "after": 0.0, + "before": 10.65, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 19:14:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966159959672773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 10.65, + "principal_data": -10.65 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966159984232133, + "account_data": -47.22, + "after": 95.78, + "before": 143.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-15 19:14:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966159959672773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 95.78, + "principal_before": 143.0, + "principal_data": -47.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2966102796781445, + "account_data": -99.16, + "after": 10.65, + "before": 109.81, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 18:15:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966102741042885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 10.65, + "principal_before": 109.81, + "principal_data": -99.16 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966060994135813, + "account_data": -20.0, + "after": 291.0, + "before": 311.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 17:33:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966060941821829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 291.0, + "principal_before": 311.0, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2966048431015685, + "account_data": -20.0, + "after": 9491.37, + "before": 9511.37, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 17:20:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2966048320112517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9491.37, + "principal_before": 9511.37, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2965973250606789, + "account_data": -116.0, + "after": 297.7, + "before": 413.7, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 16:04:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965973208385285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 297.7, + "principal_before": 413.7, + "principal_data": -116.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965766336513989, + "account_data": -3153.86, + "after": 9511.37, + "before": 12665.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 12:33:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965766228838149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9511.37, + "principal_before": 12665.23, + "principal_data": -3153.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965766336382917, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 12:33:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965766228838149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965762263582469, + "account_data": -12.0, + "after": 311.0, + "before": 323.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 12:29:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965762199816133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 311.0, + "principal_before": 323.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965760211240901, + "account_data": -1150.0, + "after": 323.0, + "before": 1473.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 12:27:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965760143656709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 323.0, + "principal_before": 1473.0, + "principal_data": -1150.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965759965956933, + "account_data": 1000.0, + "after": 1473.0, + "before": 473.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-15 12:27:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 1473.0, + "principal_before": 473.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965450456009925, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 07:12:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2965449919154053, + "account_data": 10000.0, + "after": 12665.23, + "before": 2665.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 07:11:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965449916401541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 12665.23, + "principal_before": 2665.23, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2965407846057733, + "account_data": -90.0, + "after": 2156.01, + "before": 2246.01, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 06:28:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965407772051397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2156.01, + "principal_before": 2246.01, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2965336896964485, + "account_data": -1074.92, + "after": 3652.32, + "before": 4727.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 05:16:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965336743626501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 3652.32, + "principal_before": 4727.24, + "principal_data": -1074.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965207504357061, + "account_data": -10.0, + "after": 109.81, + "before": 119.81, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 03:05:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965207459186565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 109.81, + "principal_before": 119.81, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2965198449477317, + "account_data": -20.22, + "after": 2246.01, + "before": 2266.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 02:55:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965198338066309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2246.01, + "principal_before": 2266.23, + "principal_data": -20.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965185902905093, + "account_data": -225.78, + "after": 119.81, + "before": 345.59, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 02:43:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965185849657285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 119.81, + "principal_before": 345.59, + "principal_data": -225.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965184264750789, + "account_data": -154.41, + "after": 345.59, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 02:41:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965184210175877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 345.59, + "principal_before": 500.0, + "principal_data": -154.41 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2965103631420229, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 01:19:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2965103576370373, + "account_data": 800.0, + "after": 800.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-15 01:19:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2965088556746437, + "tenant_member_id": 2846153189592005, + "principal_after": 800.0, + "principal_before": 0.0, + "principal_data": 800.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965103513520965, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-15 01:19:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965098967173061, + "account_data": -5.0, + "after": 2463.05, + "before": 2468.05, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 01:14:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965098921592517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2463.05, + "principal_before": 2468.05, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965095761479429, + "account_data": -658.75, + "after": 2468.05, + "before": 3126.8, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 01:11:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965095699367877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2468.05, + "principal_before": 3126.8, + "principal_data": -658.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2965095232259973, + "account_data": 3000.0, + "after": 3126.8, + "before": 126.8, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 01:10:53", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965095228901253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3126.8, + "principal_before": 126.8, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2965088106416005, + "account_data": -380.0, + "after": 4643.17, + "before": 5023.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 01:03:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965088051594949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 4643.17, + "principal_before": 5023.17, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2965087691818949, + "account_data": 5000.0, + "after": 5023.17, + "before": 23.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-15 01:03:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2965087688984517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 5023.17, + "principal_before": 23.17, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2964990437246917, + "account_data": -96.0, + "after": 413.7, + "before": 509.7, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 23:24:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964990389602181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 413.7, + "principal_before": 509.7, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2964900085827461, + "account_data": -174.22, + "after": 126.8, + "before": 301.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 21:52:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964900031186821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 126.8, + "principal_before": 301.02, + "principal_data": -174.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2964869998446469, + "account_data": -2242.54, + "after": 757.46, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 21:21:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964869922211525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 757.46, + "principal_before": 3000.0, + "principal_data": -2242.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2964869998299013, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 21:21:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964869922211525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2964869649320773, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 21:21:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2964868530898629, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 21:20:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964868528244421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2964739041167109, + "account_data": -5.0, + "after": 1143.92, + "before": 1148.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 19:08:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964739019851525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1143.92, + "principal_before": 1148.92, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2964694031091141, + "account_data": -164.9, + "after": 676.12, + "before": 841.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 18:22:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964693930460613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 676.12, + "principal_before": 841.02, + "principal_data": -164.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2964693797652037, + "account_data": 206.16, + "after": 841.02, + "before": 634.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 18:22:31", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964693377943045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 841.02, + "principal_before": 634.86, + "principal_data": 206.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2964693494154693, + "account_data": -206.16, + "after": 634.86, + "before": 841.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 18:22:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964693377943045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 634.86, + "principal_before": 841.02, + "principal_data": -206.16 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13602790168", + "id": 2964586939944133, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-14 16:33:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2964541605891525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2964541607611845, + "tenant_member_id": 2964541607316933, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2964115280334533, + "account_data": -7880.03, + "after": 3175.6, + "before": 11055.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 08:34:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964115212390213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 3175.6, + "principal_before": 11055.63, + "principal_data": -7880.03 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2964115280187077, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 08:34:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964115212390213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2964114787371845, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 08:33:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2964114492870277, + "account_data": 10000.0, + "after": 11055.63, + "before": 1055.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 08:33:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964114489937541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 11055.63, + "principal_before": 1055.63, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964018175987461, + "account_data": -5.0, + "after": 10377.73, + "before": 10382.73, + "card_type_id": 2791990152417157, + "create_time": "2025-11-14 06:55:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964017880420101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 10377.73, + "principal_before": 10382.73, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2964008817741573, + "account_data": 4.06, + "after": 1779.0, + "before": 1774.94, + "card_type_id": 2791990152417157, + "create_time": "2025-11-14 06:45:43", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964008566312709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217255859973, + "tenant_member_id": 2799207599212293, + "principal_after": 1779.0, + "principal_before": 1774.94, + "principal_data": 4.06 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2964008613236357, + "account_data": -4.06, + "after": 1774.94, + "before": 1779.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-14 06:45:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964008566312709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217255859973, + "tenant_member_id": 2799207599212293, + "principal_after": 1774.94, + "principal_before": 1779.0, + "principal_data": -4.06 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964007085559493, + "account_data": -584.0, + "after": 10382.73, + "before": 10966.73, + "card_type_id": 2791990152417157, + "create_time": "2025-11-14 06:43:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964006934040389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 10382.73, + "principal_before": 10966.73, + "principal_data": -584.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964004324200197, + "account_data": -2512.46, + "after": 2665.23, + "before": 5177.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 06:41:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964004208168581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2665.23, + "principal_before": 5177.69, + "principal_data": -2512.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964004324052741, + "account_data": -1388.0, + "after": 0.0, + "before": 1388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 06:41:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2964004208168581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1388.0, + "principal_data": -1388.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964001002655365, + "account_data": 3012.46, + "after": 5177.69, + "before": 2165.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 06:37:46", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963852203085573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5177.69, + "principal_before": 2165.23, + "principal_data": 3012.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2964001002507909, + "account_data": 888.0, + "after": 1388.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 06:37:46", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963852203085573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1388.0, + "principal_before": 500.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2963925445053637, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 05:20:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2963852278238853, + "account_data": -3012.46, + "after": 2165.23, + "before": 5177.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 04:06:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963852203085573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2165.23, + "principal_before": 5177.69, + "principal_data": -3012.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2963852278107781, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 04:06:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963852203085573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2963851953884933, + "account_data": 3000.0, + "after": 5177.69, + "before": 2177.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 04:06:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963851950952197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5177.69, + "principal_before": 2177.69, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2963805095792261, + "account_data": -317.43, + "after": 2266.23, + "before": 2583.66, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 03:18:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963805017230981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2266.23, + "principal_before": 2583.66, + "principal_data": -317.43 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2963780992012101, + "account_data": -90.0, + "after": 10.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-14 02:53:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963780871818949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 10.0, + "principal_before": 100.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2963773647244933, + "account_data": -552.39, + "after": 4727.24, + "before": 5279.63, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 02:46:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963773582053125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 4727.24, + "principal_before": 5279.63, + "principal_data": -552.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2963639180152453, + "account_data": -96.21, + "after": 301.02, + "before": 397.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-14 00:29:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963639098052357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 301.02, + "principal_before": 397.23, + "principal_data": -96.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2963389860777605, + "account_data": -170.63, + "after": 1055.76, + "before": 1226.39, + "card_type_id": 2793249295533893, + "create_time": "2025-11-13 20:16:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963389817409157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1055.76, + "principal_before": 1226.39, + "principal_data": -170.63 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13682854528", + "id": 2963357582855365, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-13 19:43:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2963357030157765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963357031960005, + "tenant_member_id": 2963357031615941, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13416136362", + "id": 2963284845251397, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-13 18:29:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2963282690624965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963282692246981, + "tenant_member_id": 2963282691968453, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2963232429231749, + "account_data": -126.26, + "after": 2583.66, + "before": 2709.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-13 17:35:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963232374067013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2583.66, + "principal_before": 2709.92, + "principal_data": -126.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2963232429084293, + "account_data": -253.74, + "after": 0.0, + "before": 253.74, + "card_type_id": 2793266846533445, + "create_time": "2025-11-13 17:35:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963232374067013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 253.74, + "principal_data": -253.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "都先生", + "memberMobile": "13811127796", + "id": 2963193228529349, + "account_data": -269.64, + "after": 44.36, + "before": 314.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-13 16:56:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2963193151999813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963080729562565, + "tenant_member_id": 2963080729267653, + "principal_after": 44.36, + "principal_before": 314.0, + "principal_data": -269.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "都先生", + "memberMobile": "13811127796", + "id": 2963081927642565, + "account_data": 314.0, + "after": 314.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-13 15:02:50", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2963080729562565, + "tenant_member_id": 2963080729267653, + "principal_after": 314.0, + "principal_before": 0.0, + "principal_data": 314.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2962320037055813, + "account_data": -31.25, + "after": 1055.63, + "before": 1086.88, + "card_type_id": 2793249295533893, + "create_time": "2025-11-13 02:07:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962319910948165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1055.63, + "principal_before": 1086.88, + "principal_data": -31.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2962320036908357, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-13 02:07:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962319910948165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2962245250862405, + "account_data": -246.26, + "after": 253.74, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-13 00:51:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962245165518149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 253.74, + "principal_before": 500.0, + "principal_data": -246.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2962151218990213, + "account_data": -190.0, + "after": 1148.92, + "before": 1338.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 23:16:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962151189138373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1148.92, + "principal_before": 1338.92, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2962150784994629, + "account_data": -90.6, + "after": 509.7, + "before": 600.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 23:15:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962150745787333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 509.7, + "principal_before": 600.3, + "principal_data": -90.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2962104369499525, + "account_data": -52.0, + "after": 3.32, + "before": 55.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 22:28:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962104301456325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 3.32, + "principal_before": 55.32, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2962096446950341, + "account_data": -164.42, + "after": 397.23, + "before": 561.65, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 22:20:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2962096377482373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 397.23, + "principal_before": 561.65, + "principal_data": -164.42 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2961837659704133, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-12 17:57:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2961837596035909, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-12 17:57:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2961815202418053, + "account_data": -380.0, + "after": 2709.92, + "before": 3089.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 17:34:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2961815145745541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 2709.92, + "principal_before": 3089.92, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2961676990826566, + "account_data": 3000.0, + "after": 3089.92, + "before": 89.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 15:13:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2961676988205125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 3089.92, + "principal_before": 89.92, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2961214124248901, + "account_data": -7497.22, + "after": 1086.88, + "before": 8584.1, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 07:22:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2961214006234629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1086.88, + "principal_before": 8584.1, + "principal_data": -7497.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2961214124117829, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-12 07:22:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2961214006234629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2961213587722053, + "account_data": 5000.0, + "after": 8584.1, + "before": 3584.1, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 07:22:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2961213584674629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 8584.1, + "principal_before": 3584.1, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2960783605403141, + "account_data": -323.68, + "after": 561.65, + "before": 885.33, + "card_type_id": 2793249295533893, + "create_time": "2025-11-12 00:04:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960783539670853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 561.65, + "principal_before": 885.33, + "principal_data": -323.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2960766343417349, + "account_data": -269.19, + "after": 0.0, + "before": 269.19, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 23:47:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960765400370885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 0.0, + "principal_before": 269.19, + "principal_data": -269.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2960755160321733, + "account_data": -594.55, + "after": 1338.92, + "before": 1933.47, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 23:35:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960755115790149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1338.92, + "principal_before": 1933.47, + "principal_data": -594.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2960693279575941, + "account_data": -96.0, + "after": 600.3, + "before": 696.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 22:32:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960693225819973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 600.3, + "principal_before": 696.3, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2960643920449221, + "account_data": -5.0, + "after": 885.33, + "before": 890.33, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 21:42:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960643875770181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 885.33, + "principal_before": 890.33, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2960498227646277, + "account_data": -5.0, + "after": 1933.47, + "before": 1938.47, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 19:14:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960498202709509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1933.47, + "principal_before": 1938.47, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2960483558133445, + "account_data": -202.62, + "after": 0.0, + "before": 202.62, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 18:59:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960483334410117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 202.62, + "principal_data": -202.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2960430700498821, + "account_data": -12.82, + "after": 0.0, + "before": 12.82, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 18:05:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960430286393221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 0.0, + "principal_before": 12.82, + "principal_data": -12.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2960321272975045, + "account_data": -6.0, + "after": 1002.12, + "before": 1008.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 16:14:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960321222872901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1002.12, + "principal_before": 1008.12, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2960303114850117, + "account_data": -190.0, + "after": 89.92, + "before": 279.92, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 15:56:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960303064141317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 89.92, + "principal_before": 279.92, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2960290592870213, + "account_data": -18.0, + "after": 473.0, + "before": 491.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-11 15:43:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2960290531233669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 473.0, + "principal_before": 491.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2959739451819525, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-11 06:22:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2959717531373061, + "account_data": -6415.9, + "after": 3584.1, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 06:00:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959717317971653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 3584.1, + "principal_before": 10000.0, + "principal_data": -6415.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2959716883681093, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 05:59:44", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959716881125189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2959473058074501, + "account_data": -797.38, + "after": 202.62, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 01:51:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959472996634117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 202.62, + "principal_before": 1000.0, + "principal_data": -797.38 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2959473057927045, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-11 01:51:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959472996634117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2959472671753733, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-11 01:51:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2959472074542917, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 01:50:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959472071495493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2959394310540997, + "account_data": -15.0, + "after": 23.17, + "before": 38.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 00:31:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959394237386437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 23.17, + "principal_before": 38.17, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2959393965756293, + "account_data": -109.67, + "after": 890.33, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 00:31:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959393894731589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 890.33, + "principal_before": 1000.0, + "principal_data": -109.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2959393965608837, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-11 00:31:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959393894731589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2959393504249349, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-11 00:30:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2959393039584965, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-11 00:30:19", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959393036783301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2959348515442181, + "account_data": -148.24, + "after": 279.92, + "before": 428.16, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 23:45:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959348468485829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 279.92, + "principal_before": 428.16, + "principal_data": -148.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2959283567988549, + "account_data": -537.96, + "after": 1226.39, + "before": 1764.35, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 22:38:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959283515805509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1226.39, + "principal_before": 1764.35, + "principal_data": -537.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2959086659456901, + "account_data": -114.54, + "after": 1764.35, + "before": 1878.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 19:18:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959086621232645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1764.35, + "principal_before": 1878.89, + "principal_data": -114.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2959034505170757, + "account_data": -190.0, + "after": 1938.47, + "before": 2128.47, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 18:25:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959034458361349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1938.47, + "principal_before": 2128.47, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2959033456054149, + "account_data": 515.32, + "after": 888.0, + "before": 372.68, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 18:24:31", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959033071947269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 372.68, + "principal_data": 515.32 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2959033158848197, + "account_data": -515.32, + "after": 372.68, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 18:24:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959033071947269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 372.68, + "principal_before": 888.0, + "principal_data": -515.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2959028684066693, + "account_data": -6.0, + "after": 12.82, + "before": 18.82, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 18:19:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2959028645170693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 12.82, + "principal_before": 18.82, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2958764070161925, + "account_data": -38.0, + "after": 1794.84, + "before": 1832.84, + "card_type_id": 2791990152417157, + "create_time": "2025-11-10 13:50:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958763916594885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2913393474192965, + "tenant_member_id": 2860039721438277, + "principal_after": 1794.84, + "principal_before": 1832.84, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2958763323526981, + "account_data": -37.42, + "after": 252.87, + "before": 290.29, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 13:49:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958763248094917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 252.87, + "principal_before": 290.29, + "principal_data": -37.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2958292317343237, + "account_data": -1321.64, + "after": 5279.63, + "before": 6601.27, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 05:50:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958292213174085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 5279.63, + "principal_before": 6601.27, + "principal_data": -1321.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2958117273849349, + "account_data": -910.0, + "after": 0.0, + "before": 910.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 02:52:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958117237984965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945299653003205, + "tenant_member_id": 2945299652708293, + "principal_after": 0.0, + "principal_before": 910.0, + "principal_data": -910.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2958117273701893, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 02:52:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958117237984965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945300519405509, + "tenant_member_id": 2945299652708293, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2958091327786885, + "account_data": -874.85, + "after": 2128.47, + "before": 3003.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 02:26:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958091271376709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2128.47, + "principal_before": 3003.32, + "principal_data": -874.85 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2958091327639429, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 02:26:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958091271376709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2958091226074437, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 02:26:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2958090418130821, + "account_data": 3000.0, + "after": 3003.32, + "before": 3.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 02:25:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2958090415067013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3003.32, + "principal_before": 3.32, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2957977020485509, + "account_data": -11609.24, + "after": 0.0, + "before": 11609.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 00:29:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957976912760517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 11609.24, + "principal_data": -11609.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2957977020321669, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 00:29:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957976912760517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2957970581770117, + "account_data": -178.59, + "after": 0.0, + "before": 178.59, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 00:23:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957970270490501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 178.59, + "principal_data": -178.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2957962227944645, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-10 00:14:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2957961585266501, + "account_data": 10000.0, + "after": 11609.24, + "before": 1609.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-10 00:14:10", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957961582415685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 11609.24, + "principal_before": 1609.24, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2957881605869253, + "account_data": -120.0, + "after": 696.3, + "before": 816.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 22:52:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957881518788421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 696.3, + "principal_before": 816.3, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2957821969387205, + "account_data": -144.0, + "after": 6601.27, + "before": 6745.27, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 21:52:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957821893512709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6601.27, + "principal_before": 6745.27, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2957814218313541, + "account_data": -114.61, + "after": 178.59, + "before": 293.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 21:44:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957813956382533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 178.59, + "principal_before": 293.2, + "principal_data": -114.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2957799362285445, + "account_data": -1194.0, + "after": 0.0, + "before": 1194.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 21:29:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957798751063941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 1194.0, + "principal_data": -1194.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2957788164099589, + "account_data": -41.0, + "after": 491.0, + "before": 532.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-09 21:17:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957788102250373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 491.0, + "principal_before": 532.0, + "principal_data": -41.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2957785618632197, + "account_data": -199.1, + "after": 1878.89, + "before": 2077.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 21:15:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957785566891909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1878.89, + "principal_before": 2077.99, + "principal_data": -199.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2957766036278981, + "account_data": -240.51, + "after": 572.7, + "before": 813.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 20:55:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957765945708229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 572.7, + "principal_before": 813.21, + "principal_data": -240.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2957747803377477, + "account_data": -206.82, + "after": 18.82, + "before": 225.64, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 20:36:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957747570364229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 18.82, + "principal_before": 225.64, + "principal_data": -206.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2957675844718277, + "account_data": -188.78, + "after": 293.2, + "before": 481.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 19:23:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957675763060549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 293.2, + "principal_before": 481.98, + "principal_data": -188.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2957620513558213, + "account_data": -223.67, + "after": 6745.27, + "before": 6968.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 18:27:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957620447858501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6745.27, + "principal_before": 6968.94, + "principal_data": -223.67 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2957609439547269, + "account_data": -18.0, + "after": 420.0, + "before": 438.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-09 18:15:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957609374306181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 420.0, + "principal_before": 438.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2957593923276613, + "account_data": -152.31, + "after": 225.64, + "before": 377.95, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 18:00:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957593881104261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 225.64, + "principal_before": 377.95, + "principal_data": -152.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2957574047715013, + "account_data": -26.0, + "after": 1194.0, + "before": 1220.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 17:39:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957573883727557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1194.0, + "principal_before": 1220.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2957537442238341, + "account_data": -120.0, + "after": 816.3, + "before": 936.3, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 17:02:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957537402621637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 816.3, + "principal_before": 936.3, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2957118298034053, + "account_data": -60.25, + "after": 377.95, + "before": 438.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 09:56:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2957118235872773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 377.95, + "principal_before": 438.2, + "principal_data": -60.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956993835650885, + "account_data": -25.0, + "after": 438.2, + "before": 463.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 07:49:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956993782451909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 438.2, + "principal_before": 463.2, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956992541822469, + "account_data": -5188.29, + "after": 463.2, + "before": 5651.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 07:48:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956992441831301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 463.2, + "principal_before": 5651.49, + "principal_data": -5188.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956992541675013, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-09 07:48:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956992441831301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2956902693440837, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-09 06:17:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2956758174027461, + "account_data": -925.47, + "after": 74.77, + "before": 1000.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 03:49:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956758091485061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 74.77, + "principal_before": 1000.24, + "principal_data": -925.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2956757483868037, + "account_data": 1000.0, + "after": 1000.24, + "before": 0.24, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 03:49:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956757480820613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 1000.24, + "principal_before": 0.24, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956723126553925, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-09 03:14:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956721498295813, + "account_data": 3000.0, + "after": 5651.49, + "before": 2651.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 03:12:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956721495543301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 5651.49, + "principal_before": 2651.49, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2956703599955653, + "account_data": -1780.0, + "after": 1220.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 02:54:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956703564369733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1220.0, + "principal_before": 3000.0, + "principal_data": -1780.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2956703599824581, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-09 02:54:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956703564369733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2956702919036101, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-09 02:53:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2956701450800645, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-09 02:52:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956701447835141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2956421758471877, + "account_data": -10.0, + "after": 38.17, + "before": 48.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 22:07:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956421718937477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 38.17, + "principal_before": 48.17, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2956338848222725, + "account_data": -303.46, + "after": 813.21, + "before": 1116.67, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 20:43:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956338719280965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 813.21, + "principal_before": 1116.67, + "principal_data": -303.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2956312864722629, + "account_data": -190.0, + "after": 3.32, + "before": 193.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 20:17:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956312720870917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3.32, + "principal_before": 193.32, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2956286376136517, + "account_data": -102.96, + "after": 0.0, + "before": 102.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 19:50:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956286152249029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 102.96, + "principal_data": -102.96 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2956286375972677, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 19:50:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956286152249029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2956148647907205, + "account_data": -106.72, + "after": 936.3, + "before": 1043.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 17:29:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956148597607941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 936.3, + "principal_before": 1043.02, + "principal_data": -106.72 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2956030797940933, + "account_data": -30.0, + "after": 2651.49, + "before": 2681.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 15:30:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2956030751705221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 2651.49, + "principal_before": 2681.49, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2955470460112325, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 06:00:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2955465904556165, + "account_data": -7123.25, + "after": 2177.69, + "before": 9300.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 05:55:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955465802696965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2177.69, + "principal_before": 9300.94, + "principal_data": -7123.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2955465904408709, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 05:55:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955465802696965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2955465504311493, + "account_data": 5000.0, + "after": 9300.94, + "before": 4300.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 05:55:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955465501214917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9300.94, + "principal_before": 4300.94, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2955374830602501, + "account_data": -903.63, + "after": 6968.94, + "before": 7872.57, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 04:22:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955374539376901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 6968.94, + "principal_before": 7872.57, + "principal_data": -903.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955298566768773, + "account_data": -22.0, + "after": 481.98, + "before": 503.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 03:05:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955298502134021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 481.98, + "principal_before": 503.98, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2955235204204805, + "account_data": -73.56, + "after": 428.16, + "before": 501.72, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 02:00:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955235109734469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 428.16, + "principal_before": 501.72, + "principal_data": -73.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955229829007429, + "account_data": -1188.0, + "after": 2681.49, + "before": 3869.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 01:55:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955229754755141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 2681.49, + "principal_before": 3869.49, + "principal_data": -1188.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955229113305221, + "account_data": -152.71, + "after": 3869.49, + "before": 4022.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 01:54:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955229077145797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 3869.49, + "principal_before": 4022.2, + "principal_data": -152.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955208440154181, + "account_data": -977.8, + "after": 4022.2, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 01:33:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955208362444933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 4022.2, + "principal_before": 5000.0, + "principal_data": -977.8 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955208440006725, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 01:33:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955208362444933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955206461820293, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 01:31:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955206162843781, + "tenant_member_id": 2955204541320325, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18620043391", + "id": 2955205279648005, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 01:30:18", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955205277092101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2955204540009605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2955204541615237, + "tenant_member_id": 2955204541320325, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955202805877893, + "account_data": -888.0, + "after": 100.0, + "before": 988.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 01:27:47", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 100.0, + "principal_before": 988.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955202296023173, + "account_data": -5000.0, + "after": 102.96, + "before": 5102.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 01:27:16", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955202288371845, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 102.96, + "principal_before": 5102.96, + "principal_data": -5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955185695558789, + "account_data": -1888.0, + "after": 988.0, + "before": 2876.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 01:10:23", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 988.0, + "principal_before": 2876.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955171788933253, + "account_data": -10000.0, + "after": 5102.96, + "before": 15102.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:56:14", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955171778824325, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 5102.96, + "principal_before": 15102.96, + "principal_data": -10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955171401025605, + "account_data": 1865.8, + "after": 2876.0, + "before": 1010.2, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 00:55:50", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955158744107077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 2876.0, + "principal_before": 1010.2, + "principal_data": 1865.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955165434104005, + "account_data": -32.0, + "after": 503.98, + "before": 535.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:49:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955165339699397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 503.98, + "principal_before": 535.98, + "principal_data": -32.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955158948563013, + "account_data": -1865.8, + "after": 1010.2, + "before": 2876.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 00:43:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955158744107077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 1010.2, + "principal_before": 2876.0, + "principal_data": -1865.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2955157339769029, + "account_data": -650.83, + "after": 0.55, + "before": 651.38, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:41:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955157251377413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 0.55, + "principal_before": 651.38, + "principal_data": -650.83 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2955157339621573, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 00:41:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955157251377413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955153845538181, + "account_data": 1888.0, + "after": 2876.0, + "before": 988.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-08 00:37:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 2876.0, + "principal_before": 988.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955153381574725, + "account_data": 10000.0, + "after": 15102.96, + "before": 5102.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:37:30", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955153378510917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 15102.96, + "principal_before": 5102.96, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2955137659128005, + "account_data": -292.28, + "after": 611.47, + "before": 903.75, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:21:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955137585678533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 611.47, + "principal_before": 903.75, + "principal_data": -292.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955128374282309, + "account_data": -5.0, + "after": 535.98, + "before": 540.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:12:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955128353540229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 535.98, + "principal_before": 540.98, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955117766658309, + "account_data": -8.0, + "after": 540.98, + "before": 548.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-08 00:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955117746997445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 540.98, + "principal_before": 548.98, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955115304945925, + "account_data": -5.0, + "after": 548.98, + "before": 553.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 23:58:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955115285858373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 548.98, + "principal_before": 553.98, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955101132408901, + "account_data": -593.88, + "after": 553.98, + "before": 1147.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 23:44:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955101052192965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 553.98, + "principal_before": 1147.86, + "principal_data": -593.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955101132245061, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 23:44:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955101052192965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955100829470149, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 23:44:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2955100361066757, + "account_data": 1000.0, + "after": 1147.86, + "before": 147.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 23:43:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955100358478085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1147.86, + "principal_before": 147.86, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2955080002898053, + "account_data": -96.0, + "after": 1043.02, + "before": 1139.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 23:22:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955079964674245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1043.02, + "principal_before": 1139.02, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955079324077509, + "account_data": 888.0, + "after": 988.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 23:22:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 988.0, + "principal_before": 100.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2955078220597445, + "account_data": 5000.0, + "after": 5102.96, + "before": 102.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 23:21:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955078217844933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 5102.96, + "principal_before": 102.96, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15360603185", + "id": 2955047735380101, + "account_data": -117.24, + "after": 84.3, + "before": 201.54, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 22:50:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955047660423301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2939339800955397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2939339802626565, + "tenant_member_id": 2939339802315269, + "principal_after": 84.3, + "principal_before": 201.54, + "principal_data": -117.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "方先生", + "memberMobile": "15360603185", + "id": 2955047735216261, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 22:50:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955047660423301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2939339800955397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2939340099193989, + "tenant_member_id": 2939339802315269, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2955043181414661, + "account_data": -760.0, + "after": 48.17, + "before": 808.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 22:45:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955043026847877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 48.17, + "principal_before": 808.17, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2955000877746245, + "account_data": -372.03, + "after": 2126.14, + "before": 2498.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 22:02:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2955000730454085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 2126.14, + "principal_before": 2498.17, + "principal_data": -372.03 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2954937895323717, + "account_data": -4751.64, + "after": 1609.24, + "before": 6360.88, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 20:58:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2954937563646022, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1609.24, + "principal_before": 6360.88, + "principal_data": -4751.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2954937895159877, + "account_data": -988.0, + "after": 0.0, + "before": 988.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 20:58:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2954937563646022, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 988.0, + "principal_data": -988.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2954931076466949, + "account_data": -249.74, + "after": 1116.67, + "before": 1366.41, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 20:51:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2954931031427333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1116.67, + "principal_before": 1366.41, + "principal_data": -249.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2954878600105413, + "account_data": 888.0, + "after": 988.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 19:57:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 988.0, + "principal_before": 100.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2954877834086597, + "account_data": 5000.0, + "after": 6360.88, + "before": 1360.88, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 19:57:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2954877830662341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 6360.88, + "principal_before": 1360.88, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周总", + "memberMobile": "13922409767", + "id": 2954638608615173, + "account_data": -540.0, + "after": 1.0, + "before": 541.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 15:53:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2954638291338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209816131333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217572300549, + "tenant_member_id": 2799209817212677, + "principal_after": 1.0, + "principal_before": 541.0, + "principal_data": -540.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2953959019990405, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-07 04:22:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2953952254297797, + "account_data": -2348.62, + "after": 651.38, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 04:15:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953952039225093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 651.38, + "principal_before": 3000.0, + "principal_data": -2348.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2953951076370117, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-07 04:14:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953951073797829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2953710289241925, + "account_data": -62.0, + "after": 3350.0, + "before": 3412.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-07 00:09:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953710209418949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3350.0, + "principal_before": 3412.0, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953674661971589, + "account_data": -31.0, + "after": 532.0, + "before": 563.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 23:33:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953674586179205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 532.0, + "principal_before": 563.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953628712797829, + "account_data": -31.0, + "after": 563.0, + "before": 594.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 22:46:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953628636874501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 563.0, + "principal_before": 594.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2953618763220741, + "account_data": -24.0, + "after": 808.17, + "before": 832.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 22:36:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953618722965253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 808.17, + "principal_before": 832.17, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2953611882710853, + "account_data": -23.0, + "after": 193.32, + "before": 216.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 22:29:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953611862263493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 193.32, + "principal_before": 216.32, + "principal_data": -23.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2953610649765573, + "account_data": -8.87, + "after": 0.0, + "before": 8.87, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 22:28:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953610407659205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 8.87, + "principal_data": -8.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2953610649601733, + "account_data": -54.57, + "after": 0.0, + "before": 54.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 22:28:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953610407659205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 54.57, + "principal_data": -54.57 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953605432231557, + "account_data": -27.0, + "after": 594.0, + "before": 621.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 22:22:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953605352294213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 594.0, + "principal_before": 621.0, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2953584708978501, + "account_data": -779.48, + "after": 903.75, + "before": 1683.23, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 22:01:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953584615671557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 903.75, + "principal_before": 1683.23, + "principal_data": -779.48 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953583297037957, + "account_data": -30.0, + "after": 621.0, + "before": 651.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 22:00:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953583212201605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 621.0, + "principal_before": 651.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953484762875653, + "account_data": -30.0, + "after": 651.0, + "before": 681.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 20:20:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953484656265029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 651.0, + "principal_before": 681.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2953399876323077, + "account_data": -36.0, + "after": 681.0, + "before": 717.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-06 18:53:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953399804004037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 681.0, + "principal_before": 717.0, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2953348723033925, + "account_data": -8.0, + "after": 501.72, + "before": 509.72, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 18:01:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953348659431237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 501.72, + "principal_before": 509.72, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2953328437741189, + "account_data": -1716.55, + "after": 1366.41, + "before": 3082.96, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 17:41:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953328337012485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1366.41, + "principal_before": 3082.96, + "principal_data": -1716.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2953328437593733, + "account_data": -348.59, + "after": 0.0, + "before": 348.59, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 17:41:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953328337012485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 348.59, + "principal_data": -348.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2953311283840773, + "account_data": -8.0, + "after": 54.57, + "before": 62.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 17:23:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953311244158597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 54.57, + "principal_before": 62.57, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2953292441749317, + "account_data": -10.0, + "after": 62.57, + "before": 72.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 17:04:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2953292369725189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 62.57, + "principal_before": 72.57, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2952614831540037, + "account_data": -2086.94, + "after": 269.19, + "before": 2356.13, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 05:35:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952614563661445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 269.19, + "principal_before": 2356.13, + "principal_data": -2086.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2952416675923781, + "account_data": -300.43, + "after": 72.57, + "before": 373.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 02:13:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952416564594309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 72.57, + "principal_before": 373.0, + "principal_data": -300.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2952359992313541, + "account_data": -758.65, + "after": 0.0, + "before": 758.65, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 01:15:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952359349061253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 758.65, + "principal_data": -758.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2952302721910405, + "account_data": -12.0, + "after": 147.86, + "before": 159.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 00:17:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952302691075845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 147.86, + "principal_before": 159.86, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2952301956941637, + "account_data": -5.0, + "after": 159.86, + "before": 164.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 00:16:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952301915162245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 159.86, + "principal_before": 164.86, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2952300755355269, + "account_data": -10.0, + "after": 164.86, + "before": 174.86, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 00:15:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952300709971781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 164.86, + "principal_before": 174.86, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2952296885766597, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-06 00:11:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2952293445551877, + "account_data": -957.73, + "after": 102.96, + "before": 1060.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 00:08:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952293382162053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 102.96, + "principal_before": 1060.69, + "principal_data": -957.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2952293094295173, + "account_data": 1000.0, + "after": 1060.69, + "before": 60.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-06 00:07:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952293091821189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 1060.69, + "principal_before": 60.69, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2952185155749637, + "account_data": -45.0, + "after": 373.0, + "before": 418.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 22:18:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952185135498949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 373.0, + "principal_before": 418.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2952147907479173, + "account_data": -172.02, + "after": 174.86, + "before": 346.88, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 21:40:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952147853608645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 174.86, + "principal_before": 346.88, + "principal_data": -172.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2952128181470917, + "account_data": -398.74, + "after": 348.59, + "before": 747.33, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 21:20:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952127993366277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 348.59, + "principal_before": 747.33, + "principal_data": -398.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2952119252387653, + "account_data": -435.95, + "after": 509.72, + "before": 945.67, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 21:11:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952119175743173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 509.72, + "principal_before": 945.67, + "principal_data": -435.95 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2952103823541893, + "account_data": -5.0, + "after": 438.0, + "before": 443.0, + "card_type_id": 2794699703437125, + "create_time": "2025-11-05 20:55:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952103774226245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 438.0, + "principal_before": 443.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2952058224789189, + "account_data": -23.0, + "after": 418.0, + "before": 441.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 20:08:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952058166068997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 418.0, + "principal_before": 441.0, + "principal_data": -23.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2952054710421317, + "account_data": -8.0, + "after": 441.0, + "before": 449.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 20:05:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952054688745285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 441.0, + "principal_before": 449.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2952043521427205, + "account_data": -104.6, + "after": 346.88, + "before": 451.48, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 19:54:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952043468326533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 346.88, + "principal_before": 451.48, + "principal_data": -104.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2952009352120069, + "account_data": -6.0, + "after": 449.0, + "before": 455.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 19:19:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2952009337046725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 449.0, + "principal_before": 455.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2951994630915717, + "account_data": -144.04, + "after": 451.48, + "before": 595.52, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 19:04:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951994582140613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 451.48, + "principal_before": 595.52, + "principal_data": -144.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2951954227873541, + "account_data": -45.0, + "after": 455.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 18:23:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951954161698437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 455.0, + "principal_before": 500.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2951953271769541, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 18:22:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2951952277603973, + "account_data": -2991.13, + "after": 8.87, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 18:21:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951952232072901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 8.87, + "principal_before": 3000.0, + "principal_data": -2991.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2951951834007301, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 18:20:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951951831107333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2951875846555333, + "account_data": -31.0, + "after": 11269.0, + "before": 11300.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-05 17:03:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951875773171461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11269.0, + "principal_before": 11300.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2951875263579781, + "account_data": -34.04, + "after": 10.94, + "before": 44.98, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 17:02:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951875056322309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 10.94, + "principal_before": 44.98, + "principal_data": -34.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2951809079199365, + "account_data": -5.0, + "after": 245.46, + "before": 250.46, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 15:55:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951808935544517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 245.46, + "principal_before": 250.46, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2951094445508613, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-05 03:48:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2951082624092357, + "account_data": 3000.0, + "after": 4300.94, + "before": 1300.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 03:36:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951082620324037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4300.94, + "principal_before": 1300.94, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2951010696136837, + "account_data": -55.87, + "after": 595.52, + "before": 651.39, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 02:23:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2951010675526085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 595.52, + "principal_before": 651.39, + "principal_data": -55.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2950988341069957, + "account_data": -70.17, + "after": 945.67, + "before": 1015.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 02:00:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950988243880069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 945.67, + "principal_before": 1015.84, + "principal_data": -70.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2950985921743045, + "account_data": -61.59, + "after": 651.39, + "before": 712.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 01:58:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950985871788485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 651.39, + "principal_before": 712.98, + "principal_data": -61.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2950946885159365, + "account_data": -250.24, + "after": 758.65, + "before": 1008.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 01:18:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950946810366149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 758.65, + "principal_before": 1008.89, + "principal_data": -250.24 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2950885488969861, + "account_data": -70.0, + "after": 1822.0, + "before": 1892.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-05 00:15:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950885438769349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217202251525, + "tenant_member_id": 2799207378798341, + "principal_after": 1822.0, + "principal_before": 1892.0, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2950884772415749, + "account_data": -295.14, + "after": 60.69, + "before": 355.83, + "card_type_id": 2793249295533893, + "create_time": "2025-11-05 00:15:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950884594026629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 60.69, + "principal_before": 355.83, + "principal_data": -295.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2950752789104901, + "account_data": -10.0, + "after": 832.17, + "before": 842.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 22:01:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950752765168069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 832.17, + "principal_before": 842.17, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2950708615449029, + "account_data": -303.11, + "after": 747.33, + "before": 1050.44, + "card_type_id": 2793266846533445, + "create_time": "2025-11-04 21:16:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950708458473925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 747.33, + "principal_before": 1050.44, + "principal_data": -303.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2950700216797317, + "account_data": -349.87, + "after": 712.98, + "before": 1062.85, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 21:07:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950700119083461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 712.98, + "principal_before": 1062.85, + "principal_data": -349.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2950698058402245, + "account_data": -15.0, + "after": 842.17, + "before": 857.17, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 21:05:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950698023372933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 842.17, + "principal_before": 857.17, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2950664779696261, + "account_data": -45.0, + "after": 216.32, + "before": 261.32, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 20:31:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950664742914181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 216.32, + "principal_before": 261.32, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2950476986566853, + "account_data": -81.0, + "after": 511.0, + "before": 592.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-04 17:20:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950476924668101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 511.0, + "principal_before": 592.0, + "principal_data": -81.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2950424329898437, + "account_data": -137.97, + "after": 1015.84, + "before": 1153.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 16:26:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2950424218847429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1015.84, + "principal_before": 1153.81, + "principal_data": -137.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2949644333582469, + "account_data": -145.65, + "after": 1008.89, + "before": 1154.54, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 03:13:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949644252678341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1008.89, + "principal_before": 1154.54, + "principal_data": -145.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2949635479439557, + "account_data": -46.38, + "after": 1153.81, + "before": 1200.19, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 03:04:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949635428256005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1153.81, + "principal_before": 1200.19, + "principal_data": -46.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2949573651270085, + "account_data": -96.87, + "after": 1200.19, + "before": 1297.06, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 02:01:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949573583980997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1200.19, + "principal_before": 1297.06, + "principal_data": -96.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2949532661352645, + "account_data": -227.12, + "after": 1300.94, + "before": 1528.06, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 01:19:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949532584511685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1300.94, + "principal_before": 1528.06, + "principal_data": -227.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2949518556432645, + "account_data": -106.61, + "after": 1062.85, + "before": 1169.46, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 01:05:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949518464944389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1062.85, + "principal_before": 1169.46, + "principal_data": -106.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2949496618322181, + "account_data": -345.03, + "after": 261.32, + "before": 606.35, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 00:43:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949496552425925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 261.32, + "principal_before": 606.35, + "principal_data": -345.03 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2949460510951877, + "account_data": -491.74, + "after": 1169.46, + "before": 1661.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-04 00:06:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949460437371333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1169.46, + "principal_before": 1661.2, + "principal_data": -491.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2949419493329349, + "account_data": -447.64, + "after": 606.35, + "before": 1053.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 23:24:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949419450878405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 606.35, + "principal_before": 1053.99, + "principal_data": -447.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2949398715861445, + "account_data": -12.0, + "after": 1008.12, + "before": 1020.12, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 23:03:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949398663465221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1008.12, + "principal_before": 1020.12, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2949292162418885, + "account_data": -173.17, + "after": 355.83, + "before": 529.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 21:15:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949292085364933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 355.83, + "principal_before": 529.0, + "principal_data": -173.17 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贺斌", + "memberMobile": "15017500885", + "id": 2949262884702405, + "account_data": -97.0, + "after": 0.0, + "before": 97.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-03 20:45:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949262653737221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2938229626505413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2938229629700293, + "tenant_member_id": 2938229628340421, + "principal_after": 0.0, + "principal_before": 97.0, + "principal_data": -97.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2949234833787013, + "account_data": -275.74, + "after": 1661.2, + "before": 1936.94, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 20:16:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949234774329797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1661.2, + "principal_before": 1936.94, + "principal_data": -275.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2949198152566917, + "account_data": -138.3, + "after": 1297.06, + "before": 1435.36, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 19:39:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949198073481349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1297.06, + "principal_before": 1435.36, + "principal_data": -138.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2949192647837893, + "account_data": -404.98, + "after": 0.0, + "before": 404.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 19:33:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949192255949253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 404.98, + "principal_data": -404.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2949065066318085, + "account_data": -10.0, + "after": 1435.36, + "before": 1445.36, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 17:24:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949065013840325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1435.36, + "principal_before": 1445.36, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18666009266", + "id": 2949015484664261, + "account_data": -31.0, + "after": 7910.0, + "before": 7941.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-03 16:33:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2949015429843205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207312836357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217771071237, + "tenant_member_id": 2799207313884933, + "principal_after": 7910.0, + "principal_before": 7941.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2948960654051589, + "account_data": -8.0, + "after": 404.98, + "before": 412.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 15:37:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948960613173509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 404.98, + "principal_before": 412.98, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2948859767869189, + "account_data": -40.04, + "after": 290.29, + "before": 330.33, + "card_type_id": 2793266846533445, + "create_time": "2025-11-03 13:55:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948859704397509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 290.29, + "principal_before": 330.33, + "principal_data": -40.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2948180789907205, + "account_data": -2109.89, + "after": 1528.06, + "before": 3637.95, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 02:24:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948180684623493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1528.06, + "principal_before": 3637.95, + "principal_data": -2109.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2948085449985605, + "account_data": -72.59, + "after": 1154.54, + "before": 1227.13, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 00:47:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948085012664005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1154.54, + "principal_before": 1227.13, + "principal_data": -72.59 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2948085449821765, + "account_data": -600.0, + "after": 0.0, + "before": 600.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-03 00:47:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948085012664005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 600.0, + "principal_data": -600.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2948070534532741, + "account_data": -26.0, + "after": 412.98, + "before": 438.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 00:32:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948070520344133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 412.98, + "principal_before": 438.98, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2948039591513861, + "account_data": -1394.05, + "after": 1227.13, + "before": 2621.18, + "card_type_id": 2793249295533893, + "create_time": "2025-11-03 00:00:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2948039519899397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1227.13, + "principal_before": 2621.18, + "principal_data": -1394.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2947957604847173, + "account_data": -111.49, + "after": 529.0, + "before": 640.49, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 22:37:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947957499498181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 529.0, + "principal_before": 640.49, + "principal_data": -111.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2947953573695237, + "account_data": -120.0, + "after": 1139.02, + "before": 1259.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 22:33:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947953552903749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1139.02, + "principal_before": 1259.02, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2947946876620357, + "account_data": -495.66, + "after": 2621.18, + "before": 3116.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 22:26:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947946793569861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 2621.18, + "principal_before": 3116.84, + "principal_data": -495.66 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2947941339942405, + "account_data": 500.0, + "after": 600.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 22:21:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 600.0, + "principal_before": 100.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2947940369452677, + "account_data": 3000.0, + "after": 3116.84, + "before": 116.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 22:20:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947940365815429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 3116.84, + "principal_before": 116.84, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2947938587709061, + "account_data": -49.0, + "after": 72.0, + "before": 121.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-02 22:18:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947938544242373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217500849925, + "tenant_member_id": 2799209786836741, + "principal_after": 72.0, + "principal_before": 121.0, + "principal_data": -49.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2947936676236869, + "account_data": -8.0, + "after": 0.0, + "before": 8.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 22:16:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947936464719621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219766675205, + "tenant_member_id": 2799209786836741, + "principal_after": 0.0, + "principal_before": 8.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2947893139820101, + "account_data": -196.53, + "after": 2077.99, + "before": 2274.52, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 21:32:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947893104561797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2077.99, + "principal_before": 2274.52, + "principal_data": -196.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2947888347549317, + "account_data": -570.0, + "after": 1053.99, + "before": 1623.99, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 21:27:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947888296267397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1053.99, + "principal_before": 1623.99, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2947854746439237, + "account_data": -7.81, + "after": 0.0, + "before": 7.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 20:52:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947854188908293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 7.81, + "principal_data": -7.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2947852919164549, + "account_data": -150.24, + "after": 1445.36, + "before": 1595.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 20:51:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947852851891845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1445.36, + "principal_before": 1595.6, + "principal_data": -150.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2947790334742085, + "account_data": -5.0, + "after": 7.81, + "before": 12.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 19:47:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947790262406725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 7.81, + "principal_before": 12.81, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 2947731366940293, + "account_data": -62.0, + "after": 419.61, + "before": 481.61, + "card_type_id": 2791990152417157, + "create_time": "2025-11-02 18:47:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947731340349189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 419.61, + "principal_before": 481.61, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2947686252367621, + "account_data": -606.3, + "after": 2663.01, + "before": 3269.31, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 18:01:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947686176919109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 2663.01, + "principal_before": 3269.31, + "principal_data": -606.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2947629486280389, + "account_data": -19.0, + "after": 12.81, + "before": 31.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 17:03:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947629448629829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 12.81, + "principal_before": 31.81, + "principal_data": -19.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2947628082318917, + "account_data": -114.0, + "after": 1259.02, + "before": 1373.02, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 17:02:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947628020125445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1259.02, + "principal_before": 1373.02, + "principal_data": -114.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2947505175350917, + "account_data": -8.0, + "after": 31.81, + "before": 39.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 14:57:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947505138716229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 31.81, + "principal_before": 39.81, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2947191161997253, + "account_data": -1432.21, + "after": 1623.99, + "before": 3056.2, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 09:37:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947191106685061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1623.99, + "principal_before": 3056.2, + "principal_data": -1432.21 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2947191161833413, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 09:37:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2947191106685061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946712362502085, + "account_data": -5.0, + "after": 39.81, + "before": 44.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 01:30:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946712291428293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 39.81, + "principal_before": 44.81, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946712362354629, + "account_data": -1.0, + "after": 0.0, + "before": 1.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 01:30:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946712291428293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 1.0, + "principal_data": -1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2946700146133125, + "account_data": -80.44, + "after": 640.49, + "before": 720.93, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 01:18:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946700019435461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 640.49, + "principal_before": 720.93, + "principal_data": -80.44 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2946660127262853, + "account_data": -194.12, + "after": 44.98, + "before": 239.1, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 00:37:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946660052633669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 44.98, + "principal_before": 239.1, + "principal_data": -194.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2946653715662853, + "account_data": -296.96, + "after": 720.93, + "before": 1017.89, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 00:31:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946653648832645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 720.93, + "principal_before": 1017.89, + "principal_data": -296.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2946647855744965, + "account_data": -316.28, + "after": 1683.23, + "before": 1999.51, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 00:25:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946647799482501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 1683.23, + "principal_before": 1999.51, + "principal_data": -316.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2946647855581125, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 00:25:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946647799482501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945598955374725, + "tenant_member_id": 2799207545685765, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946646540257413, + "account_data": -26.0, + "after": 1.0, + "before": 27.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 00:23:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946646487926725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 1.0, + "principal_before": 27.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2946630744427333, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-02 00:07:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2946627701852101, + "account_data": -1943.8, + "after": 3056.2, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 00:04:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946627654207557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3056.2, + "principal_before": 5000.0, + "principal_data": -1943.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2946627181627525, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 00:04:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946627178694789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2946626660321349, + "account_data": -429.5, + "after": 1936.94, + "before": 2366.44, + "card_type_id": 2793249295533893, + "create_time": "2025-11-02 00:03:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946626600634501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1936.94, + "principal_before": 2366.44, + "principal_data": -429.5 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946589987212101, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 23:26:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946589251569669, + "account_data": -883.16, + "after": 116.84, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 23:25:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946589177235525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 116.84, + "principal_before": 1000.0, + "principal_data": -883.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946587843233925, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 23:24:11", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946587840219269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2946543956969541, + "account_data": -233.22, + "after": 2.57, + "before": 235.79, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 22:39:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946543905867909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 2.57, + "principal_before": 235.79, + "principal_data": -233.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2946537024112773, + "account_data": -260.0, + "after": 438.98, + "before": 698.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 22:32:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946536979024005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 438.98, + "principal_before": 698.98, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2946469799315461, + "account_data": -161.19, + "after": 1373.02, + "before": 1534.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 21:24:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946469752620997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1373.02, + "principal_before": 1534.21, + "principal_data": -161.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2946467793618885, + "account_data": -306.06, + "after": 1050.44, + "before": 1356.5, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 21:22:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946467660236933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1050.44, + "principal_before": 1356.5, + "principal_data": -306.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946412546295941, + "account_data": -416.4, + "after": 3269.31, + "before": 3685.71, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 20:25:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946412380817349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 3269.31, + "principal_before": 3685.71, + "principal_data": -416.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2946389953677317, + "account_data": -8.0, + "after": 1595.6, + "before": 1603.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 20:02:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946389877688389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1595.6, + "principal_before": 1603.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2946287497496517, + "account_data": -8.0, + "after": 1603.6, + "before": 1611.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 18:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946287410694277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1603.6, + "principal_before": 1611.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946226856773637, + "account_data": -5.0, + "after": 27.0, + "before": 32.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:16:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946226813569029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 27.0, + "principal_before": 32.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946222556235781, + "account_data": -447.29, + "after": 3685.71, + "before": 4133.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:12:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946222439712837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 3685.71, + "principal_before": 4133.0, + "principal_data": -447.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946221352716293, + "account_data": -26.0, + "after": 32.0, + "before": 58.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:11:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946221296879557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 32.0, + "principal_before": 58.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946212603512901, + "account_data": -18.0, + "after": 58.0, + "before": 76.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:02:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946212555311109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 58.0, + "principal_before": 76.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2946148690134917, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 15:57:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945598955374725, + "tenant_member_id": 2799207545685765, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946076427979461, + "account_data": 682.0, + "after": 682.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-01 14:43:57", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946072298784837, + "tenant_member_id": 2946070922169029, + "principal_after": 682.0, + "principal_before": 0.0, + "principal_data": 682.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946072097704645, + "account_data": 4133.0, + "after": 4133.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 14:39:33", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 4133.0, + "principal_before": 0.0, + "principal_data": 4133.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2945604894541829, + "account_data": -1109.49, + "after": 1999.51, + "before": 3109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 06:44:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945604565108677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 1999.51, + "principal_before": 3109.0, + "principal_data": -1109.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2945598744348741, + "account_data": 3000.0, + "after": 3109.0, + "before": 109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 06:38:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945598741858373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 3109.0, + "principal_before": 109.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945530356942853, + "account_data": -4728.86, + "after": 3637.95, + "before": 8366.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 05:28:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945530267174853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3637.95, + "principal_before": 8366.81, + "principal_data": -4728.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945530355337221, + "account_data": -1226.57, + "after": 0.0, + "before": 1226.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 05:28:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945530267174853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1226.57, + "principal_data": -1226.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945513936848709, + "account_data": 888.0, + "after": 1226.57, + "before": 338.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 05:11:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1226.57, + "principal_before": 338.57, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945466619004997, + "account_data": 5000.0, + "after": 8366.81, + "before": 3366.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 04:23:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945466615924805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8366.81, + "principal_before": 3366.81, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2945415966165125, + "account_data": -0.69, + "after": 0.0, + "before": 0.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 03:32:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945415909034053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 0.69, + "principal_data": -0.69 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2945415966017669, + "account_data": -163.27, + "after": 4044.61, + "before": 4207.88, + "card_type_id": 2791990152417157, + "create_time": "2025-11-01 03:32:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945415909034053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 4044.61, + "principal_before": 4207.88, + "principal_data": -163.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2945412152477829, + "account_data": -145.67, + "after": 857.17, + "before": 1002.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 03:28:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945411975759941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 857.17, + "principal_before": 1002.84, + "principal_data": -145.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945366526560069, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 02:41:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945300519405509, + "tenant_member_id": 2945299652708293, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2945355732174917, + "account_data": -215.73, + "after": 1611.6, + "before": 1827.33, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 02:30:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945355592828869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1611.6, + "principal_before": 1827.33, + "principal_data": -215.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945303652304965, + "account_data": -2090.0, + "after": 910.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 01:37:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945303614408709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945299653003205, + "tenant_member_id": 2945299652708293, + "principal_after": 910.0, + "principal_before": 3000.0, + "principal_data": -2090.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945300263389189, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 01:34:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945300260718597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945299653003205, + "tenant_member_id": 2945299652708293, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生", + "memberMobile": "15588690348", + "id": 2945238235514821, + "account_data": -144.84, + "after": 13.16, + "before": 158.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:31:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945238116894661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212806997765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219904759557, + "tenant_member_id": 2799212808029957, + "principal_after": 13.16, + "principal_before": 158.0, + "principal_data": -144.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945224213809221, + "account_data": -5.0, + "after": 2366.44, + "before": 2371.44, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:17:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945224149633157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2366.44, + "principal_before": 2371.44, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945219529656389, + "account_data": -761.57, + "after": 2371.44, + "before": 3133.01, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945219455403973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2371.44, + "principal_before": 3133.01, + "principal_data": -761.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945219529508933, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945219455403973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + } + ] +} \ No newline at end of file diff --git a/tmp/output/member_balance_change_20260130_210133.json b/tmp/output/member_balance_change_20260130_210133.json new file mode 100644 index 0000000..33a2d0e --- /dev/null +++ b/tmp/output/member_balance_change_20260130_210133.json @@ -0,0 +1,82003 @@ +{ + "endpoint": "/MemberProfile/GetMemberCardBalanceChange", + "params": { + "siteId": 2790685415443269, + "startTime": "2025-07-01 00:00:00", + "endTime": "2025-11-01 23:59:59" + }, + "fetched_at": "2026-01-30T21:01:33.877166", + "total_records": 2733, + "total_pages": 15, + "data": [ + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2901310521018565, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 23:45:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2901301003636101, + "account_data": -50.0, + "after": 3206.86, + "before": 3256.86, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 23:36:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901300933856645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3206.86, + "principal_before": 3256.86, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2901255002852741, + "account_data": -18.0, + "after": 64.0, + "before": 82.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-30 22:49:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901254946327493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 64.0, + "principal_before": 82.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2901241456331973, + "account_data": -78.36, + "after": 21.64, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 22:35:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901241381325829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 21.64, + "principal_before": 100.0, + "principal_data": -78.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2901187615820741, + "account_data": -247.02, + "after": 2939.02, + "before": 3186.04, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 21:40:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901187565866181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2939.02, + "principal_before": 3186.04, + "principal_data": -247.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2901187352087941, + "account_data": 3000.0, + "after": 3186.04, + "before": 186.04, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 21:40:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901187349450117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3186.04, + "principal_before": 186.04, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2901173844495365, + "account_data": -539.44, + "after": 0.0, + "before": 539.44, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 21:26:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901173369949125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 539.44, + "principal_data": -539.44 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2901173844315141, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 21:26:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901173369949125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2901075377146821, + "account_data": -26.0, + "after": 817.0, + "before": 843.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 19:46:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901075322408133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 817.0, + "principal_before": 843.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2901036288412869, + "account_data": -113.32, + "after": 297.44, + "before": 410.76, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 19:06:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901036240194949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 297.44, + "principal_before": 410.76, + "principal_data": -113.32 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2901010390797317, + "account_data": -45.0, + "after": 843.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 18:40:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2901010279795909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 843.0, + "principal_before": 888.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2900970335866053, + "account_data": -5.0, + "after": 14.27, + "before": 19.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 17:59:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900970289384389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 14.27, + "principal_before": 19.27, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900897985072325, + "account_data": -422.49, + "after": 0.0, + "before": 422.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-30 16:46:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900896978275717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 422.49, + "principal_data": -422.49 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900897984924869, + "account_data": -79.0, + "after": 0.0, + "before": 79.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 16:46:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900896978275717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 79.0, + "principal_data": -79.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900791115893957, + "account_data": -8.0, + "after": 79.0, + "before": 87.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 14:57:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900791089286533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 79.0, + "principal_before": 87.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900669411658949, + "account_data": -7.0, + "after": 87.0, + "before": 94.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 12:53:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900669373828037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 87.0, + "principal_before": 94.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900644833086853, + "account_data": -8.0, + "after": 94.0, + "before": 102.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 12:28:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900644783901637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 94.0, + "principal_before": 102.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2900012074454213, + "account_data": -380.0, + "after": 102.0, + "before": 482.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 01:44:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2900011989339141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 102.0, + "principal_before": 482.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2899953600137413, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 00:45:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13622920687", + "id": 2899928454073349, + "account_data": -527.33, + "after": 0.0, + "before": 527.33, + "card_type_id": 2793266846533445, + "create_time": "2025-09-30 00:19:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899928364666053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2896726927952645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2896726929672965, + "tenant_member_id": 2896726929361669, + "principal_after": 0.0, + "principal_before": 527.33, + "principal_data": -527.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2899878075977093, + "account_data": -525.39, + "after": 474.61, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 23:28:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899878002412549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 474.61, + "principal_before": 1000.0, + "principal_data": -525.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2899877774363589, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 23:28:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899877771660229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2899876303801349, + "account_data": -5.0, + "after": 95.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-29 23:26:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899876206988485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 95.0, + "principal_before": 100.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈", + "memberMobile": "18026382150", + "id": 2899714895776709, + "account_data": -100.0, + "after": 138.0, + "before": 238.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-29 20:42:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899714845854725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207510443781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217033447173, + "tenant_member_id": 2799207511639813, + "principal_after": 138.0, + "principal_before": 238.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2899613108996677, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-29 18:59:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2899568506145733, + "account_data": -49.0, + "after": 748.0, + "before": 797.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-29 18:13:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899568458566405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 748.0, + "principal_before": 797.0, + "principal_data": -49.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2899568019704581, + "account_data": -227.64, + "after": 342.41, + "before": 570.05, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 18:13:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899567932787717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 342.41, + "principal_before": 570.05, + "principal_data": -227.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2899548246674373, + "account_data": -570.0, + "after": 7872.57, + "before": 8442.57, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 17:53:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899547891501829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 7872.57, + "principal_before": 8442.57, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2899541707377669, + "account_data": -5.0, + "after": 230.27, + "before": 235.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 17:46:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899541628799685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 230.27, + "principal_before": 235.27, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2899085520357829, + "account_data": -8.0, + "after": 47.0, + "before": 55.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-29 10:02:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2899085479151941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 47.0, + "principal_before": 55.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2898607860304261, + "account_data": -15.0, + "after": 539.44, + "before": 554.44, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 01:56:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898607797717445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 539.44, + "principal_before": 554.44, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2898607657224517, + "account_data": 15.0, + "after": 554.44, + "before": 539.44, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 01:56:13", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898607439104453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 554.44, + "principal_before": 539.44, + "principal_data": 15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2898607563491845, + "account_data": -15.0, + "after": 539.44, + "before": 554.44, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 01:56:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898607439104453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 539.44, + "principal_before": 554.44, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2898606860667205, + "account_data": -1594.91, + "after": 3256.86, + "before": 4851.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 01:55:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898606612236677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3256.86, + "principal_before": 4851.77, + "principal_data": -1594.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13622920687", + "id": 2898583275047365, + "account_data": -123.12, + "after": 527.33, + "before": 650.45, + "card_type_id": 2793266846533445, + "create_time": "2025-09-29 01:31:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898583214049605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2896726927952645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2896726929672965, + "tenant_member_id": 2896726929361669, + "principal_after": 527.33, + "principal_before": 650.45, + "principal_data": -123.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2898504490011077, + "account_data": -9.85, + "after": 1522.15, + "before": 1532.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 00:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898504440711557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1522.15, + "principal_before": 1532.0, + "principal_data": -9.85 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2898503616137605, + "account_data": -18.0, + "after": 461.0, + "before": 479.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-29 00:10:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898503545325893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 461.0, + "principal_before": 479.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2898497309542789, + "account_data": -445.56, + "after": 554.44, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 00:03:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898497232226693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 554.44, + "principal_before": 1000.0, + "principal_data": -445.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2898497101121925, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-29 00:03:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898497098484101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13622920687", + "id": 2898335402002885, + "account_data": -102.55, + "after": 650.45, + "before": 753.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-28 21:19:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898335339235717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2896726927952645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2896726929672965, + "tenant_member_id": 2896726929361669, + "principal_after": 650.45, + "principal_before": 753.0, + "principal_data": -102.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2898308069263685, + "account_data": -378.99, + "after": 6467.33, + "before": 6846.32, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 20:51:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898307897330117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6467.33, + "principal_before": 6846.32, + "principal_data": -378.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2898200042719621, + "account_data": -760.0, + "after": 774.97, + "before": 1534.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 19:01:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898199985949189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 774.97, + "principal_before": 1534.97, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2898114139965957, + "account_data": -217.31, + "after": 186.04, + "before": 403.35, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 17:34:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898114089453957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 186.04, + "principal_before": 403.35, + "principal_data": -217.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2898108117879301, + "account_data": 350.0, + "after": 1020.12, + "before": 670.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 17:28:04", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898108115110405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1020.12, + "principal_before": 670.12, + "principal_data": 350.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2898085203298629, + "account_data": -380.0, + "after": 8442.57, + "before": 8822.57, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 17:04:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2898085153458629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8442.57, + "principal_before": 8822.57, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2897934882376069, + "account_data": -380.0, + "after": 4851.77, + "before": 5231.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 14:31:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897934829259269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4851.77, + "principal_before": 5231.77, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2897258570402181, + "account_data": -838.24, + "after": 422.49, + "before": 1260.73, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 03:03:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897258354231685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 422.49, + "principal_before": 1260.73, + "principal_data": -838.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2897205597997573, + "account_data": -380.0, + "after": 19.27, + "before": 399.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 02:09:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897205519944133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 19.27, + "principal_before": 399.27, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2897204297189829, + "account_data": -760.0, + "after": 399.27, + "before": 1159.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 02:08:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897204229261637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 399.27, + "principal_before": 1159.27, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2897198659815365, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-28 02:02:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2897192509901253, + "account_data": -189.0, + "after": 6282.35, + "before": 6471.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-28 01:56:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897192448838149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6282.35, + "principal_before": 6471.35, + "principal_data": -189.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2897191391332869, + "account_data": -983.09, + "after": 235.27, + "before": 1218.36, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 01:55:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897191319488901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 235.27, + "principal_before": 1218.36, + "principal_data": -983.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2897191133579653, + "account_data": 1000.0, + "after": 1218.36, + "before": 218.36, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 01:55:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897191131187589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1218.36, + "principal_before": 218.36, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2897181191784965, + "account_data": -945.88, + "after": 0.0, + "before": 945.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-28 01:45:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897180864498053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 945.88, + "principal_data": -945.88 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2897064848329157, + "account_data": -5.0, + "after": 82.0, + "before": 87.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-27 23:46:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897064749549893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 82.0, + "principal_before": 87.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2897023520672133, + "account_data": -120.0, + "after": 388.31, + "before": 508.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 23:04:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897023452858757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 388.31, + "principal_before": 508.31, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2897001054915013, + "account_data": -742.24, + "after": 0.0, + "before": 742.24, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 22:41:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897000642578949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 742.24, + "principal_data": -742.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2897001054751173, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 22:41:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2897000642578949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13622920687", + "id": 2896992165119941, + "account_data": 753.0, + "after": 753.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 22:32:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2896726927952645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2896726929672965, + "tenant_member_id": 2896726929361669, + "principal_after": 753.0, + "principal_before": 0.0, + "principal_data": 753.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 2896967365904773, + "account_data": -98.0, + "after": 2742.0, + "before": 2840.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-27 22:07:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896967311837701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218217944837, + "tenant_member_id": 2799207192626949, + "principal_after": 2742.0, + "principal_before": 2840.0, + "principal_data": -98.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2896956199913925, + "account_data": -18.0, + "after": 482.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 21:56:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896956125858245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 482.0, + "principal_before": 500.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2896908112988101, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 21:07:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2896889019189766, + "account_data": -2360.1, + "after": 1260.73, + "before": 3620.83, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 20:47:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896888947689797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1260.73, + "principal_before": 3620.83, + "principal_data": -2360.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2896872638679365, + "account_data": 3000.0, + "after": 3620.83, + "before": 620.83, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 20:31:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896872636025157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 3620.83, + "principal_before": 620.83, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2896863612455429, + "account_data": -13.0, + "after": 945.88, + "before": 958.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 20:22:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896863532141061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 945.88, + "principal_before": 958.88, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2896771948677637, + "account_data": -8.0, + "after": 35.0, + "before": 43.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 18:48:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896771900623365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 35.0, + "principal_before": 43.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2896757306821125, + "account_data": -39.0, + "after": 173.0, + "before": 212.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-27 18:33:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2896757239204229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217500849925, + "tenant_member_id": 2799209786836741, + "principal_after": 173.0, + "principal_before": 212.0, + "principal_data": -39.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2895980357290501, + "account_data": -138.72, + "after": 8822.57, + "before": 8961.29, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 05:23:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895980229331333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8822.57, + "principal_before": 8961.29, + "principal_data": -138.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2895980357143045, + "account_data": -497.77, + "after": 0.0, + "before": 497.77, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 05:23:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895980229331333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 0.0, + "principal_before": 497.77, + "principal_data": -497.77 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2895854732773317, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-27 03:15:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2895817267808773, + "account_data": -919.38, + "after": 742.24, + "before": 1661.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 02:37:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895817175992709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 742.24, + "principal_before": 1661.62, + "principal_data": -919.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2895816842889541, + "account_data": 1000.0, + "after": 1661.62, + "before": 661.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 02:37:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895816840087877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1661.62, + "principal_before": 661.62, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15726865555", + "id": 2895767821076997, + "account_data": -488.0, + "after": 0.0, + "before": 488.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-27 01:47:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895767028566469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207086114565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215906440965, + "tenant_member_id": 2799207087163141, + "principal_after": 0.0, + "principal_before": 488.0, + "principal_data": -488.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2895617471613253, + "account_data": -268.0, + "after": 1159.27, + "before": 1427.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 23:14:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895617447594437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1159.27, + "principal_before": 1427.27, + "principal_data": -268.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2895617471465797, + "account_data": -112.0, + "after": 0.0, + "before": 112.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-26 23:14:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895617447594437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 112.0, + "principal_data": -112.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2895468793268741, + "account_data": -14.05, + "after": 661.62, + "before": 675.67, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 20:43:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895468704057797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 661.62, + "principal_before": 675.67, + "principal_data": -14.05 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2895468793121285, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-26 20:43:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895468704057797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2895433688729925, + "account_data": -83.49, + "after": 6846.32, + "before": 6929.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 20:07:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895433615804741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6846.32, + "principal_before": 6929.81, + "principal_data": -83.49 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2895361772472645, + "account_data": -59.0, + "after": 797.0, + "before": 856.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-26 18:54:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895361709590981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 797.0, + "principal_before": 856.0, + "principal_data": -59.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2895361115130309, + "account_data": -277.81, + "after": 570.05, + "before": 847.86, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 18:53:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895361041844677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 570.05, + "principal_before": 847.86, + "principal_data": -277.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2895344812378565, + "account_data": -215.89, + "after": 167.8, + "before": 383.69, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 18:37:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895344737814981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 167.8, + "principal_before": 383.69, + "principal_data": -215.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2895115263183301, + "account_data": -64.73, + "after": 901.7, + "before": 966.43, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 14:43:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2895115059759429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 901.7, + "principal_before": 966.43, + "principal_data": -64.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2894696925743429, + "account_data": -24.0, + "after": 516.77, + "before": 540.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 07:38:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894696770980229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 516.77, + "principal_before": 540.77, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2894351661042181, + "account_data": -8.0, + "after": 958.88, + "before": 966.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 01:46:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894351621228933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 958.88, + "principal_before": 966.88, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2894279175014725, + "account_data": -718.12, + "after": 966.88, + "before": 1685.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-26 00:33:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894279105284549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 966.88, + "principal_before": 1685.0, + "principal_data": -718.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2894193259727365, + "account_data": -106.98, + "after": 31.83, + "before": 138.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 23:05:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894193205446981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 31.83, + "principal_before": 138.81, + "principal_data": -106.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2894106826639813, + "account_data": -5.0, + "after": 620.83, + "before": 625.83, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 21:37:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894106801605125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 620.83, + "principal_before": 625.83, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2894024351926597, + "account_data": -50.0, + "after": 1685.0, + "before": 1735.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 20:13:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2894024243743045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1685.0, + "principal_before": 1735.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2893997170428293, + "account_data": -122.0, + "after": 1779.0, + "before": 1901.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-25 19:46:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893997119162885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217255859973, + "tenant_member_id": 2799207599212293, + "principal_after": 1779.0, + "principal_before": 1901.0, + "principal_data": -122.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2893996388829509, + "account_data": -166.55, + "after": 0.0, + "before": 166.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 19:45:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893996132944325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 166.55, + "principal_data": -166.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2893951901551109, + "account_data": -5.0, + "after": 1735.0, + "before": 1740.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 19:00:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893951846893957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1735.0, + "principal_before": 1740.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2893883010681157, + "account_data": -100.0, + "after": 888.0, + "before": 988.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-25 17:50:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893882954877317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 888.0, + "principal_before": 988.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2893882650330949, + "account_data": 988.0, + "after": 988.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-25 17:49:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 988.0, + "principal_before": 0.0, + "principal_data": 988.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2893871808924101, + "account_data": -5998.11, + "after": 2.64, + "before": 6000.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 17:38:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893871737194949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 2.64, + "principal_before": 6000.75, + "principal_data": -5998.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2893870613973317, + "account_data": 6000.0, + "after": 6000.75, + "before": 0.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 17:37:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893870610729286, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 6000.75, + "principal_before": 0.75, + "principal_data": 6000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2893014683158917, + "account_data": -24.0, + "after": 625.83, + "before": 649.83, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 03:06:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2893014604499397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 625.83, + "principal_before": 649.83, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2892977186539973, + "account_data": -2110.95, + "after": 5231.77, + "before": 7342.72, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 02:28:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892977074981317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5231.77, + "principal_before": 7342.72, + "principal_data": -2110.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2892899198814661, + "account_data": -5.0, + "after": 166.55, + "before": 171.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 01:09:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892899082635781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 166.55, + "principal_before": 171.55, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2892862049438149, + "account_data": -640.34, + "after": 649.83, + "before": 1290.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-25 00:31:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892861949757765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 649.83, + "principal_before": 1290.17, + "principal_data": -640.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2892645582096901, + "account_data": -18.0, + "after": 1534.97, + "before": 1552.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-24 20:51:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892645546543557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1534.97, + "principal_before": 1552.97, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2892612427647429, + "account_data": -10.0, + "after": 1290.17, + "before": 1300.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-24 20:17:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892612402285061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1290.17, + "principal_before": 1300.17, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2892538502580741, + "account_data": -18.0, + "after": 1300.17, + "before": 1318.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-24 19:02:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892538439108933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1300.17, + "principal_before": 1318.17, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2892537093278085, + "account_data": -26.0, + "after": 1318.17, + "before": 1344.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-24 19:00:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2892537024514373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1318.17, + "principal_before": 1344.17, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2891241021999557, + "account_data": -112.74, + "after": 2098.69, + "before": 2211.43, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 21:02:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891240946698565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2098.69, + "principal_before": 2211.43, + "principal_data": -112.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2891238706645317, + "account_data": -84.0, + "after": 508.31, + "before": 592.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 21:00:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891238667356613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 508.31, + "principal_before": 592.31, + "principal_data": -84.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2891225054071237, + "account_data": -28.0, + "after": 126.53, + "before": 154.53, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 20:46:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891225007475205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 126.53, + "principal_before": 154.53, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2891115768695237, + "account_data": -380.0, + "after": 171.55, + "before": 551.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 18:55:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891115712219461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 171.55, + "principal_before": 551.55, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2891111721683269, + "account_data": -4.0, + "after": 1344.17, + "before": 1348.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 18:50:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891111684393413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1344.17, + "principal_before": 1348.17, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2891057824057797, + "account_data": -72.0, + "after": 856.0, + "before": 928.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-23 17:56:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891057768876485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 856.0, + "principal_before": 928.0, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2891057201711429, + "account_data": -508.11, + "after": 847.86, + "before": 1355.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 17:55:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891057104308741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 847.86, + "principal_before": 1355.97, + "principal_data": -508.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2891000734190085, + "account_data": -8.0, + "after": 551.55, + "before": 559.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 16:58:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2891000670374277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 551.55, + "principal_before": 559.55, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2890997711063365, + "account_data": -380.0, + "after": 112.0, + "before": 492.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 16:54:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890997664532805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 112.0, + "principal_before": 492.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2890991228127621, + "account_data": -62.12, + "after": 403.35, + "before": 465.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 16:48:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890991174338885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 403.35, + "principal_before": 465.47, + "principal_data": -62.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2890072104536389, + "account_data": -5.0, + "after": 43.0, + "before": 48.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 01:13:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890072078043525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 43.0, + "principal_before": 48.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13802623964", + "id": 2890057865841157, + "account_data": -53.0, + "after": 5862.0, + "before": 5915.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-23 00:58:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890057801009541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1823736961667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216461530885, + "tenant_member_id": 2799207146407685, + "principal_after": 5862.0, + "principal_before": 5915.0, + "principal_data": -53.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2890039280044485, + "account_data": -5.0, + "after": 1740.0, + "before": 1745.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 00:40:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890039234562373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1740.0, + "principal_before": 1745.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2890035578358213, + "account_data": -1255.0, + "after": 1745.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 00:36:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890035504023877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1745.0, + "principal_before": 3000.0, + "principal_data": -1255.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2890035578177989, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 00:36:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890035504023877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2890035345491845, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 00:36:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2890034982947333, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 00:35:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890034980260357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2890024537721157, + "account_data": -634.46, + "after": 7342.72, + "before": 7977.18, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 00:25:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890024475789765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7342.72, + "principal_before": 7977.18, + "principal_data": -634.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2890024153303493, + "account_data": -2185.92, + "after": 7977.18, + "before": 10163.1, + "card_type_id": 2793249295533893, + "create_time": "2025-09-23 00:24:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890024064813381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7977.18, + "principal_before": 10163.1, + "principal_data": -2185.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2890024153106885, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 00:24:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890024064813381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2890016402868741, + "account_data": -8.0, + "after": 48.0, + "before": 56.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-23 00:16:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2890016352110981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 48.0, + "principal_before": 56.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2889997803915653, + "account_data": -380.0, + "after": 1552.97, + "before": 1932.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 23:57:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889997756418437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1552.97, + "principal_before": 1932.97, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2889961226652037, + "account_data": -773.37, + "after": 218.36, + "before": 991.73, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 23:20:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889961074002373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 218.36, + "principal_before": 991.73, + "principal_data": -773.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2889961226488197, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 23:20:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889961074002373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2889944370989509, + "account_data": -99.0, + "after": 138.81, + "before": 237.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 23:03:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889944287136197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 138.81, + "principal_before": 237.81, + "principal_data": -99.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2889932607179141, + "account_data": -8.0, + "after": 492.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 22:51:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889932555799045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 492.0, + "principal_before": 500.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2889829658364357, + "account_data": -267.69, + "after": 6929.81, + "before": 7197.5, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 21:06:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889829425039749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6929.81, + "principal_before": 7197.5, + "principal_data": -267.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2889826924939653, + "account_data": -660.0, + "after": 559.55, + "before": 1219.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 21:04:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889826869725573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 559.55, + "principal_before": 1219.55, + "principal_data": -660.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2889826924792197, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 21:04:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889826869725573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2889826681096005, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 21:03:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2889826414561669, + "account_data": 1000.0, + "after": 1219.55, + "before": 219.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 21:03:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889826412071301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1219.55, + "principal_before": 219.55, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2889787877788165, + "account_data": -20.0, + "after": 0.75, + "before": 20.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 20:24:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889787814529413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 0.75, + "principal_before": 20.75, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2889786055805381, + "account_data": -3651.83, + "after": 1348.17, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 20:22:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889785990957573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1348.17, + "principal_before": 5000.0, + "principal_data": -3651.83 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2889786055625157, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 20:22:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889785990957573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2889782060255109, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 20:18:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2889781692238277, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 20:17:59", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889781689616837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2889778481334725, + "account_data": -26.0, + "after": 20.75, + "before": 46.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 20:14:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889778443684229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 20.75, + "principal_before": 46.75, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2889742020020741, + "account_data": -15.0, + "after": 46.75, + "before": 61.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 19:37:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889741947554245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 46.75, + "principal_before": 61.75, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2889716104448325, + "account_data": -132.0, + "after": 1932.97, + "before": 2064.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 19:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889716065012229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1932.97, + "principal_before": 2064.97, + "principal_data": -132.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2889716104300869, + "account_data": -438.0, + "after": 0.0, + "before": 438.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 19:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889716065012229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 0.0, + "principal_before": 438.0, + "principal_data": -438.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2889689842813445, + "account_data": -16.0, + "after": 219.55, + "before": 235.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 18:44:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889689761532357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 219.55, + "principal_before": 235.55, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2889527346989509, + "account_data": -190.0, + "after": 497.77, + "before": 687.77, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 15:59:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2889527276849541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 497.77, + "principal_before": 687.77, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888946393089925, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 06:08:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888921876187461, + "account_data": 3000.0, + "after": 10163.1, + "before": 7163.1, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 05:43:20", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888921873582405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10163.1, + "principal_before": 7163.1, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888781091228037, + "account_data": -516.68, + "after": 687.77, + "before": 1204.45, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 03:20:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888780957436229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 687.77, + "principal_before": 1204.45, + "principal_data": -516.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2888644206020997, + "account_data": -20.0, + "after": 61.75, + "before": 81.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 01:00:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888644164897285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 61.75, + "principal_before": 81.75, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2888611383871813, + "account_data": -40.0, + "after": 438.0, + "before": 478.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-22 00:27:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888611340978629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 438.0, + "principal_before": 478.0, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888601726585349, + "account_data": -12.0, + "after": 7.0, + "before": 19.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-22 00:17:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888601576425797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 7.0, + "principal_before": 19.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888600124393925, + "account_data": -476.97, + "after": 7163.1, + "before": 7640.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-22 00:16:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888600069916997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7163.1, + "principal_before": 7640.07, + "principal_data": -476.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2888545026050437, + "account_data": -90.87, + "after": 81.75, + "before": 172.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 23:19:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888544982763845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 81.75, + "principal_before": 172.62, + "principal_data": -90.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888539516454789, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 23:14:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888539337542085, + "account_data": -115.0, + "after": 6471.35, + "before": 6586.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-21 23:14:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888539288521221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6471.35, + "principal_before": 6586.35, + "principal_data": -115.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888538548390277, + "account_data": -355.98, + "after": 991.73, + "before": 1347.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 23:13:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888538482133381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 991.73, + "principal_before": 1347.71, + "principal_data": -355.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888537192073541, + "account_data": 1000.0, + "after": 1347.71, + "before": 347.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 23:12:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 2, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888537189763397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1347.71, + "principal_before": 347.71, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888536816126469, + "account_data": -1000.0, + "after": 347.71, + "before": 1347.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 23:11:38", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888536810899973, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 347.71, + "principal_before": 1347.71, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2888535970908485, + "account_data": 1000.0, + "after": 1347.71, + "before": 347.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 23:10:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888535967942981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1347.71, + "principal_before": 347.71, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2888505761188229, + "account_data": -12.0, + "after": 172.62, + "before": 184.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 22:40:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888505693342085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 172.62, + "principal_before": 184.62, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2888499534367173, + "account_data": -96.0, + "after": 592.31, + "before": 688.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 22:33:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888499490965829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 592.31, + "principal_before": 688.31, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888401727310214, + "account_data": -28.0, + "after": 1204.45, + "before": 1232.45, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 20:54:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888401665067525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1204.45, + "principal_before": 1232.45, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888383523015109, + "account_data": -8.0, + "after": 19.0, + "before": 27.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-21 20:35:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888383453399493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 19.0, + "principal_before": 27.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888311383230981, + "account_data": -5.0, + "after": 27.0, + "before": 32.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-21 19:22:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888311195273605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 27.0, + "principal_before": 32.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2888310190885253, + "account_data": -10.0, + "after": 32.0, + "before": 42.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-21 19:21:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888310111488325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 32.0, + "principal_before": 42.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2888261124737541, + "account_data": -113.84, + "after": 383.69, + "before": 497.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 18:31:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888261075094021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 383.69, + "principal_before": 497.53, + "principal_data": -113.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2888236378802565, + "account_data": -144.0, + "after": 688.31, + "before": 832.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 18:06:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888236338235717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 688.31, + "principal_before": 832.31, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2888175442807173, + "account_data": -34.0, + "after": 1427.27, + "before": 1461.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 17:04:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888175328004613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1427.27, + "principal_before": 1461.27, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈", + "memberMobile": "18026382150", + "id": 2888134176016709, + "account_data": -12.0, + "after": 238.0, + "before": 250.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-21 16:22:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888134137579973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207510443781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217033447173, + "tenant_member_id": 2799207511639813, + "principal_after": 238.0, + "principal_before": 250.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2888107802052421, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 15:55:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2888085631453509, + "account_data": -36.95, + "after": 410.76, + "before": 447.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 15:32:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888085590526405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 410.76, + "principal_before": 447.71, + "principal_data": -36.95 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888084747372933, + "account_data": -400.0, + "after": 11674.73, + "before": 12074.73, + "card_type_id": 2791990152417157, + "create_time": "2025-09-21 15:31:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888084677020101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 11674.73, + "principal_before": 12074.73, + "principal_data": -400.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888083378850309, + "account_data": -2110.74, + "after": 7640.07, + "before": 9750.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 15:30:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888083232917829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7640.07, + "principal_before": 9750.81, + "principal_data": -2110.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2888083378686469, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 15:30:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2888083232917829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2887588525033989, + "account_data": -3486.76, + "after": 1461.27, + "before": 4948.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 07:06:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887588449192325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1461.27, + "principal_before": 4948.03, + "principal_data": -3486.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2887588202220037, + "account_data": 3000.0, + "after": 4948.03, + "before": 1948.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 07:06:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887588199467525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 4948.03, + "principal_before": 1948.03, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2887482941114181, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 05:19:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2887425058802117, + "account_data": 3000.0, + "after": 9750.81, + "before": 6750.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 04:20:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887425055820229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 9750.81, + "principal_before": 6750.81, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2887406267467653, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 04:01:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2887332974905797, + "account_data": -655.55, + "after": 1232.45, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-21 02:47:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887332903045445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1232.45, + "principal_before": 1888.0, + "principal_data": -655.55 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2887260118518277, + "account_data": -71.0, + "after": 10.0, + "before": 81.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-21 01:32:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887260060617093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 10.0, + "principal_before": 81.0, + "principal_data": -71.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2887258460457349, + "account_data": -324.33, + "after": 675.67, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 01:31:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887258374720005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 675.67, + "principal_before": 1000.0, + "principal_data": -324.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2887258118342981, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 01:30:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887258115705157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2887228242938181, + "account_data": -119.91, + "after": 6750.81, + "before": 6870.72, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 01:00:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887228179483141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6750.81, + "principal_before": 6870.72, + "principal_data": -119.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2887186523130245, + "account_data": -90.0, + "after": 1948.03, + "before": 2038.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 00:18:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887186477238597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1948.03, + "principal_before": 2038.03, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2887184934160709, + "account_data": -1000.07, + "after": 0.0, + "before": 1000.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-21 00:16:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887184655239685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 1000.07, + "principal_data": -1000.07 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2887166558718277, + "account_data": -110.0, + "after": 3435.0, + "before": 3545.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-20 23:57:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887166498294213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3435.0, + "principal_before": 3545.0, + "principal_data": -110.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2887128006494661, + "account_data": -76.18, + "after": 832.31, + "before": 908.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 23:18:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887127971023301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 832.31, + "principal_before": 908.49, + "principal_data": -76.18 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2887117770705221, + "account_data": -5.0, + "after": 56.0, + "before": 61.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 23:08:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887117527009669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 56.0, + "principal_before": 61.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2887088141683077, + "account_data": -120.0, + "after": 908.49, + "before": 1028.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 22:37:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887088097987077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 908.49, + "principal_before": 1028.49, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2887081328838981, + "account_data": -255.53, + "after": 0.0, + "before": 255.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 22:31:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887081242331525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 255.53, + "principal_data": -255.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2887010643593605, + "account_data": -300.95, + "after": 2038.03, + "before": 2338.98, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 21:19:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887010605910341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2038.03, + "principal_before": 2338.98, + "principal_data": -300.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2887010643396997, + "account_data": -459.05, + "after": 0.0, + "before": 459.05, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 21:19:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2887010605910341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 459.05, + "principal_data": -459.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2886958876822021, + "account_data": -299.72, + "after": 7197.5, + "before": 7497.22, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 20:26:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886958800341381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7197.5, + "principal_before": 7497.22, + "principal_data": -299.72 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2886910179051845, + "account_data": -75.0, + "after": 87.0, + "before": 162.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-20 19:36:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886909960620549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 87.0, + "principal_before": 162.0, + "principal_data": -75.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2886818136672773, + "account_data": -104.0, + "after": 6586.35, + "before": 6690.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-20 18:03:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886818080770437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6586.35, + "principal_before": 6690.35, + "principal_data": -104.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2886756648225157, + "account_data": -8.0, + "after": 1000.07, + "before": 1008.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 17:00:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886756611590661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1000.07, + "principal_before": 1008.07, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2886731797481861, + "account_data": -16.0, + "after": 255.53, + "before": 271.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 16:35:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886731736418821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 255.53, + "principal_before": 271.53, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2886687997790661, + "account_data": 12.0, + "after": 1360.88, + "before": 1348.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 15:50:55", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886670563756421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1360.88, + "principal_before": 1348.88, + "principal_data": 12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2886670626310661, + "account_data": -12.0, + "after": 1348.88, + "before": 1360.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 15:33:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886670563756421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1348.88, + "principal_before": 1360.88, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2886618321373509, + "account_data": -26.0, + "after": 459.05, + "before": 485.05, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 14:40:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886618266274181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 459.05, + "principal_before": 485.05, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2886612073580933, + "account_data": -100.0, + "after": 271.53, + "before": 371.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 14:33:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886612017498629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 271.53, + "principal_before": 371.53, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2886060144101253, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 05:12:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2886024745945541, + "tenant_member_id": 2799207363643141, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2886025939552581, + "account_data": -1083.83, + "after": 8961.29, + "before": 10045.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 04:37:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886025792178629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 8961.29, + "principal_before": 10045.12, + "principal_data": -1083.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2886024561707397, + "account_data": 10000.0, + "after": 10045.12, + "before": 45.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 04:36:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2886024559135109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 10045.12, + "principal_before": 45.12, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2885912854497797, + "account_data": -141.0, + "after": 12074.73, + "before": 12215.73, + "card_type_id": 2791990152417157, + "create_time": "2025-09-20 02:42:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885912799332741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 12074.73, + "principal_before": 12215.73, + "principal_data": -141.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2885912247044421, + "account_data": -1702.33, + "after": 6870.72, + "before": 8573.05, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 02:41:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885912184408517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6870.72, + "principal_before": 8573.05, + "principal_data": -1702.33 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2885892989405509, + "account_data": -85.0, + "after": 1642.0, + "before": 1727.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-20 02:22:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885892965517701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1642.0, + "principal_before": 1727.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2885824612026693, + "account_data": -668.5, + "after": 347.71, + "before": 1016.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 01:12:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885824558156101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 347.71, + "principal_before": 1016.21, + "principal_data": -668.5 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2885824611862853, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 01:12:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885824558156101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2885824405653317, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 01:12:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2885823546395013, + "account_data": 1000.0, + "after": 1016.21, + "before": 16.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 01:11:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885823543773573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1016.21, + "principal_before": 16.21, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2885816257268165, + "account_data": -1177.24, + "after": 7497.22, + "before": 8674.46, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 01:04:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885816187046277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7497.22, + "principal_before": 8674.46, + "principal_data": -1177.24 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2885816257120709, + "account_data": -1591.23, + "after": 0.0, + "before": 1591.23, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 01:04:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885816187046277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1591.23, + "principal_data": -1591.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885814034565509, + "account_data": -125.64, + "after": 235.55, + "before": 361.19, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 01:01:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885813970192837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 235.55, + "principal_before": 361.19, + "principal_data": -125.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2885791110056261, + "account_data": -15.0, + "after": 478.0, + "before": 493.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-20 00:38:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885790993598917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 478.0, + "principal_before": 493.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2885767604423109, + "account_data": -120.0, + "after": 1028.49, + "before": 1148.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-20 00:14:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885767566068037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1028.49, + "principal_before": 1148.49, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885742686931269, + "account_data": -200.0, + "after": 86.68, + "before": 286.68, + "card_type_id": 2791990152417157, + "create_time": "2025-09-19 23:49:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885742641662405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 86.68, + "principal_before": 286.68, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885741463308613, + "account_data": -20.0, + "after": 361.19, + "before": 381.19, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 23:48:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885741403998597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 361.19, + "principal_before": 381.19, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885740975884805, + "account_data": -618.81, + "after": 381.19, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 23:47:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885740910561797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 381.19, + "principal_before": 1000.0, + "principal_data": -618.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885740975737349, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 23:47:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885740910561797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885740749490053, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 23:47:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2885740357765573, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 23:46:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885740355160517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2885592868424069, + "account_data": -65.0, + "after": 212.0, + "before": 277.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-19 21:16:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885592812128709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217500849925, + "tenant_member_id": 2799209786836741, + "principal_after": 212.0, + "principal_before": 277.0, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2885495669393925, + "account_data": -98.84, + "after": 237.81, + "before": 336.65, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 19:38:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885495456729605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 237.81, + "principal_before": 336.65, + "principal_data": -98.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2885485589973381, + "account_data": -49.82, + "after": 1591.23, + "before": 1641.05, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 19:27:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885485490981189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1591.23, + "principal_before": 1641.05, + "principal_data": -49.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2885384114375045, + "account_data": -190.0, + "after": 485.05, + "before": 675.05, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 17:44:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2885384069155205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 485.05, + "principal_before": 675.05, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2884477322447045, + "account_data": -172.47, + "after": 8573.05, + "before": 8745.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 02:22:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884477247621125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8573.05, + "principal_before": 8745.52, + "principal_data": -172.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2884456165804229, + "account_data": -121.95, + "after": 675.05, + "before": 797.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 02:00:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884456048724165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 675.05, + "principal_before": 797.0, + "principal_data": -121.95 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2884407685449797, + "account_data": -400.0, + "after": 12215.73, + "before": 12615.73, + "card_type_id": 2791990152417157, + "create_time": "2025-09-19 01:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884407612508293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 12215.73, + "principal_before": 12615.73, + "principal_data": -400.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2884406400960581, + "account_data": -1514.4, + "after": 8745.52, + "before": 10259.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-19 01:09:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884406327838789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8745.52, + "principal_before": 10259.92, + "principal_data": -1514.4 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2884406400813125, + "account_data": -1388.0, + "after": 0.0, + "before": 1388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-19 01:09:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884406327838789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1388.0, + "principal_data": -1388.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2884314521880773, + "account_data": -96.0, + "after": 336.65, + "before": 432.65, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 23:36:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884314474596357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 336.65, + "principal_before": 432.65, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2884285481962949, + "account_data": -28.0, + "after": 1008.07, + "before": 1036.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 23:06:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884285449031109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1008.07, + "principal_before": 1036.07, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王总", + "memberMobile": "15510107335", + "id": 2884134138514757, + "account_data": -31.0, + "after": 5493.0, + "before": 5524.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-18 20:33:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884134116085253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207427376901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218672387845, + "tenant_member_id": 2799207428409093, + "principal_after": 5493.0, + "principal_before": 5524.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2884112819867013, + "account_data": -99.57, + "after": 1641.05, + "before": 1740.62, + "card_type_id": 2793266846533445, + "create_time": "2025-09-18 20:11:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884112733687173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1641.05, + "principal_before": 1740.62, + "principal_data": -99.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2884102887214405, + "account_data": -13.0, + "after": 797.0, + "before": 810.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-18 20:01:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2884102840716677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 797.0, + "principal_before": 810.0, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2883924155747653, + "account_data": -20.0, + "after": 540.77, + "before": 560.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 16:59:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2883924056362373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 540.77, + "principal_before": 560.77, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2883783936085125, + "account_data": -99.66, + "after": 966.43, + "before": 1066.09, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 14:36:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2883783863716805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 966.43, + "principal_before": 1066.09, + "principal_data": -99.66 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2883436703911365, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-18 08:43:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2883155313510405, + "account_data": -3714.33, + "after": 560.77, + "before": 4275.1, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 03:57:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2883155160909829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 560.77, + "principal_before": 4275.1, + "principal_data": -3714.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2883154470225797, + "account_data": 3000.0, + "after": 4275.1, + "before": 1275.1, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 03:56:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2883154467702661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 4275.1, + "principal_before": 1275.1, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2883003493402437, + "account_data": -3112.64, + "after": 1740.62, + "before": 4853.26, + "card_type_id": 2793266846533445, + "create_time": "2025-09-18 01:22:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2883003363379141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1740.62, + "principal_before": 4853.26, + "principal_data": -3112.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2882987166271429, + "account_data": -96.0, + "after": 1148.49, + "before": 1244.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-18 01:06:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882987120199557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1148.49, + "principal_before": 1244.49, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2882874332055173, + "account_data": 888.0, + "after": 1388.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-17 23:11:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1388.0, + "principal_before": 500.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2882873967183749, + "account_data": 5000.0, + "after": 10259.92, + "before": 5259.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 23:11:05", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882873963759493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 10259.92, + "principal_before": 5259.92, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2882845542041605, + "account_data": -16.0, + "after": 6690.35, + "before": 6706.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-17 22:42:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882845481191237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6690.35, + "principal_before": 6706.35, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2882683974993797, + "account_data": -146.74, + "after": 4853.26, + "before": 5000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-17 19:57:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882683870873477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 4853.26, + "principal_before": 5000.0, + "principal_data": -146.74 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2882598190843717, + "account_data": -53.0, + "after": 928.0, + "before": 981.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-17 18:30:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882598138103749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 928.0, + "principal_before": 981.0, + "principal_data": -53.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2882597418387397, + "account_data": -383.8, + "after": 1355.97, + "before": 1739.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 18:29:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882597219223493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1355.97, + "principal_before": 1739.77, + "principal_data": -383.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2882569184233349, + "account_data": -126.52, + "after": 1066.09, + "before": 1192.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 18:01:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882569084848069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1066.09, + "principal_before": 1192.61, + "principal_data": -126.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2882563221065157, + "account_data": 500.0, + "after": 810.0, + "before": 310.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-17 17:54:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 810.0, + "principal_before": 310.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2882563167536773, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-17 17:54:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2882506501179397, + "account_data": -8.0, + "after": 371.53, + "before": 379.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 16:57:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882506418374533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 371.53, + "principal_before": 379.53, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2882499974268869, + "account_data": -5.0, + "after": 670.12, + "before": 675.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 16:50:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2882499906340677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 670.12, + "principal_before": 675.12, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2881970486331205, + "account_data": -3281.02, + "after": 2338.98, + "before": 5620.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 07:52:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881970376476549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2338.98, + "principal_before": 5620.0, + "principal_data": -3281.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2881969242867653, + "account_data": 3000.0, + "after": 5620.0, + "before": 2620.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 07:50:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881969240016837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 5620.0, + "principal_before": 2620.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2881954359068549, + "account_data": 3000.0, + "after": 5259.92, + "before": 2259.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-17 07:35:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881954356430725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5259.92, + "principal_before": 2259.92, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2881522169890693, + "account_data": -115.0, + "after": 6706.35, + "before": 6821.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-17 00:15:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881522107172869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6706.35, + "principal_before": 6821.35, + "principal_data": -115.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2881514994878085, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-17 00:08:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王总", + "memberMobile": "15510107335", + "id": 2881496487610181, + "account_data": -146.0, + "after": 5524.0, + "before": 5670.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-16 23:49:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881496430118917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207427376901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218672387845, + "tenant_member_id": 2799207428409093, + "principal_after": 5524.0, + "principal_before": 5670.0, + "principal_data": -146.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2881495239870341, + "account_data": -620.47, + "after": 379.53, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 23:48:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881495169665029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 379.53, + "principal_before": 1000.0, + "principal_data": -620.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2881495239706501, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-16 23:48:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881495169665029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2881495045328325, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-16 23:48:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2881494626109381, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 23:47:57", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881494622439365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2881328871491589, + "account_data": -78.0, + "after": 12615.73, + "before": 12693.73, + "card_type_id": 2791990152417157, + "create_time": "2025-09-16 20:59:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881328807331653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 12615.73, + "principal_before": 12693.73, + "principal_data": -78.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2881327885518725, + "account_data": -380.56, + "after": 2259.92, + "before": 2640.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 20:58:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881327774058373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2259.92, + "principal_before": 2640.48, + "principal_data": -380.56 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2881317557782405, + "account_data": -190.0, + "after": 310.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-16 20:47:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881317512038341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 310.0, + "principal_before": 500.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2881255226804037, + "account_data": -45.0, + "after": 1739.77, + "before": 1784.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 19:44:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881255169460101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1739.77, + "principal_before": 1784.77, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "桂先生(该会员已注销)", + "memberMobile": "16676777275(1)", + "id": 2881217118930757, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-09-16 19:05:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881217115866949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2881216339331077, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2881216341149701, + "tenant_member_id": 2881216340641797, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2881199733196613, + "account_data": -5.0, + "after": 1036.07, + "before": 1041.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 18:47:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2881199697233925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1036.07, + "principal_before": 1041.07, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2880458488350725, + "account_data": -1604.88, + "after": 45.12, + "before": 1650.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 06:13:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880458250962949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 45.12, + "principal_before": 1650.0, + "principal_data": -1604.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13686180006", + "id": 2880290858862469, + "account_data": -833.0, + "after": 0.0, + "before": 833.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-16 03:23:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880290319337285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2880001639385029, + "tenant_member_id": 2880000482366213, + "principal_after": 0.0, + "principal_before": 833.0, + "principal_data": -833.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2880113011658181, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-16 00:22:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2880093656532805, + "account_data": -380.0, + "after": 2620.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 00:02:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880093583575045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2620.0, + "principal_before": 3000.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2880092118828933, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-16 00:01:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880092115601285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生", + "memberMobile": "13570370785", + "id": 2880044714067781, + "account_data": -100.0, + "after": 1513.0, + "before": 1613.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-15 23:13:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880044651202373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209734866693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217841506053, + "tenant_member_id": 2799209735866117, + "principal_after": 1513.0, + "principal_before": 1613.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2880013736626117, + "account_data": -10.0, + "after": 479.0, + "before": 489.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-15 22:41:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880013719128069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 479.0, + "principal_before": 489.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2880010015262661, + "account_data": -777.16, + "after": 465.47, + "before": 1242.63, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 22:37:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880009976923973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 465.47, + "principal_before": 1242.63, + "principal_data": -777.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2880009840363333, + "account_data": 777.16, + "after": 1242.63, + "before": 465.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 22:37:33", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880009271871301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1242.63, + "principal_before": 465.47, + "principal_data": 777.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2880009328920581, + "account_data": -777.16, + "after": 465.47, + "before": 1242.63, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 22:37:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880009271871301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 465.47, + "principal_before": 1242.63, + "principal_data": -777.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2880003790489605, + "account_data": -8.0, + "after": 675.12, + "before": 683.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 22:31:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880003774908357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 675.12, + "principal_before": 683.12, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2880002850522949, + "account_data": -31.0, + "after": 1041.07, + "before": 1072.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 22:30:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2880002799863685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1041.07, + "principal_before": 1072.07, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13686180006", + "id": 2880002695122373, + "account_data": 833.0, + "after": 833.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-15 22:30:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2880001639385029, + "tenant_member_id": 2880000482366213, + "principal_after": 833.0, + "principal_before": 0.0, + "principal_data": 833.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2879760120465349, + "account_data": -346.97, + "after": 9.5, + "before": 356.47, + "card_type_id": 2793266846533445, + "create_time": "2025-09-15 18:23:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879759971321669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 9.5, + "principal_before": 356.47, + "principal_data": -346.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879754456745989, + "account_data": -8.0, + "after": 1072.07, + "before": 1080.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 18:17:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879754431825861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1072.07, + "principal_before": 1080.07, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879730714920901, + "account_data": -570.0, + "after": 1080.07, + "before": 1650.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 17:53:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879730678876101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1080.07, + "principal_before": 1650.07, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879560458995653, + "account_data": -8.0, + "after": 1650.07, + "before": 1658.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 15:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879560421132229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1650.07, + "principal_before": 1658.07, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879534545455109, + "account_data": -3341.93, + "after": 1658.07, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 14:34:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879534491748229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1658.07, + "principal_before": 5000.0, + "principal_data": -3341.93 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879534545274885, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-15 14:34:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879534491748229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879534112411077, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-15 14:33:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2879533821478789, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 14:33:19", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879533817956229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2879504004335557, + "account_data": -57.05, + "after": 515.49, + "before": 572.54, + "card_type_id": 2793266846533445, + "create_time": "2025-09-15 14:02:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2879503812872197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 515.49, + "principal_before": 572.54, + "principal_data": -57.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2878889947498373, + "account_data": -1830.6, + "after": 2640.48, + "before": 4471.08, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 03:38:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878889542911941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2640.48, + "principal_before": 4471.08, + "principal_data": -1830.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2878888975927301, + "account_data": -985.79, + "after": 4471.08, + "before": 5456.87, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 03:37:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878888842086277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4471.08, + "principal_before": 5456.87, + "principal_data": -985.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878777586763653, + "account_data": -26.0, + "after": 184.62, + "before": 210.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 01:44:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878777560270853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 184.62, + "principal_before": 210.62, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878777122015173, + "account_data": -26.0, + "after": 210.62, + "before": 236.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 01:43:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878777036490629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 210.62, + "principal_before": 236.62, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878771210373125, + "account_data": -4.0, + "after": 236.62, + "before": 240.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 01:37:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878771169576837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 236.62, + "principal_before": 240.62, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878769351542789, + "account_data": -4.0, + "after": 240.62, + "before": 244.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-15 01:35:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878769334929349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 240.62, + "principal_before": 244.62, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2878693318854661, + "account_data": -125.0, + "after": 6821.35, + "before": 6946.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-15 00:18:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878693252056965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6821.35, + "principal_before": 6946.35, + "principal_data": -125.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2878598996051845, + "account_data": -94.26, + "after": 1244.49, + "before": 1338.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 22:42:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878598959646725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1244.49, + "principal_before": 1338.75, + "principal_data": -94.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878576684287813, + "account_data": -5.0, + "after": 244.62, + "before": 249.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 22:19:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878576634054469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 244.62, + "principal_before": 249.62, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2878443746936709, + "account_data": -52.29, + "after": 8674.46, + "before": 8726.75, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 20:04:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878443658659781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8674.46, + "principal_before": 8726.75, + "principal_data": -52.29 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2878376615675781, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-09-14 18:56:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878376612644741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2878376367297285, + "tenant_member_id": 2878376367018757, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2878375621104389, + "account_data": -985.0, + "after": 0.0, + "before": 985.0, + "card_type_id": 2793306611533637, + "create_time": "2025-09-14 18:55:08", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219755403013, + "tenant_member_id": 2799212728911621, + "principal_after": 0.0, + "principal_before": 985.0, + "principal_data": -985.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2878324439009093, + "account_data": -7.0, + "after": 493.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-14 18:03:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878324379764549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 493.0, + "principal_before": 500.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878323851282309, + "account_data": -8.0, + "after": 249.62, + "before": 257.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 18:02:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878323812730757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 249.62, + "principal_before": 257.62, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2878310826592133, + "account_data": -142.73, + "after": 1338.75, + "before": 1481.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 17:49:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878310772836229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1338.75, + "principal_before": 1481.48, + "principal_data": -142.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2878269646849925, + "account_data": -8.0, + "after": 16.21, + "before": 24.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 17:07:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878269589194757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 16.21, + "principal_before": 24.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878268442822469, + "account_data": -1140.0, + "after": 257.62, + "before": 1397.62, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 17:06:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878268319696901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 257.62, + "principal_before": 1397.62, + "principal_data": -1140.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2878233621415941, + "account_data": -10.0, + "after": 2210.38, + "before": 2220.38, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 16:30:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878233586075525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2210.38, + "principal_before": 2220.38, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2878217274345413, + "account_data": -380.0, + "after": 1650.0, + "before": 2030.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 16:14:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878217208792965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 1650.0, + "principal_before": 2030.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878146024540165, + "account_data": -3619.69, + "after": 1397.62, + "before": 5017.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 15:01:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878145968621573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 1397.62, + "principal_before": 5017.31, + "principal_data": -3619.69 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878146024359941, + "account_data": -1541.52, + "after": 0.0, + "before": 1541.52, + "card_type_id": 2793266846533445, + "create_time": "2025-09-14 15:01:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878145968621573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 0.0, + "principal_before": 1541.52, + "principal_data": -1541.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878145245810117, + "account_data": 888.0, + "after": 1541.52, + "before": 653.52, + "card_type_id": 2793266846533445, + "create_time": "2025-09-14 15:00:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 1541.52, + "principal_before": 653.52, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2878144153683909, + "account_data": 5000.0, + "after": 5017.31, + "before": 17.31, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 14:59:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2878144150669253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 5017.31, + "principal_before": 17.31, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2877360298346309, + "account_data": -22.0, + "after": 328.92, + "before": 350.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 01:42:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877360205842309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 328.92, + "principal_before": 350.92, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2877319413745605, + "account_data": -17.0, + "after": 489.0, + "before": 506.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-14 01:00:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877319359662021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 489.0, + "principal_before": 506.0, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2877306741639045, + "account_data": -380.0, + "after": 2064.97, + "before": 2444.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-14 00:47:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877306682886149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2064.97, + "principal_before": 2444.97, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2877261162727301, + "account_data": -100.0, + "after": 4118.0, + "before": 4218.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-14 00:01:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877261114329029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 4118.0, + "principal_before": 4218.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2877235726503365, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-13 23:35:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王总", + "memberMobile": "15510107335", + "id": 2877229369509765, + "account_data": -100.0, + "after": 5670.0, + "before": 5770.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-13 23:29:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877229321291781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207427376901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218672387845, + "tenant_member_id": 2799207428409093, + "principal_after": 5670.0, + "principal_before": 5770.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2877199054358469, + "account_data": -12.0, + "after": 683.12, + "before": 695.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 22:58:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877199003699077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 683.12, + "principal_before": 695.12, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2877158445483909, + "account_data": -158.0, + "after": 4548.0, + "before": 4706.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-13 22:16:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877158373738309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 4548.0, + "principal_before": 4706.0, + "principal_data": -158.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2877133522093957, + "account_data": -140.0, + "after": 11444.0, + "before": 11584.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-13 21:51:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877133436847941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11444.0, + "principal_before": 11584.0, + "principal_data": -140.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2877132694701957, + "account_data": -499.24, + "after": 356.47, + "before": 855.71, + "card_type_id": 2793266846533445, + "create_time": "2025-09-13 21:50:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877132563580741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 356.47, + "principal_before": 855.71, + "principal_data": -499.24 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2877029096376197, + "account_data": -570.0, + "after": 2444.97, + "before": 3014.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 20:05:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877029034559493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 2444.97, + "principal_before": 3014.97, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2877028754917253, + "account_data": 3000.0, + "after": 3014.97, + "before": 14.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 20:05:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2877028751886213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 3014.97, + "principal_before": 14.97, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2876985351030661, + "account_data": -5.0, + "after": 24.21, + "before": 29.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 19:20:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876985282234373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 24.21, + "principal_before": 29.21, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2876923201079109, + "account_data": -144.0, + "after": 1481.48, + "before": 1625.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 18:17:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876923154220933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1481.48, + "principal_before": 1625.48, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2876901363681157, + "account_data": -143.84, + "after": 447.71, + "before": 591.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 17:55:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876901312186373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 447.71, + "principal_before": 591.55, + "principal_data": -143.84 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876867432007621, + "account_data": -500.0, + "after": 4728.36, + "before": 5228.36, + "card_type_id": 2791990152417157, + "create_time": "2025-09-13 17:20:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876867364456389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 4728.36, + "principal_before": 5228.36, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876866903492485, + "account_data": -3987.58, + "after": 1275.1, + "before": 5262.68, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 17:20:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876866832615365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 1275.1, + "principal_before": 5262.68, + "principal_data": -3987.58 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876866903361413, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-13 17:20:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876866832615365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876866488257989, + "account_data": 388.0, + "after": 888.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-13 17:19:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 888.0, + "principal_before": 500.0, + "principal_data": 388.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876866400652805, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-13 17:19:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2876865920239557, + "account_data": 5000.0, + "after": 5262.68, + "before": 262.68, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 17:19:23", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2876865917142981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 5262.68, + "principal_before": 262.68, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2875961817910853, + "account_data": -1105.4, + "after": 0.0, + "before": 1105.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 01:59:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875961432100421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 1105.4, + "principal_data": -1105.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2875926083767877, + "account_data": -15.0, + "after": 350.92, + "before": 365.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-13 01:23:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875926038253253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 350.92, + "principal_before": 365.92, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2875833743314693, + "account_data": -16.0, + "after": 1360.88, + "before": 1376.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 23:49:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875833637605125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1360.88, + "principal_before": 1376.88, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "16670190937", + "id": 2875829583744645, + "account_data": -50.0, + "after": 1248.0, + "before": 1298.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-12 23:45:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875829539360453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207459456773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216922380037, + "tenant_member_id": 2799207460439813, + "principal_after": 1248.0, + "principal_before": 1298.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2875805728198405, + "account_data": -99.0, + "after": 981.0, + "before": 1080.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-12 23:20:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875805638889157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 981.0, + "principal_before": 1080.0, + "principal_data": -99.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2875804757446213, + "account_data": -518.56, + "after": 1784.77, + "before": 2303.33, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 23:19:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875804703854277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1784.77, + "principal_before": 2303.33, + "principal_data": -518.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875804404862661, + "account_data": -2899.84, + "after": 5456.87, + "before": 8356.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 23:19:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875804297956933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5456.87, + "principal_before": 8356.71, + "principal_data": -2899.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875804404682437, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 23:19:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875804297956933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2875799171043013, + "account_data": -99.0, + "after": 432.65, + "before": 531.65, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 23:14:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875799126134405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 432.65, + "principal_before": 531.65, + "principal_data": -99.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2875785121058501, + "account_data": -23.0, + "after": 277.0, + "before": 300.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-12 22:59:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875785068924677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217500849925, + "tenant_member_id": 2799209786836741, + "principal_after": 277.0, + "principal_before": 300.0, + "principal_data": -23.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2875636116033157, + "account_data": -317.96, + "after": 8726.75, + "before": 9044.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 20:28:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875636040830661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8726.75, + "principal_before": 9044.71, + "principal_data": -317.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2875490454457925, + "account_data": -190.0, + "after": 2030.0, + "before": 2220.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 18:00:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875490390544133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2030.0, + "principal_before": 2220.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2875467256254149, + "account_data": -45.0, + "after": 55.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 17:36:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875467215621829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 55.0, + "principal_before": 100.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2875431268470341, + "account_data": -190.0, + "after": 1105.4, + "before": 1295.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 16:59:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875431231147717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1105.4, + "principal_before": 1295.4, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2875315635146373, + "account_data": -8.29, + "after": 0.0, + "before": 8.29, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 15:02:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875315384553029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 0.0, + "principal_before": 8.29, + "principal_data": -8.29 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875223758212805, + "account_data": -40.0, + "after": 162.0, + "before": 202.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-12 13:28:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875223700803205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 162.0, + "principal_before": 202.0, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875105107250821, + "account_data": -31.0, + "after": 202.0, + "before": 233.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-12 11:28:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875105054101253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 202.0, + "principal_before": 233.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875093453508293, + "account_data": -33.0, + "after": 233.0, + "before": 266.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-12 11:16:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875093391281733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 233.0, + "principal_before": 266.0, + "principal_data": -33.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875015609650693, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 09:57:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2875015002918661, + "account_data": 3000.0, + "after": 8356.71, + "before": 5356.71, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 09:56:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2875014999920389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8356.71, + "principal_before": 5356.71, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2874493183774469, + "account_data": -89.0, + "after": 11584.0, + "before": 11673.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-12 01:05:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874493125725765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11584.0, + "principal_before": 11673.0, + "principal_data": -89.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2874492666629701, + "account_data": -409.03, + "after": 855.71, + "before": 1264.74, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 01:05:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874492556955269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 855.71, + "principal_before": 1264.74, + "principal_data": -409.03 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2874485592985157, + "account_data": -10.0, + "after": 14.97, + "before": 24.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:57:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874485543554757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 14.97, + "principal_before": 24.97, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2874474464038597, + "account_data": -8.0, + "after": 1693.11, + "before": 1701.11, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:46:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874474352791237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 1693.11, + "principal_before": 1701.11, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2874462092299973, + "account_data": -147.07, + "after": 0.0, + "before": 147.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:34:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874461442674437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 147.07, + "principal_data": -147.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2874461793160709, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 00:33:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800457030093701, + "operator_name": "店长:黄月柳", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2874461109800709, + "account_data": -894.4, + "after": 147.07, + "before": 1041.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:33:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874461043248901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 147.07, + "principal_before": 1041.47, + "principal_data": -894.4 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2874461109636869, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-12 00:33:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874461043248901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2874460722433605, + "account_data": 1000.0, + "after": 1041.47, + "before": 41.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:32:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874460719566405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1041.47, + "principal_before": 41.47, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2874428768013957, + "account_data": -5.0, + "after": 1295.4, + "before": 1300.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-12 00:00:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874428723744389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1295.4, + "principal_before": 1300.4, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2874415511080581, + "account_data": -8.0, + "after": 29.21, + "before": 37.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 23:46:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874415457586821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 29.21, + "principal_before": 37.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2874380693098181, + "account_data": -10.0, + "after": 2220.38, + "before": 2230.38, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 23:11:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874380671520389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2220.38, + "principal_before": 2230.38, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2874344489242309, + "account_data": -74.0, + "after": 1080.0, + "before": 1154.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-11 22:34:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874344422919877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1080.0, + "principal_before": 1154.0, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2874344062537413, + "account_data": -481.66, + "after": 2303.33, + "before": 2784.99, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 22:34:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874343964954245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2303.33, + "principal_before": 2784.99, + "principal_data": -481.66 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2874321228615429, + "account_data": -26.0, + "after": 1300.4, + "before": 1326.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 22:10:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874321168961221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1300.4, + "principal_before": 1326.4, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2874242003570437, + "account_data": -205.16, + "after": 9044.71, + "before": 9249.87, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 20:50:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874241874628165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9044.71, + "principal_before": 9249.87, + "principal_data": -205.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874208521686661, + "account_data": -302.9, + "after": 5356.71, + "before": 5659.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 20:16:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874208456920773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5356.71, + "principal_before": 5659.61, + "principal_data": -302.9 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874207970201285, + "account_data": -58.0, + "after": 266.0, + "before": 324.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-11 20:15:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874207914249925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 266.0, + "principal_before": 324.0, + "principal_data": -58.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874203410255429, + "account_data": -1269.57, + "after": 12693.73, + "before": 13963.3, + "card_type_id": 2791990152417157, + "create_time": "2025-09-11 20:10:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874203318554245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 12693.73, + "principal_before": 13963.3, + "principal_data": -1269.57 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874196474646277, + "account_data": -576.79, + "after": 13963.3, + "before": 14540.09, + "card_type_id": 2791990152417157, + "create_time": "2025-09-11 20:03:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874196383583813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 13963.3, + "principal_before": 14540.09, + "principal_data": -576.79 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874188872355461, + "account_data": -259.91, + "after": 14540.09, + "before": 14800.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-11 19:56:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874188780277317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 14540.09, + "principal_before": 14800.0, + "principal_data": -259.91 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874187188719365, + "account_data": -286.0, + "after": 324.0, + "before": 610.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-11 19:54:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874187118153477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 324.0, + "principal_before": 610.0, + "principal_data": -286.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874181668490821, + "account_data": -155.0, + "after": 610.0, + "before": 765.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-11 19:48:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874181618667141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 610.0, + "principal_before": 765.0, + "principal_data": -155.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874179890974405, + "account_data": -225.0, + "after": 765.0, + "before": 990.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-11 19:47:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874179814805189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 765.0, + "principal_before": 990.0, + "principal_data": -225.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874178381762245, + "account_data": -70.0, + "after": 5659.61, + "before": 5729.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 19:45:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874178320223877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5659.61, + "principal_before": 5729.61, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874175528242885, + "account_data": -875.0, + "after": 5729.61, + "before": 6604.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 19:42:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874175459823173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5729.61, + "principal_before": 6604.61, + "principal_data": -875.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874174503702149, + "account_data": -1225.64, + "after": 6604.61, + "before": 7830.25, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 19:41:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874174346251973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6604.61, + "principal_before": 7830.25, + "principal_data": -1225.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874172938866437, + "account_data": -1118.22, + "after": 7830.25, + "before": 8948.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 19:39:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874172825308869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7830.25, + "principal_before": 8948.47, + "principal_data": -1118.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2874172938686213, + "account_data": -687.59, + "after": 0.0, + "before": 687.59, + "card_type_id": 2793266846533445, + "create_time": "2025-09-11 19:39:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2874172825308869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 687.59, + "principal_data": -687.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2873947966705413, + "account_data": -8.0, + "after": 1326.4, + "before": 1334.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 15:51:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2873947932872261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1326.4, + "principal_before": 1334.4, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2873271376170501, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-11 04:22:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2873016167812677, + "account_data": -958.53, + "after": 41.47, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 00:03:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2873016119250501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 41.47, + "principal_before": 1000.0, + "principal_data": -958.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2873015724347141, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-11 00:02:46", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2873015721365253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2872994266369797, + "account_data": -8.0, + "after": 653.52, + "before": 661.52, + "card_type_id": 2793266846533445, + "create_time": "2025-09-10 23:40:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872994220543557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 653.52, + "principal_before": 661.52, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2872978873765317, + "account_data": 500.0, + "after": 687.59, + "before": 187.59, + "card_type_id": 2793266846533445, + "create_time": "2025-09-10 23:25:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 687.59, + "principal_before": 187.59, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2872886003650245, + "account_data": 3000.0, + "after": 8948.47, + "before": 5948.47, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 21:50:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872886000717509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8948.47, + "principal_before": 5948.47, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2872844403215941, + "account_data": -6.0, + "after": 506.0, + "before": 512.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-10 21:08:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872844351278725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 506.0, + "principal_before": 512.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2872837627039365, + "account_data": -15.0, + "after": 695.12, + "before": 710.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 21:01:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872837569285893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 695.12, + "principal_before": 710.12, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2872487772309637, + "account_data": -8.0, + "after": 1334.4, + "before": 1342.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 15:05:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872487755417797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1334.4, + "principal_before": 1342.4, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2872475149469829, + "account_data": -8.0, + "after": 37.21, + "before": 45.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 14:52:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2872475038976133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 37.21, + "principal_before": 45.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2871654195710021, + "account_data": -1137.76, + "after": 1342.4, + "before": 2480.16, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 00:57:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871654110824709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1342.4, + "principal_before": 2480.16, + "principal_data": -1137.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2871607035971653, + "account_data": -2274.99, + "after": 9249.87, + "before": 11524.86, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 00:09:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871606853552261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9249.87, + "principal_before": 11524.86, + "principal_data": -2274.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2871607035824197, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-10 00:09:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871606853552261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2871603216042245, + "account_data": -57.95, + "after": 0.0, + "before": 57.95, + "card_type_id": 2793249295533893, + "create_time": "2025-09-10 00:05:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871602676435077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217697670917, + "tenant_member_id": 2799209827731205, + "principal_after": 0.0, + "principal_before": 57.95, + "principal_data": -57.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2871603215878405, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-10 00:05:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871602676435077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2868694674264133, + "tenant_member_id": 2799209827731205, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2871594524330437, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-09 23:57:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2871494244026565, + "account_data": -117.56, + "after": 8.29, + "before": 125.85, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 22:15:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871494069520581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 8.29, + "principal_before": 125.85, + "principal_data": -117.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2871493826381893, + "account_data": 12.0, + "after": 125.85, + "before": 113.85, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 22:14:36", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871489452853445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 125.85, + "principal_before": 113.85, + "principal_data": 12.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2871493826218053, + "account_data": 105.56, + "after": 145.0, + "before": 39.44, + "card_type_id": 2791990152417157, + "create_time": "2025-09-09 22:14:36", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871489452853445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217043293957, + "tenant_member_id": 2799207515637509, + "principal_after": 145.0, + "principal_before": 39.44, + "principal_data": 105.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2871491911321669, + "account_data": -6.0, + "after": 2480.16, + "before": 2486.16, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 22:12:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871491891759301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2480.16, + "principal_before": 2486.16, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2871489518798917, + "account_data": -12.0, + "after": 113.85, + "before": 125.85, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 22:10:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871489452853445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 113.85, + "principal_before": 125.85, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2871489518651461, + "account_data": -105.56, + "after": 39.44, + "before": 145.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-09 22:10:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871489452853445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217043293957, + "tenant_member_id": 2799207515637509, + "principal_after": 39.44, + "principal_before": 145.0, + "principal_data": -105.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2871476632651909, + "account_data": 10000.0, + "after": 11524.86, + "before": 1524.86, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 21:57:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871476629948549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 11524.86, + "principal_before": 1524.86, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2871419859372229, + "account_data": -4.36, + "after": 2486.16, + "before": 2490.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 20:59:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871419792050309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2486.16, + "principal_before": 2490.52, + "principal_data": -4.36 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2871419859208389, + "account_data": -23.64, + "after": 0.0, + "before": 23.64, + "card_type_id": 2793266846533445, + "create_time": "2025-09-09 20:59:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871419792050309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 23.64, + "principal_data": -23.64 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2871418740984005, + "account_data": -8.0, + "after": 512.0, + "before": 520.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-09 20:58:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871418682263685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 512.0, + "principal_before": 520.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2871337977497797, + "account_data": -482.81, + "after": 0.0, + "before": 482.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 19:36:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871337774221445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 482.81, + "principal_data": -482.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871329619069125, + "account_data": -190.0, + "after": 497.53, + "before": 687.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 19:27:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871329562691717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 497.53, + "principal_before": 687.53, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2871249559619653, + "account_data": -154.58, + "after": 0.0, + "before": 154.58, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 18:06:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871249414899909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 0.0, + "principal_before": 154.58, + "principal_data": -154.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871200910346373, + "account_data": -380.0, + "after": 687.53, + "before": 1067.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 17:16:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871200875694277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 687.53, + "principal_before": 1067.53, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871200407177413, + "account_data": -13.81, + "after": 1067.53, + "before": 1081.34, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 17:16:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871200364087429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 1067.53, + "principal_before": 1081.34, + "principal_data": -13.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871200407013573, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-09 17:16:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871200364087429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848687461583813, + "tenant_member_id": 2848686922632133, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871200314427845, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-09 17:16:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848687461583813, + "tenant_member_id": 2848686922632133, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2871199963744325, + "account_data": 1000.0, + "after": 1081.34, + "before": 81.34, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 17:15:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871199960811589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 1081.34, + "principal_before": 81.34, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2871192783685893, + "account_data": -5.0, + "after": 45.21, + "before": 50.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 17:08:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871192760993925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 45.21, + "principal_before": 50.21, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2871071547033861, + "account_data": -13.0, + "after": 482.81, + "before": 495.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 15:05:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2871071509563461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 482.81, + "principal_before": 495.81, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2870327769909317, + "account_data": -24.0, + "after": 286.68, + "before": 310.68, + "card_type_id": 2791990152417157, + "create_time": "2025-09-09 02:28:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870327693379781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 286.68, + "principal_before": 310.68, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2870326130624645, + "account_data": -4.52, + "after": 0.0, + "before": 4.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 02:26:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870325471414533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 4.52, + "principal_data": -4.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2870264902273221, + "account_data": -43.0, + "after": 50.21, + "before": 93.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 01:24:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870264810588421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 50.21, + "principal_before": 93.21, + "principal_data": -43.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2870262792800389, + "account_data": -60.88, + "after": 0.0, + "before": 60.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 01:22:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870262093400261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 0.0, + "principal_before": 60.88, + "principal_data": -60.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2870262792669317, + "account_data": -72.0, + "after": 0.0, + "before": 72.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-09 01:22:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870262093400261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 0.0, + "principal_before": 72.0, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2870232087824581, + "account_data": -30.0, + "after": 24.97, + "before": 54.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 00:51:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870232027678853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 24.97, + "principal_before": 54.97, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2870218715580613, + "account_data": -16.75, + "after": 2490.52, + "before": 2507.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 00:37:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870218629794053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2490.52, + "principal_before": 2507.27, + "principal_data": -16.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2870208120817733, + "account_data": -492.73, + "after": 2507.27, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-09 00:26:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870208027445445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2507.27, + "principal_before": 3000.0, + "principal_data": -492.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2870154335995973, + "account_data": -371.39, + "after": 0.0, + "before": 371.39, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 23:32:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870154004154437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 371.39, + "principal_data": -371.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2870093029705862, + "account_data": -8.0, + "after": 2230.38, + "before": 2238.38, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 22:29:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870092919900357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2230.38, + "principal_before": 2238.38, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2870080346900741, + "account_data": -157.07, + "after": 0.0, + "before": 157.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 22:16:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870080049481797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 157.07, + "principal_data": -157.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张", + "memberMobile": "15920272681", + "id": 2870068602587333, + "account_data": -37.0, + "after": 0.05, + "before": 37.05, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 22:04:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870068536412421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212827379461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860045549603973, + "tenant_member_id": 2860045549128837, + "principal_after": 0.05, + "principal_before": 37.05, + "principal_data": -37.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2870034873108613, + "account_data": -26.0, + "after": 495.81, + "before": 521.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 21:30:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870034856593477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 495.81, + "principal_before": 521.81, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2870015814322437, + "account_data": -208.45, + "after": 1242.63, + "before": 1451.08, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 21:11:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2870015747213573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1242.63, + "principal_before": 1451.08, + "principal_data": -208.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2869994441869573, + "account_data": -108.98, + "after": 125.85, + "before": 234.83, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 20:49:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869994301671621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 125.85, + "principal_before": 234.83, + "principal_data": -108.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2869972849608837, + "account_data": -23.4, + "after": 0.0, + "before": 23.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 20:27:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869972714948805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 0.0, + "principal_before": 23.4, + "principal_data": -23.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2869951531550981, + "account_data": -8.0, + "after": 521.81, + "before": 529.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 20:05:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869951505959045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 521.81, + "principal_before": 529.81, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2869950414833861, + "account_data": -179.8, + "after": 529.81, + "before": 709.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 20:04:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869950341220613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 529.81, + "principal_before": 709.61, + "principal_data": -179.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2869932139645061, + "account_data": -10.0, + "after": 4.52, + "before": 14.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 19:45:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869932034246789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 4.52, + "principal_before": 14.52, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2869804464621637, + "account_data": -8.0, + "after": 93.21, + "before": 101.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 17:36:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869804346083589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 93.21, + "principal_before": 101.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2869770553331781, + "account_data": -380.0, + "after": 154.58, + "before": 534.58, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 17:01:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869770328297669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 154.58, + "principal_before": 534.58, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2869680481898501, + "account_data": -170.0, + "after": 709.61, + "before": 879.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 15:29:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869680458502341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 709.61, + "principal_before": 879.61, + "principal_data": -170.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2869654788755461, + "account_data": -8.0, + "after": 879.61, + "before": 887.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 15:03:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869654731198597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 879.61, + "principal_before": 887.61, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2869604455272517, + "account_data": -37.48, + "after": 572.54, + "before": 610.02, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 14:12:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869604412526789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 572.54, + "principal_before": 610.02, + "principal_data": -37.48 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2869007343931397, + "account_data": -45.0, + "after": 31.0, + "before": 76.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-08 04:05:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2869007192313861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216443164421, + "tenant_member_id": 2799207317735173, + "principal_after": 31.0, + "principal_before": 76.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2868988401619013, + "account_data": -151.0, + "after": 1727.0, + "before": 1878.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-08 03:45:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868988162723845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1727.0, + "principal_before": 1878.0, + "principal_data": -151.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2868981113032837, + "account_data": 150.77, + "after": 1878.0, + "before": 1727.23, + "card_type_id": 2791990152417157, + "create_time": "2025-09-08 03:38:33", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868979001561221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1878.0, + "principal_before": 1727.23, + "principal_data": 150.77 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2868979091787781, + "account_data": -150.77, + "after": 1727.23, + "before": 1878.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-08 03:36:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868979001561221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1727.23, + "principal_before": 1878.0, + "principal_data": -150.77 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2868887930589317, + "account_data": -163.0, + "after": 6946.35, + "before": 7109.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-08 02:03:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868887875981509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 6946.35, + "principal_before": 7109.35, + "principal_data": -163.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2868887048933381, + "account_data": -590.21, + "after": 101.21, + "before": 691.42, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 02:02:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868886982430853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 101.21, + "principal_before": 691.42, + "principal_data": -590.21 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2868887048769541, + "account_data": -69.0, + "after": 0.0, + "before": 69.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 02:02:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868886982430853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 69.0, + "principal_data": -69.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2868883306614853, + "account_data": -5.0, + "after": 887.61, + "before": 892.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 01:59:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868883289722949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 887.61, + "principal_before": 892.61, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2868861176369349, + "account_data": -217.13, + "after": 187.59, + "before": 404.72, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 01:36:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868861107490885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 187.59, + "principal_before": 404.72, + "principal_data": -217.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2868857411670085, + "account_data": -2837.25, + "after": 745.24, + "before": 3582.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 01:32:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868857329864837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 745.24, + "principal_before": 3582.49, + "principal_data": -2837.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2868857411539013, + "account_data": -205.34, + "after": 0.0, + "before": 205.34, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 01:32:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868857329864837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 0.0, + "principal_before": 205.34, + "principal_data": -205.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2868842751185029, + "account_data": -2581.92, + "after": 2238.38, + "before": 4820.3, + "card_type_id": 2793249295533893, + "create_time": "2025-09-08 01:17:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868842477654085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 2238.38, + "principal_before": 4820.3, + "principal_data": -2581.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2868770067468357, + "account_data": -380.0, + "after": 23.64, + "before": 403.64, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 00:03:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868770003882181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 23.64, + "principal_before": 403.64, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2868768333041733, + "account_data": -96.36, + "after": 403.64, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-08 00:02:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868768283201669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 403.64, + "principal_before": 500.0, + "principal_data": -96.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2868752845082757, + "account_data": -26.0, + "after": 892.61, + "before": 918.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 23:46:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868752822800453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 892.61, + "principal_before": 918.61, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2868742332043141, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-07 23:35:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2868731380502661, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 23:24:30", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868731377815685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2868712208273285, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-07 23:05:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2868694674264133, + "tenant_member_id": 2799209827731205, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2868695154266245, + "account_data": -942.05, + "after": 57.95, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 22:47:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868695048573061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217697670917, + "tenant_member_id": 2799209827731205, + "principal_after": 57.95, + "principal_before": 1000.0, + "principal_data": -942.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2868694621081669, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 22:47:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868694618312773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217697670917, + "tenant_member_id": 2799209827731205, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2868679917850693, + "account_data": -96.0, + "after": 1625.48, + "before": 1721.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 22:32:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868679845269701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1625.48, + "principal_before": 1721.48, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2868613521002629, + "account_data": -10.0, + "after": 69.0, + "before": 79.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-07 21:24:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868613420634181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 69.0, + "principal_before": 79.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2868430353551429, + "account_data": -144.0, + "after": 1721.48, + "before": 1865.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 18:18:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868430326353925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1721.48, + "principal_before": 1865.48, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2868355557969925, + "account_data": -380.0, + "after": 534.58, + "before": 914.58, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 17:02:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2868355510456453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 534.58, + "principal_before": 914.58, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2867830659419973, + "account_data": -2788.35, + "after": 0.0, + "before": 2788.35, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 08:08:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867830041446149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 2788.35, + "principal_data": -2788.35 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2867542911258437, + "account_data": -294.66, + "after": 205.34, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-07 03:15:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867542816392901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 205.34, + "principal_before": 500.0, + "principal_data": -294.66 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2867352770334533, + "account_data": -58.0, + "after": 1154.0, + "before": 1212.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-07 00:02:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867352718905157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1154.0, + "principal_before": 1212.0, + "principal_data": -58.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2867352157832901, + "account_data": -172.53, + "after": 2784.99, + "before": 2957.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-07 00:01:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867351992111045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2784.99, + "principal_before": 2957.52, + "principal_data": -172.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2867352157685445, + "account_data": -261.42, + "after": 0.0, + "before": 261.42, + "card_type_id": 2793266846533445, + "create_time": "2025-09-07 00:01:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867351992111045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 261.42, + "principal_data": -261.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2867308887033605, + "account_data": -10.0, + "after": 23.4, + "before": 33.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 23:17:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867308830592965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 23.4, + "principal_before": 33.4, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2867286615246597, + "account_data": -8.0, + "after": 14.52, + "before": 22.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 22:54:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867286568306373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 14.52, + "principal_before": 22.52, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2867227940933445, + "account_data": -10.0, + "after": 22.52, + "before": 32.52, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 21:55:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867227892041413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 22.52, + "principal_before": 32.52, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2867213592891333, + "account_data": -304.4, + "after": 0.0, + "before": 304.4, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 21:40:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867213562349253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 304.4, + "principal_data": -304.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2867211432546245, + "account_data": -365.5, + "after": 304.4, + "before": 669.9, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 21:38:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867211382048517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 304.4, + "principal_before": 669.9, + "principal_data": -365.5 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2867211432382405, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 21:38:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867211382048517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2867169036879557, + "account_data": -39.6, + "after": 32.52, + "before": 72.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 20:55:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867168584500997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 32.52, + "principal_before": 72.12, + "principal_data": -39.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2867163608190789, + "account_data": -61.55, + "after": 2788.35, + "before": 2849.9, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 20:49:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867163584382725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2788.35, + "principal_before": 2849.9, + "principal_data": -61.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2867013494769349, + "account_data": -28.05, + "after": 72.12, + "before": 100.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 18:16:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867013468966725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 72.12, + "principal_before": 100.17, + "principal_data": -28.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2867002313967301, + "account_data": -240.95, + "after": 1451.08, + "before": 1692.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 18:05:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2867002243450565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1451.08, + "principal_before": 1692.03, + "principal_data": -240.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2866972809971461, + "account_data": -8.0, + "after": 918.61, + "before": 926.61, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 17:35:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866972756660037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 918.61, + "principal_before": 926.61, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2866941460991941, + "account_data": -120.0, + "after": 1865.48, + "before": 1985.48, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 17:03:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866941416394565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1865.48, + "principal_before": 1985.48, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2866931459346181, + "account_data": -124.92, + "after": 926.61, + "before": 1051.53, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 16:53:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866931436408645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 926.61, + "principal_before": 1051.53, + "principal_data": -124.92 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2866931459198725, + "account_data": -65.08, + "after": 0.0, + "before": 65.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 16:53:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866931436408645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 65.08, + "principal_data": -65.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2866868734594821, + "account_data": -260.0, + "after": 2849.9, + "before": 3109.9, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 15:49:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866868691652485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2849.9, + "principal_before": 3109.9, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2866868734463749, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 15:49:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866868691652485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2866813192129669, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 14:53:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2866812902936517, + "account_data": 3000.0, + "after": 3109.9, + "before": 109.9, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 14:52:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866812900233157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3109.9, + "principal_before": 109.9, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "盛先生", + "memberMobile": "13822271640", + "id": 2866799532675013, + "account_data": -24.0, + "after": 140.0, + "before": 164.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-06 14:39:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866799459012357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207446300421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216901621509, + "tenant_member_id": 2799207447447301, + "principal_after": 140.0, + "principal_before": 164.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2866524733967493, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 09:59:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2866477445353349, + "account_data": -2448.97, + "after": 262.68, + "before": 2711.65, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 09:11:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866477269274373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 262.68, + "principal_before": 2711.65, + "principal_data": -2448.97 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2866477445173125, + "account_data": -111.0, + "after": 0.0, + "before": 111.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 09:11:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866477269274373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 111.0, + "principal_data": -111.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2866179773140869, + "account_data": 3000.0, + "after": 3582.49, + "before": 582.49, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 04:08:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866179769667461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 3582.49, + "principal_before": 582.49, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2866150652743621, + "account_data": -1526.3, + "after": 582.49, + "before": 2108.79, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 03:39:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866150533992261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 582.49, + "principal_before": 2108.79, + "principal_data": -1526.3 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2866150652612549, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 03:39:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866150533992261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2866132158910277, + "account_data": -1632.15, + "after": 109.9, + "before": 1742.05, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 03:20:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866132058197893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 109.9, + "principal_before": 1742.05, + "principal_data": -1632.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2866113950224261, + "account_data": -36.0, + "after": 2.2, + "before": 38.2, + "card_type_id": 2791990152417157, + "create_time": "2025-09-06 03:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866113901694725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 2.2, + "principal_before": 38.2, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2866061783273221, + "account_data": -10.0, + "after": 100.17, + "before": 110.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 02:08:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2866061695832005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 100.17, + "principal_before": 110.17, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2865961142980421, + "account_data": -8.0, + "after": 4820.3, + "before": 4828.3, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 00:26:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865961117618053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 4820.3, + "principal_before": 4828.3, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865954917699333, + "account_data": -276.51, + "after": 404.72, + "before": 681.23, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:20:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865954844331845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 404.72, + "principal_before": 681.23, + "principal_data": -276.51 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2865954654425029, + "account_data": -96.36, + "after": 4828.3, + "before": 4924.66, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 00:19:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865954606911237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 4828.3, + "principal_before": 4924.66, + "principal_data": -96.36 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865954144997253, + "account_data": -206.77, + "after": 681.23, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:19:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865954032619269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 681.23, + "principal_before": 888.0, + "principal_data": -206.77 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865951869620101, + "account_data": 483.28, + "after": 888.0, + "before": 404.72, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:17:02", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865951379951365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 404.72, + "principal_data": 483.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2865951778164677, + "account_data": -8.0, + "after": 79.0, + "before": 87.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:16:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865951756439365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 79.0, + "principal_before": 87.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865951545298757, + "account_data": -483.28, + "after": 404.72, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:16:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865951379951365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 404.72, + "principal_before": 888.0, + "principal_data": -483.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2865949206204165, + "account_data": -468.25, + "after": 4924.66, + "before": 5392.91, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 00:14:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865949082898373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 4924.66, + "principal_before": 5392.91, + "principal_data": -468.25 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2865946971556933, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-06 00:12:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2865938163207941, + "account_data": -789.23, + "after": 669.9, + "before": 1459.13, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 00:03:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865938096361413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 669.9, + "principal_before": 1459.13, + "principal_data": -789.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2865936836005701, + "account_data": 1000.0, + "after": 1459.13, + "before": 459.13, + "card_type_id": 2793249295533893, + "create_time": "2025-09-06 00:01:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865936833515333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1459.13, + "principal_before": 459.13, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2865866846850821, + "account_data": -5.0, + "after": 65.08, + "before": 70.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 22:50:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865866813280069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 65.08, + "principal_before": 70.08, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865815404612677, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 21:58:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865802093924229, + "account_data": -2480.37, + "after": 5948.47, + "before": 8428.84, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 21:44:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865802023899077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5948.47, + "principal_before": 8428.84, + "principal_data": -2480.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2865794588544901, + "account_data": -50.0, + "after": 70.08, + "before": 120.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 21:37:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865794563624837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 70.08, + "principal_before": 120.08, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2865786765053829, + "account_data": -8.0, + "after": 120.08, + "before": 128.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 21:29:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865786744622917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 120.08, + "principal_before": 128.08, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18898608626", + "id": 2865783571238725, + "account_data": -140.39, + "after": 299.61, + "before": 440.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 21:25:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865783491006277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207590971141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217227024133, + "tenant_member_id": 2799207592363781, + "principal_after": 299.61, + "principal_before": 440.0, + "principal_data": -140.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2865782585462597, + "account_data": 5000.0, + "after": 8428.84, + "before": 3428.84, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 21:24:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865782582038341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8428.84, + "principal_before": 3428.84, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2865702406475589, + "account_data": -15.0, + "after": 128.08, + "before": 143.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 20:03:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865702343380805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 128.08, + "principal_before": 143.08, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2865651744132997, + "account_data": -21.0, + "after": 110.17, + "before": 131.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 19:11:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865651675942789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 110.17, + "principal_before": 131.17, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2865587208949701, + "account_data": -13.0, + "after": 87.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 18:06:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865587153211141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 87.0, + "principal_before": 100.0, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2865584376172357, + "account_data": -5.0, + "after": 261.42, + "before": 266.42, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 18:03:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865584265580357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 261.42, + "principal_before": 266.42, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2865583268269893, + "account_data": -233.58, + "after": 266.42, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 18:02:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865583188266949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 266.42, + "principal_before": 500.0, + "principal_data": -233.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2865541197762437, + "account_data": -91.81, + "after": 17230.4, + "before": 17322.21, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 17:19:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865541104094981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 17230.4, + "principal_before": 17322.21, + "principal_data": -91.81 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2865530494127877, + "account_data": -16.0, + "after": 520.0, + "before": 536.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-05 17:08:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865530433589189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 520.0, + "principal_before": 536.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2865529795579781, + "account_data": -161.37, + "after": 591.55, + "before": 752.92, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 17:07:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865529745362757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 591.55, + "principal_before": 752.92, + "principal_data": -161.37 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2865513645805510, + "account_data": -8.0, + "after": 143.08, + "before": 151.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 16:51:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2865513599012805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 143.08, + "principal_before": 151.08, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864653621300997, + "account_data": -8.0, + "after": 151.08, + "before": 159.08, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 02:16:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864653598232389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 151.08, + "principal_before": 159.08, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2864642594279173, + "account_data": -124.53, + "after": 1742.05, + "before": 1866.58, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 02:05:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864642524630917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1742.05, + "principal_before": 1866.58, + "principal_data": -124.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2864596503170885, + "account_data": -23.8, + "after": 0.0, + "before": 23.8, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 01:18:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864596225757125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 23.8, + "principal_data": -23.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2864593482026821, + "account_data": -70.87, + "after": 459.13, + "before": 530.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 01:15:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864593457434565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 459.13, + "principal_before": 530.0, + "principal_data": -70.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864580328263493, + "account_data": -245.92, + "after": 159.08, + "before": 405.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-05 01:01:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864580260089605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 159.08, + "principal_before": 405.0, + "principal_data": -245.92 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2864560652570437, + "account_data": -125.0, + "after": 310.68, + "before": 435.68, + "card_type_id": 2791990152417157, + "create_time": "2025-09-05 00:41:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864560598339525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 310.68, + "principal_before": 435.68, + "principal_data": -125.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2864559640661829, + "account_data": -5.0, + "after": 131.17, + "before": 136.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 00:40:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864559578337157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 131.17, + "principal_before": 136.17, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2864558715490117, + "account_data": -10.0, + "after": 136.17, + "before": 146.17, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 00:39:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864558662405893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 136.17, + "principal_before": 146.17, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2864556073455493, + "account_data": -493.26, + "after": 146.17, + "before": 639.43, + "card_type_id": 2793249295533893, + "create_time": "2025-09-05 00:37:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864555993272261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 146.17, + "principal_before": 639.43, + "principal_data": -493.26 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2864490114256709, + "account_data": -36.0, + "after": 38.2, + "before": 74.2, + "card_type_id": 2791990152417157, + "create_time": "2025-09-04 23:30:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864490076589893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 38.2, + "principal_before": 74.2, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864475099926469, + "account_data": -26.0, + "after": 405.0, + "before": 431.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 23:14:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864475074006789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 405.0, + "principal_before": 431.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864473324343045, + "account_data": -45.0, + "after": 431.0, + "before": 476.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 23:12:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864473245011781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 431.0, + "principal_before": 476.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13602890721", + "id": 2864377803198277, + "account_data": -160.7, + "after": 0.0, + "before": 160.7, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 21:35:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864377496129413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212894406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220063536901, + "tenant_member_id": 2799212895438597, + "principal_after": 0.0, + "principal_before": 160.7, + "principal_data": -160.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2864332776934533, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 20:50:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2864323328675781, + "account_data": -49.0, + "after": 1212.0, + "before": 1261.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-04 20:40:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864323271954181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1212.0, + "principal_before": 1261.0, + "principal_data": -49.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2864322588839877, + "account_data": -415.29, + "after": 2957.52, + "before": 3372.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 20:39:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864322525056965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2957.52, + "principal_before": 3372.81, + "principal_data": -415.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2864322324483909, + "account_data": 3000.0, + "after": 3372.81, + "before": 372.81, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 20:39:23", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864322321649477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 3372.81, + "principal_before": 372.81, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13602890721", + "id": 2864244351487941, + "account_data": -479.3, + "after": 160.7, + "before": 640.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 19:20:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864244238946181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212894406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220063536901, + "tenant_member_id": 2799212895438597, + "principal_after": 160.7, + "principal_before": 640.0, + "principal_data": -479.3 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2864225670254405, + "account_data": -10.0, + "after": 639.43, + "before": 649.43, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 19:01:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864225637814021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 639.43, + "principal_before": 649.43, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2864206322175877, + "account_data": -5.0, + "after": 5392.91, + "before": 5397.91, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 18:41:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864206256180997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 5392.91, + "principal_before": 5397.91, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2864150149418757, + "account_data": -470.0, + "after": 530.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 17:44:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864150090288901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 530.0, + "principal_before": 1000.0, + "principal_data": -470.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2864150149271301, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 17:44:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864150090288901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2864149819837509, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 17:43:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2864149621067525, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 17:43:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864149617676037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864148812615429, + "account_data": -6.0, + "after": 476.0, + "before": 482.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 17:42:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864148790300613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 476.0, + "principal_before": 482.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2864124730953669, + "account_data": -389.0, + "after": 111.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 17:18:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864124586872773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 111.0, + "principal_before": 500.0, + "principal_data": -389.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2864119040429957, + "account_data": -21.0, + "after": 710.12, + "before": 731.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 17:12:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864118955446021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 710.12, + "principal_before": 731.12, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864105324367749, + "account_data": -2.0, + "after": 482.0, + "before": 484.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 16:58:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864105306034117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 482.0, + "principal_before": 484.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2864103257165573, + "account_data": -8.0, + "after": 484.0, + "before": 492.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 16:56:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2864103237701445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 484.0, + "principal_before": 492.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2863227883163461, + "account_data": -609.09, + "after": 1866.58, + "before": 2475.67, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 02:06:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863227827638213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 1866.58, + "principal_before": 2475.67, + "principal_data": -609.09 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2863227883016005, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 02:06:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863227827638213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2863225063428037, + "account_data": -939.27, + "after": 3428.84, + "before": 4368.11, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 02:03:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863224857202437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3428.84, + "principal_before": 4368.11, + "principal_data": -939.27 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2863225063280581, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 02:03:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863224857202437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2863185213983877, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-04 01:22:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2863184944779013, + "account_data": -802.29, + "after": 649.43, + "before": 1451.72, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 01:22:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863184880914181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 649.43, + "principal_before": 1451.72, + "principal_data": -802.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2863109089120069, + "account_data": -92.53, + "after": 752.92, + "before": 845.45, + "card_type_id": 2793249295533893, + "create_time": "2025-09-04 00:05:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863109048635205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 752.92, + "principal_before": 845.45, + "principal_data": -92.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2863089102393221, + "account_data": -8.0, + "after": 691.42, + "before": 699.42, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 23:44:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863089045835589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 691.42, + "principal_before": 699.42, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2863057711386373, + "account_data": -71.0, + "after": 7109.35, + "before": 7180.35, + "card_type_id": 2791990152417157, + "create_time": "2025-09-03 23:12:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863057659498437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 7109.35, + "principal_before": 7180.35, + "principal_data": -71.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2863057306832645, + "account_data": -300.58, + "after": 699.42, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 23:12:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863057200172997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 699.42, + "principal_before": 1000.0, + "principal_data": -300.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2863052790550277, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 23:07:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863052787617541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "符先生", + "memberMobile": "13622281724", + "id": 2863016205487941, + "account_data": -49.45, + "after": 0.0, + "before": 49.45, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 22:30:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863015515901893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212869863173, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220033865477, + "tenant_member_id": 2799212870829829, + "principal_after": 0.0, + "principal_before": 49.45, + "principal_data": -49.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2863002622103429, + "account_data": -513.53, + "after": 1692.03, + "before": 2205.56, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 22:16:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2863002575474629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 1692.03, + "principal_before": 2205.56, + "principal_data": -513.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2862986424143621, + "account_data": -57.47, + "after": 154.53, + "before": 212.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 22:00:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2862986386067205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 154.53, + "principal_before": 212.0, + "principal_data": -57.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2862879849369477, + "account_data": -48.0, + "after": 610.02, + "before": 658.02, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 20:12:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2862879787569093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 610.02, + "principal_before": 658.02, + "principal_data": -48.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2862863795490629, + "account_data": -8.0, + "after": 492.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 19:55:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2862863733542853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 492.0, + "principal_before": 500.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2862809521523845, + "account_data": 1000.0, + "after": 1264.74, + "before": 264.74, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 19:00:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 1264.74, + "principal_before": 264.74, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2862800058912581, + "account_data": -5.0, + "after": 5397.91, + "before": 5402.91, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 18:50:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2862800007892933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 5397.91, + "principal_before": 5402.91, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2862762023227205, + "account_data": -199.54, + "after": 0.0, + "before": 199.54, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 18:12:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2862761561198469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 199.54, + "principal_data": -199.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2862302267329669, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 10:24:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2862302213295237, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 10:24:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2861958761041733, + "account_data": -16.0, + "after": 2711.65, + "before": 2727.65, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 04:35:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861958742560709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 2711.65, + "principal_before": 2727.65, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2861940080529349, + "account_data": -10.0, + "after": 731.12, + "before": 741.12, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 04:16:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861939955945349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 731.12, + "principal_before": 741.12, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2861930819801029, + "account_data": -1370.03, + "after": 2727.65, + "before": 4097.68, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 04:06:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861930778136325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 2727.65, + "principal_before": 4097.68, + "principal_data": -1370.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2861930819637189, + "account_data": -389.64, + "after": 5228.36, + "before": 5618.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-03 04:06:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861930778136325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 5228.36, + "principal_before": 5618.0, + "principal_data": -389.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2861928815693637, + "account_data": 3000.0, + "after": 4097.68, + "before": 1097.68, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 04:04:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861928813055813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 4097.68, + "principal_before": 1097.68, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2861865902968645, + "account_data": -331.08, + "after": 1451.72, + "before": 1782.8, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 03:00:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861865837121477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1451.72, + "principal_before": 1782.8, + "principal_data": -331.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2861823389421317, + "account_data": -98.9, + "after": 1782.8, + "before": 1881.7, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 02:17:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861823326916357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1782.8, + "principal_before": 1881.7, + "principal_data": -98.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2861795735015301, + "account_data": -1530.12, + "after": 4368.11, + "before": 5898.23, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 01:49:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861795646623493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4368.11, + "principal_before": 5898.23, + "principal_data": -1530.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2861795734851461, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-03 01:49:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861795646623493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2861772045668229, + "account_data": 3000.0, + "after": 5898.23, + "before": 2898.23, + "card_type_id": 2793249295533893, + "create_time": "2025-09-03 01:25:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861772042669957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5898.23, + "principal_before": 2898.23, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2861768618495749, + "account_data": -5.0, + "after": 536.0, + "before": 541.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-03 01:21:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861768540491653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 536.0, + "principal_before": 541.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2861701612621637, + "account_data": -36.0, + "after": 74.2, + "before": 110.2, + "card_type_id": 2791990152417157, + "create_time": "2025-09-03 00:13:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861701539172165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 74.2, + "principal_before": 110.2, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2861684800573381, + "account_data": -513.63, + "after": 1881.7, + "before": 2395.33, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 23:56:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861684279955205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1881.7, + "principal_before": 2395.33, + "principal_data": -513.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2861667087060933, + "account_data": -45.0, + "after": 2395.33, + "before": 2440.33, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 23:38:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861667035123589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2395.33, + "principal_before": 2440.33, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2861639233392453, + "account_data": -43.0, + "after": 1261.0, + "before": 1304.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-02 23:10:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861639170166533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1261.0, + "principal_before": 1304.0, + "principal_data": -43.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2861638614077317, + "account_data": -198.55, + "after": 372.81, + "before": 571.36, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 23:09:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861638514724677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 372.81, + "principal_before": 571.36, + "principal_data": -198.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2861634092339141, + "account_data": -30.0, + "after": 54.97, + "before": 84.97, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 23:04:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861634056114053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 54.97, + "principal_before": 84.97, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2861477854186949, + "account_data": -45.0, + "after": 2440.33, + "before": 2485.33, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 20:25:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861477778443525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2440.33, + "principal_before": 2485.33, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2861270218690053, + "account_data": -500.73, + "after": 17322.21, + "before": 17822.94, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 16:54:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2861270124465669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 17322.21, + "principal_before": 17822.94, + "principal_data": -500.73 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2860909782223749, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-02 10:47:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2860909711788933, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-02 10:47:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2860370255449157, + "account_data": -412.12, + "after": 17822.94, + "before": 18235.06, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 01:39:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860370176134661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 17822.94, + "principal_before": 18235.06, + "principal_data": -412.12 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2860370255301701, + "account_data": -133.6, + "after": 1640.4, + "before": 1774.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-02 01:39:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860370176134661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1640.4, + "principal_before": 1774.0, + "principal_data": -133.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2860308236995717, + "account_data": -524.33, + "after": 2475.67, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 00:36:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860308183272965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 2475.67, + "principal_before": 3000.0, + "principal_data": -524.33 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2860298831449157, + "account_data": -6.0, + "after": 2485.33, + "before": 2491.33, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 00:26:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860298729770501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2485.33, + "principal_before": 2491.33, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2860286362471941, + "account_data": -232.39, + "after": 2491.33, + "before": 2723.72, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 00:13:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860286287367301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2491.33, + "principal_before": 2723.72, + "principal_data": -232.39 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2860286362340869, + "account_data": -308.0, + "after": 0.0, + "before": 308.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-02 00:13:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860286287367301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 308.0, + "principal_data": -308.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2860285364898885, + "account_data": -1621.88, + "after": 199.54, + "before": 1821.42, + "card_type_id": 2793249295533893, + "create_time": "2025-09-02 00:12:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860285316484613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 199.54, + "principal_before": 1821.42, + "principal_data": -1621.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2860264798768645, + "account_data": -501.77, + "after": 0.0, + "before": 501.77, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 23:51:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860264467123397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 0.0, + "principal_before": 501.77, + "principal_data": -501.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2860250832604293, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 23:37:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860250829999237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2860249535811077, + "account_data": -94.26, + "after": 531.65, + "before": 625.91, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 23:36:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860249510170117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 531.65, + "principal_before": 625.91, + "principal_data": -94.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张", + "memberMobile": "15920272681", + "id": 2860135945506309, + "account_data": -71.95, + "after": 37.05, + "before": 109.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 21:40:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860135922175109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212827379461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860045549603973, + "tenant_member_id": 2860045549128837, + "principal_after": 37.05, + "principal_before": 109.0, + "principal_data": -71.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2860117774077125, + "account_data": 1000.0, + "after": 1376.88, + "before": 376.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 21:22:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860117767441605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1376.88, + "principal_before": 376.88, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2860102408571973, + "account_data": -57.98, + "after": 658.02, + "before": 716.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 21:06:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860102334237765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 658.02, + "principal_before": 716.0, + "principal_data": -57.98 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李", + "memberMobile": "13189179882", + "id": 2860084398836613, + "account_data": 716.0, + "after": 716.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 20:48:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860039882673285, + "tenant_member_id": 2860039721438277, + "principal_after": 716.0, + "principal_before": 0.0, + "principal_data": 716.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张", + "memberMobile": "15920272681", + "id": 2860084345768837, + "account_data": 109.0, + "after": 109.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 20:48:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212827379461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2860045549603973, + "tenant_member_id": 2860045549128837, + "principal_after": 109.0, + "principal_before": 0.0, + "principal_data": 109.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2860071493258757, + "account_data": -450.0, + "after": 376.88, + "before": 826.88, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 20:35:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860071386320389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 376.88, + "principal_before": 826.88, + "principal_data": -450.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2860071493111301, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 20:35:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2860071386320389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2859935541480645, + "account_data": -47.0, + "after": 1304.0, + "before": 1351.0, + "card_type_id": 2791990152417157, + "create_time": "2025-09-01 18:16:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859935482530949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1304.0, + "principal_before": 1351.0, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2859934269361349, + "account_data": -216.74, + "after": 571.36, + "before": 788.1, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 18:15:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859933928050181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 571.36, + "principal_before": 788.1, + "principal_data": -216.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2859922605182085, + "account_data": -2.0, + "after": 308.0, + "before": 310.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 18:03:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859922584292869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 308.0, + "principal_before": 310.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2859919575239813, + "account_data": -190.0, + "after": 310.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 18:00:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859919496481989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 310.0, + "principal_before": 500.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2859891827084421, + "account_data": -5.0, + "after": 81.34, + "before": 86.34, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 17:32:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859891785272517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 81.34, + "principal_before": 86.34, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2859890842782789, + "account_data": -195.73, + "after": 86.34, + "before": 282.07, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 17:31:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859890775068165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 86.34, + "principal_before": 282.07, + "principal_data": -195.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2859875714878533, + "account_data": -408.02, + "after": 25.25, + "before": 433.27, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 17:16:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2859875616951365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 25.25, + "principal_before": 433.27, + "principal_data": -408.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2858935525148421, + "account_data": -28.0, + "after": 23.8, + "before": 51.8, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 01:19:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858935504504773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 23.8, + "principal_before": 51.8, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2858935207200453, + "account_data": -971.66, + "after": 51.8, + "before": 1023.46, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 01:19:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858935139944261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 51.8, + "principal_before": 1023.46, + "principal_data": -971.66 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2858935207052997, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 01:19:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858935139944261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2858934490285701, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 01:18:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2858934362162821, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 01:18:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2858933083457477, + "account_data": 1000.0, + "after": 1023.46, + "before": 23.46, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 01:17:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858933080377285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 1023.46, + "principal_before": 23.46, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2858884573087429, + "account_data": -10.0, + "after": 990.0, + "before": 1000.0, + "card_type_id": 2794699703437125, + "create_time": "2025-09-01 00:27:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858884552132549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 990.0, + "principal_before": 1000.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2858873721210693, + "account_data": -8.0, + "after": 61.0, + "before": 69.0, + "card_type_id": 2793266846533445, + "create_time": "2025-09-01 00:16:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858873684674501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 61.0, + "principal_before": 69.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2858870953002949, + "account_data": -624.8, + "after": 2898.23, + "before": 3523.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 00:13:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858870808430405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2898.23, + "principal_before": 3523.03, + "principal_data": -624.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2858870142633669, + "account_data": 3000.0, + "after": 3523.03, + "before": 523.03, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 00:13:08", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858870140126917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3523.03, + "principal_before": 523.03, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2858867223103173, + "account_data": -881.13, + "after": 1821.42, + "before": 2702.55, + "card_type_id": 2793249295533893, + "create_time": "2025-09-01 00:10:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858867152701253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1821.42, + "principal_before": 2702.55, + "principal_data": -881.13 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2858856279934725, + "account_data": -27.0, + "after": 76.0, + "before": 103.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-31 23:59:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858856201291461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216443164421, + "tenant_member_id": 2799207317735173, + "principal_after": 76.0, + "principal_before": 103.0, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2858852494100421, + "account_data": -5.0, + "after": 69.0, + "before": 74.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 23:55:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858852359587525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 69.0, + "principal_before": 74.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2858811440662213, + "account_data": -10.0, + "after": 74.0, + "before": 84.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 23:13:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858811122468549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 74.0, + "principal_before": 84.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2858800635889413, + "account_data": -32.0, + "after": 1336.97, + "before": 1368.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-31 23:02:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858800453584837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1336.97, + "principal_before": 1368.97, + "principal_data": -32.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2858690671445701, + "account_data": -697.46, + "after": 523.03, + "before": 1220.49, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 21:10:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858690339374917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 523.03, + "principal_before": 1220.49, + "principal_data": -697.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2858676515129093, + "account_data": -185.21, + "after": 2205.56, + "before": 2390.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 20:56:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858676441171717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2205.56, + "principal_before": 2390.77, + "principal_data": -185.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2858657773913925, + "account_data": -5.0, + "after": 1524.86, + "before": 1529.86, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 20:37:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858657669826501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1524.86, + "principal_before": 1529.86, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2858527002183621, + "account_data": -144.0, + "after": 1985.48, + "before": 2129.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 18:24:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858526952261381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1985.48, + "principal_before": 2129.48, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2858503307118213, + "account_data": 400.0, + "after": 500.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 17:59:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 500.0, + "principal_before": 100.0, + "principal_data": 400.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2858501243619077, + "account_data": -8.0, + "after": 1368.97, + "before": 1376.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-31 17:57:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858501186275013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1368.97, + "principal_before": 1376.97, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2858458109052613, + "account_data": -47.0, + "after": 501.77, + "before": 548.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 17:13:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2858458032604869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 501.77, + "principal_before": 548.77, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2858019440120389, + "account_data": 600.0, + "after": 600.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 09:47:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805122111327429, + "tenant_member_id": 2799207575848709, + "principal_after": 600.0, + "principal_before": 0.0, + "principal_data": 600.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2858019307442757, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 09:47:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2858019252032069, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 09:47:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2857629415606021, + "account_data": -93.42, + "after": 2723.72, + "before": 2817.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 03:11:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857629282289605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2723.72, + "principal_before": 2817.14, + "principal_data": -93.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857598757308165, + "account_data": -3047.17, + "after": 1051.53, + "before": 4098.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:39:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857598678910661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1051.53, + "principal_before": 4098.7, + "principal_data": -3047.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857597207611333, + "account_data": 3048.0, + "after": 4098.7, + "before": 1050.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:38:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857597205137349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 4098.7, + "principal_before": 1050.7, + "principal_data": 3048.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2857565331769093, + "account_data": 2000.0, + "after": 2817.14, + "before": 817.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:05:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857565328852741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2817.14, + "principal_before": 817.14, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2857564321842949, + "account_data": -192.8, + "after": 2702.55, + "before": 2895.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:04:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857564256306949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2702.55, + "principal_before": 2895.35, + "principal_data": -192.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2857563661207493, + "account_data": -189.0, + "after": 817.14, + "before": 1006.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:04:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857563630405381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 817.14, + "principal_before": 1006.14, + "principal_data": -189.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2857563300497157, + "account_data": 1000.0, + "after": 1006.14, + "before": 6.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 02:03:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857563297974021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1006.14, + "principal_before": 6.14, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2857515574658821, + "account_data": -312.31, + "after": 365.92, + "before": 678.23, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 01:15:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857515476551493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 365.92, + "principal_before": 678.23, + "principal_data": -312.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2857515574527749, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 01:15:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857515476551493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747562769541, + "tenant_member_id": 2847747357002757, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2857467495925573, + "account_data": -104.65, + "after": 2895.35, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 00:26:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857467226556357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2895.35, + "principal_before": 3000.0, + "principal_data": -104.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2857467495761733, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-31 00:26:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857467226556357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2857455657863109, + "account_data": -2796.67, + "after": 1701.11, + "before": 4497.78, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 00:14:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857455596783557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 1701.11, + "principal_before": 4497.78, + "principal_data": -2796.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2857455044888261, + "account_data": 4000.0, + "after": 4497.78, + "before": 497.78, + "card_type_id": 2793249295533893, + "create_time": "2025-08-31 00:13:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857455042447045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 4497.78, + "principal_before": 497.78, + "principal_data": 4000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2857439956698821, + "account_data": -20.0, + "after": 1376.97, + "before": 1396.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-30 23:58:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857439842125509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1376.97, + "principal_before": 1396.97, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2857437646177989, + "account_data": -190.0, + "after": 84.97, + "before": 274.97, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 23:55:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857437609625413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 84.97, + "principal_before": 274.97, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2857401448089541, + "account_data": -120.0, + "after": 2129.48, + "before": 2249.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 23:19:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857401405245253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2129.48, + "principal_before": 2249.48, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2857353539356613, + "account_data": -350.73, + "after": 0.0, + "before": 350.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 22:30:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857353223653125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 350.73, + "principal_data": -350.73 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2857350483658565, + "account_data": -10.0, + "after": 1396.97, + "before": 1406.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-30 22:27:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857350332614341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1396.97, + "principal_before": 1406.97, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857245121906437, + "account_data": -121.0, + "after": 1050.7, + "before": 1171.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 20:40:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857245078898629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1050.7, + "principal_before": 1171.7, + "principal_data": -121.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2857222441649861, + "account_data": -570.0, + "after": 274.97, + "before": 844.97, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 20:17:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857222400313285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 274.97, + "principal_before": 844.97, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2857210733053637, + "account_data": -1902.32, + "after": 1097.68, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 20:05:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857210666698565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 1097.68, + "principal_before": 3000.0, + "principal_data": -1902.32 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2857210732381893, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 20:05:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857210666698565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2857186294892165, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 19:40:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2857185788348165, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 19:39:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857185785841413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857177478219525, + "account_data": -44.0, + "after": 1171.7, + "before": 1215.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 19:31:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857177439258565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1171.7, + "principal_before": 1215.7, + "principal_data": -44.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2857165220497349, + "account_data": -12.0, + "after": 282.07, + "before": 294.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 19:18:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857165176473286, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 282.07, + "principal_before": 294.07, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857162362652485, + "account_data": -3784.3, + "after": 1215.7, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 19:15:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857162322822853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1215.7, + "principal_before": 5000.0, + "principal_data": -3784.3 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857162362505029, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 19:15:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857162322822853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857161605141061, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 19:15:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2857160724891397, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 19:14:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857160722335493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2857105561486981, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 18:18:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2857104326641413, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 18:16:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857104323856133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2857103695611845, + "account_data": -8.0, + "after": 6.14, + "before": 14.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 18:16:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857103635809989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 6.14, + "principal_before": 14.14, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2857060299458245, + "account_data": -15.0, + "after": 541.0, + "before": 556.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-30 17:32:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857060244113157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 541.0, + "principal_before": 556.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2857047366993669, + "account_data": -119.14, + "after": 2249.48, + "before": 2368.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 17:18:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857047330113477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2249.48, + "principal_before": 2368.62, + "principal_data": -119.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2857033477687109, + "account_data": -8.0, + "after": 84.0, + "before": 92.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 17:04:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2857033422653253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 84.0, + "principal_before": 92.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2856912175367941, + "account_data": -12.0, + "after": 1406.97, + "before": 1418.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-30 15:01:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856912103261957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1406.97, + "principal_before": 1418.97, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2856331825547077, + "account_data": -3000.0, + "after": 0.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 05:11:01", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856331821188933, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 3000.0, + "principal_data": -3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2856323380905733, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 05:02:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856323378448133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2856211227313861, + "account_data": -988.04, + "after": 1220.49, + "before": 2208.53, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 03:08:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856211078055749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1220.49, + "principal_before": 2208.53, + "principal_data": -988.04 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2856211227166405, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 03:08:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856211078055749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2856159327913733, + "account_data": -147.81, + "after": 350.73, + "before": 498.54, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 02:15:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856159279646469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 350.73, + "principal_before": 498.54, + "principal_data": -147.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2856095807735557, + "account_data": -182.0, + "after": 157.07, + "before": 339.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 01:10:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856095666308933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 157.07, + "principal_before": 339.07, + "principal_data": -182.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2856064446908101, + "account_data": -666.53, + "after": 498.54, + "before": 1165.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 00:39:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856064404113093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 498.54, + "principal_before": 1165.07, + "principal_data": -666.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2856058424624965, + "account_data": -542.65, + "after": 1165.07, + "before": 1707.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 00:32:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856058381912005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1165.07, + "principal_before": 1707.72, + "principal_data": -542.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2856055744382917, + "account_data": -786.35, + "after": 1707.72, + "before": 2494.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-30 00:30:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856055656187717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1707.72, + "principal_before": 2494.07, + "principal_data": -786.35 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2856055744235461, + "account_data": -310.0, + "after": 0.0, + "before": 310.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-30 00:30:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856055656187717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 310.0, + "principal_data": -310.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2856017439016709, + "account_data": -96.0, + "after": 2368.62, + "before": 2464.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 23:51:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856017396500165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2368.62, + "principal_before": 2464.62, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2856005990664133, + "account_data": -5.0, + "after": 1418.97, + "before": 1423.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-29 23:39:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2856005926258437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1418.97, + "principal_before": 1423.97, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2855924137133893, + "account_data": -10.0, + "after": 14.0, + "before": 24.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 22:16:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855924058982341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 14.0, + "principal_before": 24.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2855823544354629, + "account_data": -12.0, + "after": 1423.97, + "before": 1435.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-29 20:33:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855823481718533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1423.97, + "principal_before": 1435.97, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2855812783572805, + "account_data": -190.0, + "after": 310.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 20:23:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855812757767877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 310.0, + "principal_before": 500.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2855768189388485, + "account_data": -8.0, + "after": 92.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 19:37:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855768162060229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 92.0, + "principal_before": 100.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2855712386434821, + "account_data": -156.85, + "after": 177.51, + "before": 334.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 18:40:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855712227346117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 177.51, + "principal_before": 334.36, + "principal_data": -156.85 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2855712386287365, + "account_data": -83.0, + "after": 0.0, + "before": 83.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 18:40:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855712227346117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2839012675143813, + "tenant_member_id": 2799212577998597, + "principal_after": 0.0, + "principal_before": 83.0, + "principal_data": -83.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2855607635937093, + "account_data": -1412.67, + "after": 0.0, + "before": 1412.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 16:54:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855607561586373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 0.0, + "principal_before": 1412.67, + "principal_data": -1412.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2855546386564741, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 15:52:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2855546300548741, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 15:51:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2855486022715205, + "account_data": -14.0, + "after": 1435.97, + "before": 1449.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-29 14:50:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855485936305861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1435.97, + "principal_before": 1449.97, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2855416865605445, + "account_data": -52.0, + "after": 1871.0, + "before": 1923.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-29 13:40:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855416798889669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 1871.0, + "principal_before": 1923.0, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2855416383063749, + "account_data": -51.99, + "after": 1742.26, + "before": 1794.25, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 13:39:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2855416283432901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 1742.26, + "principal_before": 1794.25, + "principal_data": -51.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2854913166100293, + "account_data": -1486.36, + "after": 2208.53, + "before": 3694.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 05:07:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854913054279493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2208.53, + "principal_before": 3694.89, + "principal_data": -1486.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2854912867272517, + "account_data": 3000.0, + "after": 3694.89, + "before": 694.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 05:07:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854912864765765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3694.89, + "principal_before": 694.89, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2854849471383365, + "account_data": -505.93, + "after": 2494.07, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 04:03:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854849304872773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 2494.07, + "principal_before": 3000.0, + "principal_data": -505.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2854848861832965, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 04:02:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854848858425093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2854718972249861, + "account_data": -76.14, + "after": 914.58, + "before": 990.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 01:50:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854718907418437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 914.58, + "principal_before": 990.72, + "principal_data": -76.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2854667185866501, + "account_data": -117.17, + "after": 234.83, + "before": 352.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 00:57:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854667044571077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 234.83, + "principal_before": 352.0, + "principal_data": -117.17 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2854665182185413, + "account_data": -31.0, + "after": 103.0, + "before": 134.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-29 00:55:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854665136899845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216443164421, + "tenant_member_id": 2799207317735173, + "principal_after": 103.0, + "principal_before": 134.0, + "principal_data": -31.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2854664479508165, + "account_data": -185.28, + "after": 0.0, + "before": 185.28, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 00:54:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854664178403077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216455010053, + "tenant_member_id": 2799207317735173, + "principal_after": 0.0, + "principal_before": 185.28, + "principal_data": -185.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2854629630707653, + "account_data": -8.0, + "after": 14.14, + "before": 22.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 00:19:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854629609604805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 14.14, + "principal_before": 22.14, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2854615895771077, + "account_data": -61.82, + "after": 0.0, + "before": 61.82, + "card_type_id": 2793249295533893, + "create_time": "2025-08-29 00:05:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854615530604293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 61.82, + "principal_data": -61.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2854612778338054, + "account_data": -90.0, + "after": 661.52, + "before": 751.52, + "card_type_id": 2793266846533445, + "create_time": "2025-08-29 00:02:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854612737804037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 661.52, + "principal_before": 751.52, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2854600952760133, + "account_data": -10.0, + "after": 22.14, + "before": 32.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 23:50:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854600916797381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 22.14, + "principal_before": 32.14, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2854596429891269, + "account_data": -68.29, + "after": 845.45, + "before": 913.74, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 23:45:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854596249093829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 845.45, + "principal_before": 913.74, + "principal_data": -68.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2854596429727429, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 23:45:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854596249093829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2854459270481861, + "account_data": -20.0, + "after": 1449.97, + "before": 1469.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 21:26:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854459213252293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1449.97, + "principal_before": 1469.97, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2854402800846661, + "account_data": -45.0, + "after": 548.77, + "before": 593.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 20:28:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854402779547589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 548.77, + "principal_before": 593.77, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 2854370981627845, + "account_data": -8.0, + "after": 541.0, + "before": 549.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 19:56:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854370939127493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164219332293, + "tenant_member_id": 2854163871024645, + "principal_after": 541.0, + "principal_before": 549.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 2854369225868997, + "account_data": -24.0, + "after": 886.0, + "before": 910.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 19:54:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854369179191109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164266387205, + "tenant_member_id": 2854163871024645, + "principal_after": 886.0, + "principal_before": 910.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 2854367835441093, + "account_data": -24.0, + "after": 549.0, + "before": 573.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 19:53:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854367767185221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164219332293, + "tenant_member_id": 2854163871024645, + "principal_after": 549.0, + "principal_before": 573.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2854251554097093, + "account_data": -25.0, + "after": 826.88, + "before": 851.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 17:54:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854251462051589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 826.88, + "principal_before": 851.88, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2854206351509317, + "account_data": -17.0, + "after": 1469.97, + "before": 1486.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 17:08:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854206258480837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1469.97, + "principal_before": 1486.97, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2854172413757381, + "account_data": -8.0, + "after": 1486.97, + "before": 1494.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 16:34:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2854172319827653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1486.97, + "principal_before": 1494.97, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2854165831763589, + "account_data": 451.0, + "after": 886.0, + "before": 435.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 16:27:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853882120703749, + "tenant_member_id": 2853881398644101, + "principal_after": 886.0, + "principal_before": 435.0, + "principal_data": 451.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 2854165538064005, + "account_data": 573.0, + "after": 573.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 16:27:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164219332293, + "tenant_member_id": 2854163871024645, + "principal_after": 573.0, + "principal_before": 0.0, + "principal_data": 573.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "18927551908", + "id": 2854165469415045, + "account_data": 910.0, + "after": 910.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 16:27:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2854164266387205, + "tenant_member_id": 2854163871024645, + "principal_after": 910.0, + "principal_before": 0.0, + "principal_data": 910.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853999875313413, + "account_data": -60.0, + "after": 1923.0, + "before": 1983.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 13:38:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853999795015557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 1923.0, + "principal_before": 1983.0, + "principal_data": -60.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853999240285957, + "account_data": -16.0, + "after": 435.0, + "before": 451.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 13:38:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853999171194757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853882120703749, + "tenant_member_id": 2853881398644101, + "principal_after": 435.0, + "principal_before": 451.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853998993919813, + "account_data": -59.75, + "after": 1794.25, + "before": 1854.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 13:37:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853998841515717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 1794.25, + "principal_before": 1854.0, + "principal_data": -59.75 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853982068706693, + "account_data": -1854.0, + "after": 1854.0, + "before": 3708.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 13:20:44", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 1854.0, + "principal_before": 3708.0, + "principal_data": -1854.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853981763079557, + "account_data": -1983.0, + "after": 1983.0, + "before": 3966.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 13:20:25", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 1983.0, + "principal_before": 3966.0, + "principal_data": -1983.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853903072727237, + "account_data": 1983.0, + "after": 3966.0, + "before": 1983.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 12:00:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 3966.0, + "principal_before": 1983.0, + "principal_data": 1983.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853903013204165, + "account_data": 1854.0, + "after": 3708.0, + "before": 1854.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 12:00:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 3708.0, + "principal_before": 1854.0, + "principal_data": 1854.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853888571477381, + "account_data": 1854.0, + "after": 1854.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 11:45:37", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853881757159301, + "tenant_member_id": 2853881398644101, + "principal_after": 1854.0, + "principal_before": 0.0, + "principal_data": 1854.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853888266210693, + "account_data": 451.0, + "after": 451.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-28 11:45:18", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853882120703749, + "tenant_member_id": 2853881398644101, + "principal_after": 451.0, + "principal_before": 0.0, + "principal_data": 451.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士", + "memberMobile": "17727637538", + "id": 2853888019451269, + "account_data": 1983.0, + "after": 1983.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-28 11:45:03", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853883412664005, + "tenant_member_id": 2853881398644101, + "principal_after": 1983.0, + "principal_before": 0.0, + "principal_data": 1983.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853826875330693, + "account_data": 212.0, + "after": 212.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 10:42:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 212.0, + "principal_before": 0.0, + "principal_data": 212.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853824271257413, + "account_data": -272.0, + "after": 0.24, + "before": 272.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 10:40:12", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853824266129221, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 0.24, + "principal_before": 272.24, + "principal_data": -272.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853823975329157, + "account_data": 60.0, + "after": 272.24, + "before": 212.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 10:39:54", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 272.24, + "principal_before": 212.24, + "principal_data": 60.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853823341710725, + "account_data": -544.0, + "after": 0.0, + "before": 544.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 10:39:16", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 0.0, + "principal_before": 544.0, + "principal_data": -544.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853821531098501, + "account_data": 272.0, + "after": 544.0, + "before": 272.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 10:37:25", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 544.0, + "principal_before": 272.0, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853818537495941, + "account_data": -272.0, + "after": 212.24, + "before": 484.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 10:34:22", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 212.24, + "principal_before": 484.24, + "principal_data": -272.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853816194338181, + "account_data": 272.0, + "after": 484.24, + "before": 212.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 10:31:59", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 484.24, + "principal_before": 212.24, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853799496945861, + "account_data": 272.0, + "after": 272.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 10:15:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2853799025233797, + "tenant_member_id": 2852938817408709, + "principal_after": 272.0, + "principal_before": 0.0, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2853506415907013, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 05:16:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2853486464896709, + "account_data": -2987.52, + "after": 851.88, + "before": 3839.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 04:56:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853486378897285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 851.88, + "principal_before": 3839.4, + "principal_data": -2987.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2853486464765637, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 04:56:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853486378897285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2853485654167429, + "account_data": 3000.0, + "after": 3839.4, + "before": 839.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 04:55:45", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853485651742597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 3839.4, + "principal_before": 839.4, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2853316532948805, + "account_data": -183.84, + "after": 61.82, + "before": 245.66, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 02:03:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853316351020933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 61.82, + "principal_before": 245.66, + "principal_data": -183.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2853316532784965, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 02:03:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853316351020933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2853299118215365, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 01:46:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2853200028421893, + "account_data": -448.7, + "after": 371.39, + "before": 820.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-28 00:05:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853199757348741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 371.39, + "principal_before": 820.09, + "principal_data": -448.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2853200028274437, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-28 00:05:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853199757348741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2853187790360261, + "account_data": -754.34, + "after": 245.66, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 23:52:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853187708555077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 245.66, + "principal_before": 1000.0, + "principal_data": -754.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2853187331641157, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 23:52:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853187328675653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2853154916339525, + "account_data": -98.82, + "after": 2464.62, + "before": 2563.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 23:19:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853154823261893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2464.62, + "principal_before": 2563.44, + "principal_data": -98.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2853142144323269, + "account_data": -279.42, + "after": 339.07, + "before": 618.49, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 23:06:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853142056914821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 339.07, + "principal_before": 618.49, + "principal_data": -279.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2853059335491397, + "account_data": -59.76, + "after": 212.24, + "before": 272.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 21:42:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853059291811717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 212.24, + "principal_before": 272.0, + "principal_data": -59.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2853012754272005, + "account_data": -28.0, + "after": 23.46, + "before": 51.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 20:54:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2853012690259653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 23.46, + "principal_before": 51.46, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月", + "memberMobile": "19802010700", + "id": 2852939174432645, + "account_data": 272.0, + "after": 272.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 19:39:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2852939171532677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2852938817638085, + "tenant_member_id": 2852938817408709, + "principal_after": 272.0, + "principal_before": 0.0, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2852929874628741, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-27 19:30:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2852844777606981, + "account_data": -141.48, + "after": 751.52, + "before": 893.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-27 18:03:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2852844695670469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 751.52, + "principal_before": 893.0, + "principal_data": -141.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2852816715812677, + "account_data": -218.72, + "after": 913.74, + "before": 1132.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 17:35:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2852816666758853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 913.74, + "principal_before": 1132.46, + "principal_data": -218.72 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2852810901671749, + "account_data": -305.82, + "after": 51.46, + "before": 357.28, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 17:29:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2852810833956613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 51.46, + "principal_before": 357.28, + "principal_data": -305.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2852681494335365, + "account_data": 1000.0, + "after": 1132.46, + "before": 132.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 15:17:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2852681491566469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1132.46, + "principal_before": 132.46, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2851933159133061, + "account_data": -724.77, + "after": 18235.06, + "before": 18959.83, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 02:36:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851933102460613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 18235.06, + "principal_before": 18959.83, + "principal_data": -724.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2851932433862469, + "account_data": -319.34, + "after": 497.78, + "before": 817.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 02:35:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851932340489925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 497.78, + "principal_before": 817.12, + "principal_data": -319.34 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2851896339877573, + "account_data": -84.0, + "after": 110.2, + "before": 194.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-27 01:59:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851896300130117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 110.2, + "principal_before": 194.2, + "principal_data": -84.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2851875013119880, + "account_data": -85.0, + "after": 134.0, + "before": 219.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-27 01:37:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851874950107013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216443164421, + "tenant_member_id": 2799207317735173, + "principal_after": 134.0, + "principal_before": 219.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2851870058090373, + "account_data": -187.72, + "after": 185.28, + "before": 373.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 01:32:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851869955231493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216455010053, + "tenant_member_id": 2799207317735173, + "principal_after": 185.28, + "principal_before": 373.0, + "principal_data": -187.72 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2851833110384389, + "account_data": -248.17, + "after": 618.49, + "before": 866.66, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 00:54:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851833034280837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 618.49, + "principal_before": 866.66, + "principal_data": -248.17 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2851833110236933, + "account_data": -55.0, + "after": 0.0, + "before": 55.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-27 00:54:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851833034280837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 55.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2851816724451013, + "account_data": -350.25, + "after": 0.0, + "before": 350.25, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 00:38:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851815912459973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 350.25, + "principal_data": -350.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2851798067875717, + "account_data": -20.0, + "after": 844.97, + "before": 864.97, + "card_type_id": 2793249295533893, + "create_time": "2025-08-27 00:19:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851798031355717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 844.97, + "principal_before": 864.97, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2851780110749509, + "account_data": -45.0, + "after": 55.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-27 00:00:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851780005662405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 55.0, + "principal_before": 100.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2851779068415749, + "account_data": -334.02, + "after": 0.0, + "before": 334.02, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 23:59:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851778986249989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 334.02, + "principal_data": -334.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2851779068268293, + "account_data": -95.0, + "after": 0.0, + "before": 95.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-26 23:59:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851778986249989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 95.0, + "principal_data": -95.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2851755129179845, + "account_data": -95.94, + "after": 2563.44, + "before": 2659.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 23:35:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851755075751813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2563.44, + "principal_before": 2659.38, + "principal_data": -95.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2851742819979013, + "account_data": -447.57, + "after": 2390.77, + "before": 2838.34, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 23:22:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851742696558277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2390.77, + "principal_before": 2838.34, + "principal_data": -447.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2851726961741701, + "account_data": -997.57, + "after": 0.0, + "before": 997.57, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 23:06:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851726398656261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 0.0, + "principal_before": 997.57, + "principal_data": -997.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2851712166006597, + "account_data": -68.0, + "after": 2211.43, + "before": 2279.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 22:51:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851712130649861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2211.43, + "principal_before": 2279.43, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2851598321012485, + "account_data": -95.0, + "after": 893.0, + "before": 988.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-26 20:55:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851598279200454, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 893.0, + "principal_before": 988.0, + "principal_data": -95.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2851577872273093, + "account_data": -564.72, + "after": 357.28, + "before": 922.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 20:35:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851577824038725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 357.28, + "principal_before": 922.0, + "principal_data": -564.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2851577872109253, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-26 20:35:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851577824038725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2851541979320197, + "account_data": -393.95, + "after": 132.46, + "before": 526.41, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 19:58:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851541937164101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 132.46, + "principal_before": 526.41, + "principal_data": -393.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2851531365666565, + "account_data": -5.0, + "after": 95.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-26 19:47:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851531320315781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 95.0, + "principal_before": 100.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2851493494935237, + "account_data": -10.0, + "after": 556.0, + "before": 566.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-26 19:09:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851493445684933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 556.0, + "principal_before": 566.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2851486540254917, + "account_data": -12.0, + "after": 5402.91, + "before": 5414.91, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 19:02:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851486493281989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 5402.91, + "principal_before": 5414.91, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2851472682061509, + "account_data": -10.0, + "after": 741.12, + "before": 751.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 18:48:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851472589983557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 741.12, + "principal_before": 751.12, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2851458442153733, + "account_data": -218.87, + "after": 0.0, + "before": 218.87, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 18:33:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851458408681349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215993554693, + "tenant_member_id": 2799207128008453, + "principal_after": 0.0, + "principal_before": 218.87, + "principal_data": -218.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2851402612920133, + "account_data": -300.0, + "after": 0.0, + "before": 300.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 17:36:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2851402511142597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 300.0, + "principal_data": -300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2850516563954629, + "account_data": -283.87, + "after": 350.25, + "before": 634.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 02:35:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850516500057221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 350.25, + "principal_before": 634.12, + "principal_data": -283.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2850461495790725, + "account_data": -1251.25, + "after": 694.89, + "before": 1946.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 01:39:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850461435366341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 694.89, + "principal_before": 1946.14, + "principal_data": -1251.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2850443885546501, + "account_data": -36.0, + "after": 32.14, + "before": 68.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 01:21:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850443821206597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 32.14, + "principal_before": 68.14, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2850424014736453, + "account_data": -1031.91, + "after": 1529.86, + "before": 2561.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 01:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850423906094021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1529.86, + "principal_before": 2561.77, + "principal_data": -1031.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2850366110387141, + "account_data": -1079.18, + "after": 634.12, + "before": 1713.3, + "card_type_id": 2793249295533893, + "create_time": "2025-08-26 00:02:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850366037806021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 634.12, + "principal_before": 1713.3, + "principal_data": -1079.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2850340661693509, + "account_data": -96.0, + "after": 625.91, + "before": 721.91, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 23:36:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850340521069637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 625.91, + "principal_before": 721.91, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2850164575882245, + "account_data": -438.48, + "after": 2561.77, + "before": 3000.25, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 20:37:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850164387761157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 2561.77, + "principal_before": 3000.25, + "principal_data": -438.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2850095167376453, + "account_data": -204.99, + "after": 294.07, + "before": 499.06, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 19:26:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850095121550341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 294.07, + "principal_before": 499.06, + "principal_data": -204.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2850049723452933, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-25 18:40:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995983768645, + "tenant_member_id": 2849995548625861, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2850049465322629, + "account_data": -76.0, + "after": 922.0, + "before": 998.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:40:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850049404652485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 922.0, + "principal_before": 998.0, + "principal_data": -76.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2850049079004165, + "account_data": 56.0, + "after": 998.0, + "before": 942.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:39:53", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850048896879557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 998.0, + "principal_before": 942.0, + "principal_data": 56.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2850048947424389, + "account_data": -56.0, + "after": 942.0, + "before": 998.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:39:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850048896879557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 942.0, + "principal_before": 998.0, + "principal_data": -56.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2850031105772613, + "account_data": -6.06, + "after": 1192.61, + "before": 1198.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:21:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850030932970437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1192.61, + "principal_before": 1198.67, + "principal_data": -6.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2850031105625157, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-25 18:21:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850030932970437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821727959238917, + "tenant_member_id": 2799210181019397, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2850017722911813, + "account_data": -190.0, + "after": 3000.25, + "before": 3190.25, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:07:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850017653361733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3000.25, + "principal_before": 3190.25, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2850012534885445, + "account_data": -144.0, + "after": 2659.38, + "before": 2803.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 18:02:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2850012511194245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2659.38, + "principal_before": 2803.38, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2849996377787333, + "account_data": -2.0, + "after": 998.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 17:46:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849996356029509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 998.0, + "principal_before": 1000.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13394654634", + "id": 2849995929717893, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 17:45:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849995927358597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2849995547528133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2849995548871621, + "tenant_member_id": 2849995548625861, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2849132850515013, + "account_data": -421.1, + "after": 1713.3, + "before": 2134.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 03:07:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849132624809029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1713.3, + "principal_before": 2134.4, + "principal_data": -421.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2849075591957637, + "account_data": -962.17, + "after": 1946.14, + "before": 2908.31, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 02:09:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849075460885573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1946.14, + "principal_before": 2908.31, + "principal_data": -962.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2849074674650053, + "account_data": -2053.89, + "after": 3190.25, + "before": 5244.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 02:08:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849074610637893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3190.25, + "principal_before": 5244.14, + "principal_data": -2053.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2849044152208325, + "account_data": -24.0, + "after": 0.0, + "before": 24.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 01:37:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849043862703045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 24.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2849044152044485, + "account_data": -27.01, + "after": 0.0, + "before": 27.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-25 01:37:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849043862703045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 27.01, + "principal_data": -27.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2849033684782149, + "account_data": -2065.6, + "after": 5244.14, + "before": 7309.74, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 01:26:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2849033582808005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 5244.14, + "principal_before": 7309.74, + "principal_data": -2065.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848980514769925, + "account_data": -17.74, + "after": 0.0, + "before": 17.74, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 00:32:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848980075203653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 17.74, + "principal_data": -17.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2848951770287173, + "account_data": -45.0, + "after": 2134.4, + "before": 2179.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 00:03:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848951754312773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2134.4, + "principal_before": 2179.4, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2848949905706053, + "account_data": -875.52, + "after": 2179.4, + "before": 3054.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-25 00:01:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848949859765189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2179.4, + "principal_before": 3054.92, + "principal_data": -875.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848915830148037, + "account_data": -228.16, + "after": 17.74, + "before": 245.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 23:27:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848915776719941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 17.74, + "principal_before": 245.9, + "principal_data": -228.16 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2848888935648261, + "account_data": -8.0, + "after": 566.0, + "before": 574.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-24 22:59:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848888871554053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 566.0, + "principal_before": 574.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2848862412442565, + "account_data": -108.03, + "after": 2803.38, + "before": 2911.41, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 22:32:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848862361242693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2803.38, + "principal_before": 2911.41, + "principal_data": -108.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2848832302091397, + "account_data": -55.0, + "after": 1351.0, + "before": 1406.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-24 22:02:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848832253348933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1351.0, + "principal_before": 1406.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2848831567252485, + "account_data": -282.95, + "after": 788.1, + "before": 1071.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 22:01:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848831466720325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 788.1, + "principal_before": 1071.05, + "principal_data": -282.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2848816407694277, + "account_data": -28.0, + "after": 864.97, + "before": 892.97, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 21:45:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848816367553669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 864.97, + "principal_before": 892.97, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848785857367045, + "account_data": -26.0, + "after": 245.9, + "before": 271.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 21:14:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848785626090437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 245.9, + "principal_before": 271.9, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2848777037761477, + "account_data": -10.0, + "after": 751.12, + "before": 761.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 21:05:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848776985840645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 751.12, + "principal_before": 761.12, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2848763516587013, + "account_data": -142.74, + "after": 2838.34, + "before": 2981.08, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 20:52:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848763274759237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2838.34, + "principal_before": 2981.08, + "principal_data": -142.74 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2848763516439557, + "account_data": -103.14, + "after": 0.0, + "before": 103.14, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 20:52:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848763274759237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 0.0, + "principal_before": 103.14, + "principal_data": -103.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848752920972421, + "account_data": -230.67, + "after": 271.9, + "before": 502.57, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 20:41:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848752862006213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 271.9, + "principal_before": 502.57, + "principal_data": -230.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2848752199797765, + "account_data": -20.0, + "after": 68.14, + "before": 88.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 20:40:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848752153201605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 68.14, + "principal_before": 88.14, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848751951744005, + "account_data": -2497.43, + "after": 502.57, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 20:40:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848751907638277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 502.57, + "principal_before": 3000.0, + "principal_data": -2497.43 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848751951612933, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 20:40:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848751907638277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848751119748549, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 20:39:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2848750880590981, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 20:39:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848750878133381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2848688158248005, + "account_data": -500.94, + "after": 499.06, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 19:35:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848688109210629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 499.06, + "principal_before": 1000.0, + "principal_data": -500.94 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2848688158100549, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 19:35:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848688109210629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848687461583813, + "tenant_member_id": 2848686922632133, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2848688071118277, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 19:35:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848687461583813, + "tenant_member_id": 2848686922632133, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "婉婉", + "memberMobile": "18345432742", + "id": 2848687409908741, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 19:34:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848687407238149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2848686921534405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2848686922910661, + "tenant_member_id": 2848686922632133, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2848659329043525, + "account_data": -8.0, + "after": 88.14, + "before": 96.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 19:06:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848659160681605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 88.14, + "principal_before": 96.14, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2848555905715141, + "account_data": -54.48, + "after": 2911.41, + "before": 2965.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 17:20:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848555879517253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2911.41, + "principal_before": 2965.89, + "principal_data": -54.48 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2848555905567685, + "account_data": -41.52, + "after": 0.0, + "before": 41.52, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 17:20:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2848555879517253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 0.0, + "principal_before": 41.52, + "principal_data": -41.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2847828501253573, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 05:01:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747562769541, + "tenant_member_id": 2847747357002757, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2847748486630405, + "account_data": -321.77, + "after": 678.23, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 03:39:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847748419718213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 678.23, + "principal_before": 1000.0, + "principal_data": -321.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2847748008512453, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 03:39:07", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847748005972933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2847726924697093, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 03:17:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2847720292011077, + "account_data": -522.28, + "after": 839.4, + "before": 1361.68, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 03:10:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847720233372677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 839.4, + "principal_before": 1361.68, + "principal_data": -522.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2847720291863621, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 03:10:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847720233372677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2847720004504581, + "account_data": 1000.0, + "after": 1361.68, + "before": 361.68, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 03:10:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847720002030597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1361.68, + "principal_before": 361.68, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2847719052594117, + "account_data": -1162.34, + "after": 2908.31, + "before": 4070.65, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 03:09:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847718961941637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2908.31, + "principal_before": 4070.65, + "principal_data": -1162.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2847719052446661, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 03:09:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847718961941637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2847606970272837, + "account_data": -2200.46, + "after": 7309.74, + "before": 9510.2, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 01:15:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847606866021445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7309.74, + "principal_before": 9510.2, + "principal_data": -2200.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847533911559109, + "account_data": -260.0, + "after": 3054.92, + "before": 3314.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-24 00:01:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847533878791237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3054.92, + "principal_before": 3314.92, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847533911411653, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-24 00:01:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847533878791237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847517451161029, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 23:44:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847517197421637, + "account_data": -634.76, + "after": 3314.92, + "before": 3949.68, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 23:44:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847517042920581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3314.92, + "principal_before": 3949.68, + "principal_data": -634.76 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847517197257797, + "account_data": -112.0, + "after": 0.0, + "before": 112.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 23:44:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847517042920581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 112.0, + "principal_data": -112.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2847512882088901, + "account_data": 3000.0, + "after": 3949.68, + "before": 949.68, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 23:39:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847512879270853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3949.68, + "principal_before": 949.68, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2847510681226693, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 23:37:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2847510231125061, + "account_data": -148.22, + "after": 866.66, + "before": 1014.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 23:37:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847510133886085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 866.66, + "principal_before": 1014.88, + "principal_data": -148.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2847509836549189, + "account_data": 1000.0, + "after": 1014.88, + "before": 14.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 23:36:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847509834009669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1014.88, + "principal_before": 14.88, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2847506500766853, + "account_data": -2.0, + "after": 593.77, + "before": 595.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 23:33:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847506419485701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 593.77, + "principal_before": 595.77, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2847458627800197, + "account_data": -232.85, + "after": 595.77, + "before": 828.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 22:44:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847458573093829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 595.77, + "principal_before": 828.62, + "principal_data": -232.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2847315032263685, + "account_data": -5.0, + "after": 14.88, + "before": 19.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 20:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847315008457861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 14.88, + "principal_before": 19.88, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2847295525768261, + "account_data": -148.98, + "after": 9510.2, + "before": 9659.18, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 19:58:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847295461100677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9510.2, + "principal_before": 9659.18, + "principal_data": -148.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2847189769194501, + "account_data": -8.0, + "after": 761.12, + "before": 769.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 18:11:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847189748190149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 761.12, + "principal_before": 769.12, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2847188021480453, + "account_data": -5.0, + "after": 769.12, + "before": 774.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 18:09:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847187971656837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 769.12, + "principal_before": 774.12, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2847145206418437, + "account_data": -6.0, + "after": 1494.97, + "before": 1500.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-23 17:25:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847145143078021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1494.97, + "principal_before": 1500.97, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2847133947087877, + "account_data": -47.0, + "after": 1406.0, + "before": 1453.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-23 17:14:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847133868182661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1406.0, + "principal_before": 1453.0, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2847133448014981, + "account_data": -293.33, + "after": 1071.05, + "before": 1364.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 17:13:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847133368192069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1071.05, + "principal_before": 1364.38, + "principal_data": -293.33 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2847038283287685, + "account_data": -8.0, + "after": 1500.97, + "before": 1508.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-23 15:37:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2847038223911877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1500.97, + "principal_before": 1508.97, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2846352376646789, + "account_data": -195.9, + "after": 96.14, + "before": 292.04, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 03:59:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846352279538629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 96.14, + "principal_before": 292.04, + "principal_data": -195.9 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2846253154848197, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 02:18:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2846252160617413, + "account_data": 3000.0, + "after": 4070.65, + "before": 1070.65, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 02:17:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846252157471685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4070.65, + "principal_before": 1070.65, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2846247459032133, + "account_data": -1701.01, + "after": 1070.65, + "before": 2771.66, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 02:12:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846247276678213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1070.65, + "principal_before": 2771.66, + "principal_data": -1701.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2846247458884677, + "account_data": -736.95, + "after": 0.0, + "before": 736.95, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 02:12:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846247276678213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 736.95, + "principal_data": -736.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2846238519495685, + "account_data": -107.03, + "after": 892.97, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 02:03:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846238110682181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 892.97, + "principal_before": 1000.0, + "principal_data": -107.03 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2846238519364613, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 02:03:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846238110682181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2846209471990789, + "account_data": -1700.0, + "after": 300.0, + "before": 2000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 01:34:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846209410026565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 300.0, + "principal_before": 2000.0, + "principal_data": -1700.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2846209471843333, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 01:34:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846209410026565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2846209098747333, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 01:33:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2846208129551301, + "account_data": 2000.0, + "after": 2000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 01:32:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846208127110085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 2000.0, + "principal_before": 0.0, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2846172475722693, + "account_data": -114.64, + "after": 9659.18, + "before": 9773.82, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 00:56:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846172317355141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9659.18, + "principal_before": 9773.82, + "principal_data": -114.64 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2846172475575237, + "account_data": -1120.54, + "after": 0.0, + "before": 1120.54, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 00:56:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846172317355141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1120.54, + "principal_data": -1120.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2846155004414981, + "account_data": -5.0, + "after": 27.01, + "before": 32.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 00:38:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846154982542341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 27.01, + "principal_before": 32.01, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2846153994866117, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-23 00:37:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153576238021, + "tenant_member_id": 2846153189592005, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2846153480833989, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 00:37:04", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 2, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846153478278085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2846124638014597, + "account_data": -508.55, + "after": 0.0, + "before": 508.55, + "card_type_id": 2793249295533893, + "create_time": "2025-08-23 00:07:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846124416306117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 508.55, + "principal_data": -508.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2846091788962949, + "account_data": -112.29, + "after": 526.41, + "before": 638.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 23:34:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846091741776901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 526.41, + "principal_before": 638.7, + "principal_data": -112.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2846091788815493, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 23:34:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846091741776901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2846073307548677, + "account_data": -12.75, + "after": 19.88, + "before": 32.63, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 23:15:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846073216420997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 19.88, + "principal_before": 32.63, + "principal_data": -12.75 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2846067601165445, + "account_data": -171.0, + "after": 4706.0, + "before": 4877.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-22 23:09:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846067547540613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 4706.0, + "principal_before": 4877.0, + "principal_data": -171.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2846066042260485, + "account_data": -1653.28, + "after": 5414.91, + "before": 7068.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 23:08:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2846065988324357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 5414.91, + "principal_before": 7068.19, + "principal_data": -1653.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2845965666880645, + "account_data": -8.0, + "after": 817.12, + "before": 825.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 21:26:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845965652446149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 817.12, + "principal_before": 825.12, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2845948982135749, + "account_data": -760.0, + "after": 1364.38, + "before": 2124.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 21:09:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845948960836677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1364.38, + "principal_before": 2124.38, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2845910541814853, + "account_data": -570.0, + "after": 7068.19, + "before": 7638.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 20:29:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845910500248581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 7068.19, + "principal_before": 7638.19, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2845900443847749, + "account_data": -767.46, + "after": 1120.54, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 20:19:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845900327750789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1120.54, + "principal_before": 1888.0, + "principal_data": -767.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2845855076666309, + "account_data": -8.0, + "after": 32.01, + "before": 40.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 19:33:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845855058889669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 32.01, + "principal_before": 40.01, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2845852555381701, + "account_data": -448.05, + "after": 2124.38, + "before": 2572.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 19:30:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845852448099269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2124.38, + "principal_before": 2572.43, + "principal_data": -448.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2845845699808389, + "account_data": -18.0, + "after": 292.04, + "before": 310.04, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 19:23:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845845661666437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 292.04, + "principal_before": 310.04, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2845845247659013, + "account_data": -36.0, + "after": 194.2, + "before": 230.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-22 19:23:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845845211319301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 194.2, + "principal_before": 230.2, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2845837032852613, + "account_data": -270.19, + "after": 18959.83, + "before": 19230.02, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 19:15:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2845836978736069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 18959.83, + "principal_before": 19230.02, + "principal_data": -270.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2845528686464517, + "account_data": 988.0, + "after": 988.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 14:01:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990784883781, + "tenant_member_id": 2844990190242821, + "principal_after": 988.0, + "principal_before": 0.0, + "principal_data": 988.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2844996811918341, + "account_data": -5.0, + "after": 17.31, + "before": 22.31, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 05:00:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844996773858437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 17.31, + "principal_before": 22.31, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2844991495719941, + "account_data": -5977.69, + "after": 22.31, + "before": 6000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 04:55:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844991424187333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 22.31, + "principal_before": 6000.0, + "principal_data": -5977.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶总", + "memberMobile": "13711223287", + "id": 2844990568074245, + "account_data": 6000.0, + "after": 6000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 04:54:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844990565223429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2844990188964869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2844990190488581, + "tenant_member_id": 2844990190242821, + "principal_after": 6000.0, + "principal_before": 0.0, + "principal_data": 6000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2844924253882821, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 03:46:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2844910832209029, + "account_data": -46.17, + "after": 508.55, + "before": 554.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 03:32:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844910764330053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 508.55, + "principal_before": 554.72, + "principal_data": -46.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2844879878097925, + "account_data": -1139.8, + "after": 828.62, + "before": 1968.42, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 03:01:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844879588101125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 828.62, + "principal_before": 1968.42, + "principal_data": -1139.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2844867421146245, + "account_data": -857.54, + "after": 361.68, + "before": 1219.22, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 02:48:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844867290516485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 361.68, + "principal_before": 1219.22, + "principal_data": -857.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2844867044985989, + "account_data": 1000.0, + "after": 1219.22, + "before": 219.22, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 02:48:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844867041496197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1219.22, + "principal_before": 219.22, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2844819965594053, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 02:00:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2844819904842437, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 02:00:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2844819604769797, + "account_data": -151.05, + "after": 736.95, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 02:00:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844819508382725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 736.95, + "principal_before": 888.0, + "principal_data": -151.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2844809308736645, + "account_data": -689.43, + "after": 997.57, + "before": 1687.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 01:49:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844809215265925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 997.57, + "principal_before": 1687.0, + "principal_data": -689.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2844784461466565, + "account_data": -2009.94, + "after": 9773.82, + "before": 11783.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 01:24:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844784233925637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9773.82, + "principal_before": 11783.76, + "principal_data": -2009.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2844782172457989, + "account_data": 10000.0, + "after": 11783.76, + "before": 1783.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 01:22:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844782170098693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 11783.76, + "principal_before": 1783.76, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2844730319604677, + "account_data": -815.68, + "after": 184.32, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 00:29:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844730185059461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 184.32, + "principal_before": 1000.0, + "principal_data": -815.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2844728836393925, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 00:27:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844728833706949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2844714268428997, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 00:13:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2844707366980741, + "account_data": -665.98, + "after": 334.02, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 00:06:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844707263007685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 334.02, + "principal_before": 1000.0, + "principal_data": -665.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2844706902887493, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-22 00:05:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844706900003909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2844702381476869, + "account_data": -380.0, + "after": 112.0, + "before": 492.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-22 00:00:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844702295264261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 112.0, + "principal_before": 492.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2844608257641477, + "account_data": -16.0, + "after": 32.63, + "before": 48.63, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 22:25:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844607904124037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 32.63, + "principal_before": 48.63, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2844521249442757, + "account_data": -90.0, + "after": 703.0, + "before": 793.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-21 20:56:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844521168571525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217516922629, + "tenant_member_id": 2799209794651909, + "principal_after": 703.0, + "principal_before": 793.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2844520782908421, + "account_data": 10.0, + "after": 793.0, + "before": 783.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-21 20:56:12", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844520201407557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217516922629, + "tenant_member_id": 2799209794651909, + "principal_after": 793.0, + "principal_before": 783.0, + "principal_data": 10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2844520423312325, + "account_data": -10.0, + "after": 783.0, + "before": 793.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-21 20:55:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844520201407557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217516922629, + "tenant_member_id": 2799209794651909, + "principal_after": 783.0, + "principal_before": 793.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2844519044860997, + "account_data": -106.1, + "after": 403.9, + "before": 510.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 20:54:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844518940888197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217522181893, + "tenant_member_id": 2799209794651909, + "principal_after": 403.9, + "principal_before": 510.0, + "principal_data": -106.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2844514426735621, + "account_data": -14.52, + "after": 219.22, + "before": 233.74, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 20:49:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844514365639813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 219.22, + "principal_before": 233.74, + "principal_data": -14.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2844514426588165, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-21 20:49:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844514365639813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2844492465310853, + "account_data": -8.0, + "after": 492.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-21 20:27:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844492447976389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 492.0, + "principal_before": 500.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2844468783303813, + "account_data": -166.68, + "after": 1783.76, + "before": 1950.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 20:03:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844468679494597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1783.76, + "principal_before": 1950.44, + "principal_data": -166.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2844418446576645, + "account_data": -8.0, + "after": 310.04, + "before": 318.04, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 19:12:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844418427243461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 310.04, + "principal_before": 318.04, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2844401807804869, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-21 18:55:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2844401586047941, + "account_data": -446.99, + "after": 638.7, + "before": 1085.69, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 18:54:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844401525312453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 638.7, + "principal_before": 1085.69, + "principal_data": -446.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2844401430580357, + "account_data": 1000.0, + "after": 1085.69, + "before": 85.69, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 18:54:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844401427762309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1085.69, + "principal_before": 85.69, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2844394523528133, + "account_data": -190.0, + "after": 554.72, + "before": 744.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 18:47:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844394467200133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 554.72, + "principal_before": 744.72, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2844236998495301, + "account_data": -6.0, + "after": 1508.97, + "before": 1514.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-21 16:07:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844236844354565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1508.97, + "principal_before": 1514.97, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2844199738969861, + "account_data": -7.0, + "after": 40.01, + "before": 47.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-21 15:29:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2844199682346629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 40.01, + "principal_before": 47.01, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2843875166947141, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-21 09:59:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843619496120005, + "account_data": -79.76, + "after": 744.72, + "before": 824.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 05:39:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843619419737733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 744.72, + "principal_before": 824.48, + "principal_data": -79.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843618516831941, + "account_data": 307.56, + "after": 824.48, + "before": 516.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 05:38:23", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843618251689733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 824.48, + "principal_before": 516.92, + "principal_data": 307.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843618348863109, + "account_data": -307.56, + "after": 516.92, + "before": 824.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 05:38:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843618251689733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 516.92, + "principal_before": 824.48, + "principal_data": -307.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2843497460125445, + "account_data": -450.32, + "after": 318.04, + "before": 768.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 03:35:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843497350811205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 318.04, + "principal_before": 768.36, + "principal_data": -450.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843492112699141, + "account_data": -201.71, + "after": 824.48, + "before": 1026.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 03:29:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843492032401029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 824.48, + "principal_before": 1026.19, + "principal_data": -201.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2843414122335877, + "account_data": -68.0, + "after": 2279.43, + "before": 2347.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 02:10:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843414068760325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2279.43, + "principal_before": 2347.43, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2843349864435397, + "account_data": -1255.2, + "after": 1950.44, + "before": 3205.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 01:05:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843349751582341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1950.44, + "principal_before": 3205.64, + "principal_data": -1255.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2843348792577669, + "account_data": -381.09, + "after": 0.0, + "before": 381.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 01:04:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843348584828677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 381.09, + "principal_data": -381.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2843297250528965, + "account_data": -570.0, + "after": 949.68, + "before": 1519.68, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 00:11:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843297187073797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 949.68, + "principal_before": 1519.68, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2843296113692357, + "account_data": -1529.45, + "after": 1519.68, + "before": 3049.13, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 00:10:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843296057200389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 1519.68, + "principal_before": 3049.13, + "principal_data": -1529.45 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2843295801560645, + "account_data": 3000.0, + "after": 3049.13, + "before": 49.13, + "card_type_id": 2793249295533893, + "create_time": "2025-08-21 00:10:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843295798890053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3049.13, + "principal_before": 49.13, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2843165972664069, + "account_data": -8.0, + "after": 72.0, + "before": 80.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 21:58:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843165950905925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 72.0, + "principal_before": 80.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843074250723013, + "account_data": -8.22, + "after": 1026.19, + "before": 1034.41, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 20:24:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843074184597061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1026.19, + "principal_before": 1034.41, + "principal_data": -8.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2843074250559173, + "account_data": -120.0, + "after": 0.0, + "before": 120.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 20:24:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843074184597061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 120.0, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2843072194940485, + "account_data": -188.8, + "after": 3205.64, + "before": 3394.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 20:22:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843072094621381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3205.64, + "principal_before": 3394.44, + "principal_data": -188.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2843003702496837, + "account_data": -18.0, + "after": 1532.0, + "before": 1550.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 19:12:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2843003660930693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1532.0, + "principal_before": 1550.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2842993999531589, + "account_data": -380.0, + "after": 120.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 19:03:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2842993945333381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 120.0, + "principal_before": 500.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2842983035473669, + "account_data": -17.0, + "after": 83.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 18:51:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2842982970265349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2839012675143813, + "tenant_member_id": 2799212577998597, + "principal_after": 83.0, + "principal_before": 100.0, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2842522548275013, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-20 11:03:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2842522492995397, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 11:03:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2842522106267461, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 11:03:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2842521971017541, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 11:02:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2842187508043397, + "account_data": -170.0, + "after": 230.2, + "before": 400.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-20 05:22:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2842187458318085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 230.2, + "principal_before": 400.2, + "principal_data": -170.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2842014051028549, + "account_data": -3287.43, + "after": 2771.66, + "before": 6059.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 02:26:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2842013991014021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2771.66, + "principal_before": 6059.09, + "principal_data": -3287.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2842013538356997, + "account_data": 5000.0, + "after": 6059.09, + "before": 1059.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 02:25:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2842013535571717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6059.09, + "principal_before": 1059.09, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2841996360158981, + "account_data": -793.58, + "after": 820.09, + "before": 1613.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 02:08:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841996313743109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 820.09, + "principal_before": 1613.67, + "principal_data": -793.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2841996021993157, + "account_data": 1000.0, + "after": 1613.67, + "before": 613.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 02:07:53", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841996019076805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1613.67, + "principal_before": 613.67, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2841939330158149, + "account_data": -838.52, + "after": 233.74, + "before": 1072.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 01:10:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841939281153605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 233.74, + "principal_before": 1072.26, + "principal_data": -838.52 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2841939013979781, + "account_data": 1000.0, + "after": 1072.26, + "before": 72.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 01:09:54", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841939011243653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1072.26, + "principal_before": 72.26, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2841924830318213, + "account_data": -8.0, + "after": 768.36, + "before": 776.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 00:55:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841924776529605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 768.36, + "principal_before": 776.36, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2841917191802565, + "account_data": -28.0, + "after": 776.36, + "before": 804.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 00:47:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841917111963269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 776.36, + "principal_before": 804.36, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2841885553872517, + "account_data": -6.0, + "after": 47.01, + "before": 53.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 00:15:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841885535211077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 47.01, + "principal_before": 53.01, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2841875596316229, + "account_data": -1961.87, + "after": 49.13, + "before": 2011.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-20 00:05:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841875543871173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 49.13, + "principal_before": 2011.0, + "principal_data": -1961.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2841871874870853, + "account_data": -20.0, + "after": 80.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-20 00:01:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841871816052485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 80.0, + "principal_before": 100.0, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2841867860512325, + "account_data": -34.0, + "after": 53.01, + "before": 87.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 23:57:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841867789324037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 53.01, + "principal_before": 87.01, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2841853649768197, + "account_data": -284.79, + "after": 0.0, + "before": 284.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 23:43:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841853321907845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 284.79, + "principal_data": -284.79 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2841853649620741, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 23:43:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841853321907845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2841705018281605, + "account_data": -270.88, + "after": 3394.44, + "before": 3665.32, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 21:11:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841704932019909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3394.44, + "principal_before": 3665.32, + "principal_data": -270.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2841632917474885, + "account_data": -45.0, + "after": 1968.42, + "before": 2013.42, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 19:58:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841632852250309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 1968.42, + "principal_before": 2013.42, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2841567967481541, + "account_data": -79.0, + "after": 1453.0, + "before": 1532.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-19 18:52:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841567912922693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1453.0, + "principal_before": 1532.0, + "principal_data": -79.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2841567342481029, + "account_data": -427.57, + "after": 2572.43, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 18:51:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841567026433733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 2572.43, + "principal_before": 3000.0, + "principal_data": -427.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2841567342333573, + "account_data": -232.86, + "after": 0.0, + "before": 232.86, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 18:51:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841567026433733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 232.86, + "principal_data": -232.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2841555961253637, + "account_data": -47.0, + "after": 2011.0, + "before": 2058.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 18:40:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841555946229445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2011.0, + "principal_before": 2058.0, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2841517908364869, + "account_data": -116.66, + "after": 3665.32, + "before": 3781.98, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 18:01:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841517817450181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3665.32, + "principal_before": 3781.98, + "principal_data": -116.66 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2841499959463557, + "account_data": -86.0, + "after": 1774.0, + "before": 1860.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-19 17:43:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841499910885061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1774.0, + "principal_before": 1860.0, + "principal_data": -86.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2841498965593861, + "account_data": -172.47, + "after": 19230.02, + "before": 19402.49, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 17:42:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2841498328305413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 19230.02, + "principal_before": 19402.49, + "principal_data": -172.47 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2841083628668613, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 10:39:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2841083568785093, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 10:39:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2840824347397829, + "account_data": -1989.71, + "after": 1034.41, + "before": 3024.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 06:16:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840824239214149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1034.41, + "principal_before": 3024.12, + "principal_data": -1989.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2840823877078725, + "account_data": 3000.0, + "after": 3024.12, + "before": 24.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 06:15:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840823874604741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 3024.12, + "principal_before": 24.12, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2840745848950405, + "account_data": -5692.64, + "after": 2108.79, + "before": 7801.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 04:56:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840745737113157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 2108.79, + "principal_before": 7801.43, + "principal_data": -5692.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2840745004093125, + "account_data": 5000.0, + "after": 7801.43, + "before": 2801.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 04:55:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 2, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840745001651909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 7801.43, + "principal_before": 2801.43, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2840523545906821, + "account_data": -1219.53, + "after": 1059.09, + "before": 2278.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 01:10:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840523456745157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1059.09, + "principal_before": 2278.62, + "principal_data": -1219.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2840523545759365, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 01:10:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840523456745157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2840509404220997, + "account_data": -104.98, + "after": 381.09, + "before": 486.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 00:55:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840509317992197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 381.09, + "principal_before": 486.07, + "principal_data": -104.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840492434001477, + "account_data": -570.0, + "after": 2058.0, + "before": 2628.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 00:38:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840492412292869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2058.0, + "principal_before": 2628.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840490036678213, + "account_data": -348.72, + "after": 2628.0, + "before": 2976.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 00:35:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840489984462469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2628.0, + "principal_before": 2976.72, + "principal_data": -348.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840490036530757, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 00:35:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840489984462469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2840478040837893, + "account_data": -380.0, + "after": 2801.43, + "before": 3181.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 00:23:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840477959687813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 2801.43, + "principal_before": 3181.43, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波", + "memberMobile": "13718998990", + "id": 2840477489893125, + "account_data": -50.0, + "after": 480.0, + "before": 530.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-19 00:23:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840477426683525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2840366209568389, + "tenant_member_id": 2840365873464901, + "principal_after": 480.0, + "principal_before": 530.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波", + "memberMobile": "13718998990", + "id": 2840476182482565, + "account_data": -117.94, + "after": 280.06, + "before": 398.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 00:21:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840475994951365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2840366142164677, + "tenant_member_id": 2840365873464901, + "principal_after": 280.06, + "principal_before": 398.0, + "principal_data": -117.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2840464477638213, + "account_data": -140.98, + "after": 486.07, + "before": 627.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-19 00:09:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840464400043589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 486.07, + "principal_before": 627.05, + "principal_data": -140.98 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2840464477490757, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-19 00:09:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840464400043589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2840453931470405, + "account_data": -17.0, + "after": 48.63, + "before": 65.63, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 23:59:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840453828988613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 48.63, + "principal_before": 65.63, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840443448708806, + "account_data": -47.0, + "after": 2976.72, + "before": 3023.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 23:48:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840443381763781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2976.72, + "principal_before": 3023.72, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2840431315111621, + "account_data": -95.68, + "after": 721.91, + "before": 817.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 23:36:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840431257390853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 721.91, + "principal_before": 817.59, + "principal_data": -95.68 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2840379495632581, + "account_data": -154.08, + "after": 2574.16, + "before": 2728.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 22:43:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840379405307653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 2574.16, + "principal_before": 2728.24, + "principal_data": -154.08 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波", + "memberMobile": "13718998990", + "id": 2840375180150533, + "account_data": 398.0, + "after": 398.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 22:39:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2840366142164677, + "tenant_member_id": 2840365873464901, + "principal_after": 398.0, + "principal_before": 0.0, + "principal_data": 398.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波", + "memberMobile": "13718998990", + "id": 2840375119841029, + "account_data": 530.0, + "after": 530.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-18 22:39:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2840366209568389, + "tenant_member_id": 2840365873464901, + "principal_after": 530.0, + "principal_before": 0.0, + "principal_data": 530.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2840322578075397, + "account_data": -760.0, + "after": 3181.43, + "before": 3941.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 21:45:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840322520354437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 3181.43, + "principal_before": 3941.43, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2840305344237189, + "account_data": -10.0, + "after": 284.79, + "before": 294.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 21:28:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840305268100741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 284.79, + "principal_before": 294.79, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2840283750780549, + "account_data": -199.74, + "after": 103.14, + "before": 302.88, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 21:06:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840283658669637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 103.14, + "principal_before": 302.88, + "principal_data": -199.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2840239865925189, + "account_data": -186.07, + "after": 3781.98, + "before": 3968.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 20:21:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840239767686789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3781.98, + "principal_before": 3968.05, + "principal_data": -186.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840197574182661, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 19:38:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2840195559181893, + "account_data": 3000.0, + "after": 3023.72, + "before": 23.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 19:36:22", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840195556560453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3023.72, + "principal_before": 23.72, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2840186214305349, + "account_data": -426.99, + "after": 804.36, + "before": 1231.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 19:26:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840186097749637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 804.36, + "principal_before": 1231.35, + "principal_data": -426.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2840182423342853, + "account_data": -281.64, + "after": 85.69, + "before": 367.33, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 19:23:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840182351842949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 85.69, + "principal_before": 367.33, + "principal_data": -281.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2840125231468165, + "account_data": -8.0, + "after": 294.79, + "before": 302.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 18:24:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840125138325189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 294.79, + "principal_before": 302.79, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2840035036006725, + "account_data": -18.0, + "after": 1514.97, + "before": 1532.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-18 16:53:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840034953807941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1514.97, + "principal_before": 1532.97, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2840013203621893, + "account_data": -140.82, + "after": 2013.42, + "before": 2154.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 16:30:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840013160368133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 2013.42, + "principal_before": 2154.24, + "principal_data": -140.82 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2840013203490821, + "account_data": -239.18, + "after": 0.0, + "before": 239.18, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 16:30:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2840013160368133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837540289677637, + "tenant_member_id": 2837539913779333, + "principal_after": 0.0, + "principal_before": 239.18, + "principal_data": -239.18 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2839961231198533, + "account_data": -8.0, + "after": 574.0, + "before": 582.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-18 15:38:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839961188993093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 574.0, + "principal_before": 582.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2839960247273605, + "account_data": -79.84, + "after": 3941.43, + "before": 4021.27, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 15:36:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839960171710533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 3941.43, + "principal_before": 4021.27, + "principal_data": -79.84 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2839959996745861, + "account_data": -17.0, + "after": 582.0, + "before": 599.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-18 15:36:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839959950346245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 582.0, + "principal_before": 599.0, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2839629326812933, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 10:00:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2839012675143813, + "tenant_member_id": 2799212577998597, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2839629244417797, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 10:00:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2839292119582853, + "account_data": -1012.76, + "after": 2278.62, + "before": 3291.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 04:17:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839292034189637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2278.62, + "principal_before": 3291.38, + "principal_data": -1012.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2839291796326725, + "account_data": 3000.0, + "after": 3291.38, + "before": 291.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 04:17:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839291793787205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3291.38, + "principal_before": 291.38, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2839198632740933, + "account_data": -729.28, + "after": 72.26, + "before": 801.54, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 02:42:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839198530341189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 72.26, + "principal_before": 801.54, + "principal_data": -729.28 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2839198632593477, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 02:42:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839198530341189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2839149480134789, + "account_data": -2622.7, + "after": 3968.05, + "before": 6590.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 01:52:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839149375375429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3968.05, + "principal_before": 6590.75, + "principal_data": -2622.7 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2839080196737349, + "account_data": -100.0, + "after": 435.68, + "before": 535.68, + "card_type_id": 2791990152417157, + "create_time": "2025-08-18 00:41:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839080142456837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 435.68, + "principal_before": 535.68, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2839079701432389, + "account_data": -493.99, + "after": 1231.35, + "before": 1725.34, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 00:41:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839079631472966, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1231.35, + "principal_before": 1725.34, + "principal_data": -493.99 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2839079701252165, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-18 00:41:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839079631472966, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2839078930024581, + "account_data": -570.0, + "after": 23.72, + "before": 593.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-18 00:40:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839078843435013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 23.72, + "principal_before": 593.72, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2839012983359557, + "account_data": -665.64, + "after": 334.36, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 23:33:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839012890347525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 334.36, + "principal_before": 1000.0, + "principal_data": -665.64 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2839012626385029, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 23:33:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2839012623190149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2838932385826821, + "account_data": -260.82, + "after": 239.18, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 22:11:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838932345735237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837540289677637, + "tenant_member_id": 2837539913779333, + "principal_after": 239.18, + "principal_before": 500.0, + "principal_data": -260.82 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2838865282041925, + "account_data": -50.0, + "after": 535.68, + "before": 585.68, + "card_type_id": 2791990152417157, + "create_time": "2025-08-17 21:03:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838865222830405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 535.68, + "principal_before": 585.68, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2838835656427525, + "account_data": -278.79, + "after": 593.72, + "before": 872.51, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 20:33:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838835609258117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 593.72, + "principal_before": 872.51, + "principal_data": -278.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2838824330922117, + "account_data": -570.0, + "after": 291.38, + "before": 861.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 20:21:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838824252115269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 291.38, + "principal_before": 861.38, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2838811374651525, + "account_data": -158.51, + "after": 6590.75, + "before": 6749.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 20:08:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838811233060869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6590.75, + "principal_before": 6749.26, + "principal_data": -158.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2838680152950853, + "account_data": -62.0, + "after": 87.01, + "before": 149.01, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 17:54:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838680095311941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 87.01, + "principal_before": 149.01, + "principal_data": -62.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2838638110673029, + "account_data": -5.0, + "after": 774.12, + "before": 779.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 17:12:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838638060685445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 774.12, + "principal_before": 779.12, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2838631544539141, + "account_data": -324.99, + "after": 149.01, + "before": 474.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 17:05:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838631416973317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 149.01, + "principal_before": 474.0, + "principal_data": -324.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2838579170773061, + "account_data": -190.0, + "after": 6749.26, + "before": 6939.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 16:12:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838579007801349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6749.26, + "principal_before": 6939.26, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2838570990389318, + "account_data": -7.0, + "after": 7638.19, + "before": 7645.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 16:03:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2838570933110917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 7638.19, + "principal_before": 7645.19, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2838216251754245, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 10:02:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2837894777440389, + "account_data": -420.57, + "after": 613.67, + "before": 1034.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 04:35:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837894684100933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 613.67, + "principal_before": 1034.24, + "principal_data": -420.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2837871194916997, + "account_data": -989.85, + "after": 60.88, + "before": 1050.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 04:11:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837871040333957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 60.88, + "principal_before": 1050.73, + "principal_data": -989.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2837870505986053, + "account_data": 1000.0, + "after": 1050.73, + "before": 50.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 04:11:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837870503413765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 1050.73, + "principal_before": 50.73, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2837868919179397, + "account_data": -92.0, + "after": 0.0, + "before": 92.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-17 04:09:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837868376721477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 0.0, + "principal_before": 92.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2837846560147205, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 03:46:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2837769909700933, + "account_data": -372.95, + "after": 627.05, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 02:28:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837769840314373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 627.05, + "principal_before": 1000.0, + "principal_data": -372.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2837769537390917, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 02:28:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837769534163269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2837750312371909, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 02:08:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2837691823785989, + "account_data": -532.26, + "after": 861.38, + "before": 1393.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 01:09:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837691675772997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 861.38, + "principal_before": 1393.64, + "principal_data": -532.26 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2837682287380613, + "account_data": -741.14, + "after": 6939.26, + "before": 7680.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 00:59:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837682168498501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6939.26, + "principal_before": 7680.4, + "principal_data": -741.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2837640968816709, + "account_data": -822.95, + "after": 1034.24, + "before": 1857.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 00:17:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837640590575941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1034.24, + "principal_before": 1857.19, + "principal_data": -822.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2837640968505413, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-17 00:17:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837640590575941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2837637503600709, + "account_data": -1274.66, + "after": 1725.34, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 00:14:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837637467507013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1725.34, + "principal_before": 3000.0, + "principal_data": -1274.66 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2837637503453253, + "account_data": -117.32, + "after": 585.68, + "before": 703.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-17 00:14:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837637467507013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 585.68, + "principal_before": 703.0, + "principal_data": -117.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2837637207918917, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-17 00:13:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837637205084485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2837622230698117, + "account_data": -1454.22, + "after": 872.51, + "before": 2326.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 23:58:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837622195931141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 872.51, + "principal_before": 2326.73, + "principal_data": -1454.22 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2837608468940485, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 23:44:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837540289677637, + "tenant_member_id": 2837539913779333, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2837540976380229, + "account_data": -570.0, + "after": 2154.24, + "before": 2724.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 22:35:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837540924262405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 2154.24, + "principal_before": 2724.24, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2837540698015813, + "account_data": -275.76, + "after": 2724.24, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 22:35:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837540591880197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 2724.24, + "principal_before": 3000.0, + "principal_data": -275.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13048048908", + "id": 2837540207495237, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 22:35:12", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837540204742725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2837539912747141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2837539914025093, + "tenant_member_id": 2837539913779333, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2837483577264261, + "account_data": -26.0, + "after": 474.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 21:37:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837483561027653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 474.0, + "principal_before": 500.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2837445411162181, + "account_data": -42.0, + "after": 7645.19, + "before": 7687.19, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 20:58:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837445366122629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 7645.19, + "principal_before": 7687.19, + "principal_data": -42.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2837315814967429, + "account_data": -1796.36, + "after": 0.0, + "before": 1796.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 18:46:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837315777923205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 1796.36, + "principal_data": -1796.36 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2837284657661957, + "account_data": -89.12, + "after": 302.88, + "before": 392.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 18:15:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2837284570744901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 302.88, + "principal_before": 392.0, + "principal_data": -89.12 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2836506997278405, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 05:04:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2836506904463045, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 05:04:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2836326463522885, + "tenant_member_id": 2799212491392773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2836405978957957, + "account_data": -23.0, + "after": 1796.36, + "before": 1819.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 03:21:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836405777533253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1796.36, + "principal_before": 1819.36, + "principal_data": -23.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2836333111887941, + "account_data": -15.89, + "after": 0.0, + "before": 15.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 02:07:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836332783421509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 0.0, + "principal_before": 15.89, + "principal_data": -15.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2836330123413573, + "account_data": -500.66, + "after": 102.43, + "before": 603.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 02:04:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836330027075717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 102.43, + "principal_before": 603.09, + "principal_data": -500.66 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2836330123249733, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 02:04:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836330027075717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2836328419543173, + "account_data": -5.0, + "after": 599.0, + "before": 604.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-16 02:02:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836328371750917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 599.0, + "principal_before": 604.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2836326734514245, + "account_data": -420.21, + "after": 801.54, + "before": 1221.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 02:00:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836326647990341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 801.54, + "principal_before": 1221.75, + "principal_data": -420.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2836326394497093, + "account_data": 1000.0, + "after": 1221.75, + "before": 221.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 02:00:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836326391892037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1221.75, + "principal_before": 221.75, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2836297350744069, + "account_data": -1142.81, + "after": 1857.19, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 01:30:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836297285962053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1857.19, + "principal_before": 3000.0, + "principal_data": -1142.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2836296944552261, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 01:30:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836296941504837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2836265316059269, + "account_data": -1097.41, + "after": 1393.64, + "before": 2491.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 00:58:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836265227700229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1393.64, + "principal_before": 2491.05, + "principal_data": -1097.41 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2836265315911813, + "account_data": -232.41, + "after": 0.0, + "before": 232.41, + "card_type_id": 2793266846533445, + "create_time": "2025-08-16 00:58:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836265227700229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 232.41, + "principal_data": -232.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2836238375307269, + "account_data": -592.73, + "after": 1819.36, + "before": 2412.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 00:30:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836238303004741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1819.36, + "principal_before": 2412.09, + "principal_data": -592.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2836217833588805, + "account_data": -96.0, + "after": 817.59, + "before": 913.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-16 00:10:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836217774950469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 817.59, + "principal_before": 913.59, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2836154174130309, + "account_data": -7.0, + "after": 779.12, + "before": 786.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 23:05:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836154111543622, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 779.12, + "principal_before": 786.12, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2836008185956677, + "account_data": -120.31, + "after": 7680.4, + "before": 7800.71, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 20:36:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2836008086997125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7680.4, + "principal_before": 7800.71, + "principal_data": -120.31 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2835962198034437, + "account_data": -265.84, + "after": 0.0, + "before": 265.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 19:49:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835961679006021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 265.84, + "principal_data": -265.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2835959590537221, + "account_data": -45.5, + "after": 403.5, + "before": 449.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 19:47:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835959388424325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 403.5, + "principal_before": 449.0, + "principal_data": -45.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2835955547719749, + "account_data": -26.0, + "after": 265.84, + "before": 291.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 19:43:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835955528353797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 265.84, + "principal_before": 291.84, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2835802986973317, + "account_data": -267.14, + "after": 232.86, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-15 17:08:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835802906478597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 232.86, + "principal_before": 500.0, + "principal_data": -267.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2835801978586885, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-15 17:06:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2835801589614661, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 17:06:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835801587124293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2835765051836549, + "account_data": -8.0, + "after": 291.84, + "before": 299.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 16:29:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835765013448773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 291.84, + "principal_before": 299.84, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2835743803066437, + "account_data": -8.0, + "after": 92.0, + "before": 100.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-15 16:07:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835743717902341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 92.0, + "principal_before": 100.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2835237857366597, + "account_data": -8.0, + "after": 299.84, + "before": 307.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 07:33:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835237842228037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 299.84, + "principal_before": 307.84, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2835137663554373, + "account_data": -8.0, + "after": 307.84, + "before": 315.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 05:51:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2835137643582213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 307.84, + "principal_before": 315.84, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834928486044421, + "account_data": -2159.26, + "after": 7800.71, + "before": 9959.97, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 02:18:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834928325612357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7800.71, + "principal_before": 9959.97, + "principal_data": -2159.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834928485896965, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-15 02:18:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834928325612357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2834912904647493, + "account_data": -613.14, + "after": 0.0, + "before": 613.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 02:02:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834911191601797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 613.14, + "principal_data": -613.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2834912904483653, + "account_data": -80.14, + "after": 0.0, + "before": 80.14, + "card_type_id": 2793266846533445, + "create_time": "2025-08-15 02:02:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834911191601797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 80.14, + "principal_data": -80.14 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2834837862158917, + "account_data": -98.32, + "after": 65.63, + "before": 163.95, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 00:46:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834837493862981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 65.63, + "principal_before": 163.95, + "principal_data": -98.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2834827051160325, + "account_data": -180.0, + "after": 2326.73, + "before": 2506.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 00:35:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834826940257029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2326.73, + "principal_before": 2506.73, + "principal_data": -180.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834794977202949, + "account_data": -2.0, + "after": 315.84, + "before": 317.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-15 00:02:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834794926969413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 315.84, + "principal_before": 317.84, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2834786526335557, + "account_data": -804.33, + "after": 2506.73, + "before": 3311.06, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 23:54:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834786432897605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2506.73, + "principal_before": 3311.06, + "principal_data": -804.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2834785462194949, + "account_data": -128.06, + "after": 232.41, + "before": 360.47, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 23:52:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834785395610437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 232.41, + "principal_before": 360.47, + "principal_data": -128.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2834737289270021, + "account_data": -139.53, + "after": 360.47, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 23:03:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834737152168773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 360.47, + "principal_before": 500.0, + "principal_data": -139.53 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生", + "memberMobile": "13312811181", + "id": 2834700067525253, + "account_data": -214.65, + "after": 247.28, + "before": 461.93, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 22:26:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834699757998917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212789827333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813028275358149, + "tenant_member_id": 2813027656895237, + "principal_after": 247.28, + "principal_before": 461.93, + "principal_data": -214.65 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834629643815301, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 21:14:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834586661606213, + "account_data": -232.18, + "after": 9959.97, + "before": 10192.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 20:30:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834586391302725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 9959.97, + "principal_before": 10192.15, + "principal_data": -232.18 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834574688588549, + "account_data": 10000.0, + "after": 10192.15, + "before": 192.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 20:18:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834574686081797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 10192.15, + "principal_before": 192.15, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2834551278539333, + "account_data": -172.58, + "after": 3311.06, + "before": 3483.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 19:54:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834551234712133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3311.06, + "principal_before": 3483.64, + "principal_data": -172.58 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孟紫龙(该会员已注销)", + "memberMobile": "17631643741(1)", + "id": 2834546125951557, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-08-14 19:49:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834546123215429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212727961349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219755403013, + "tenant_member_id": 2799212728911621, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2834463563666053, + "account_data": -108.0, + "after": 392.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 18:25:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834463506469445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 392.0, + "principal_before": 500.0, + "principal_data": -108.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834457597022853, + "account_data": -8.0, + "after": 317.84, + "before": 325.84, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 18:19:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834457565238085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 317.84, + "principal_before": 325.84, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834442998354501, + "account_data": -343.37, + "after": 325.84, + "before": 669.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 18:04:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834442964308805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 325.84, + "principal_before": 669.21, + "principal_data": -343.37 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2834424651354693, + "account_data": -20.0, + "after": 1532.97, + "before": 1552.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-14 17:45:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834424579363653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1532.97, + "principal_before": 1552.97, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834283239560005, + "account_data": -13.0, + "after": 669.21, + "before": 682.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 15:22:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834283220587141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 669.21, + "principal_before": 682.21, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834279184323333, + "account_data": -8.0, + "after": 682.21, + "before": 690.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 15:17:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834279163859525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 682.21, + "principal_before": 690.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2834275179549509, + "account_data": -4.0, + "after": 690.21, + "before": 694.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 15:13:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2834275155399429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 690.21, + "principal_before": 694.21, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2833876684049925, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 08:28:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2833876586073605, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 08:28:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2833876498435589, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-14 08:28:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2833345652100165, + "tenant_member_id": 2799207356434181, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2833495058549829, + "account_data": -1085.97, + "after": 192.15, + "before": 1278.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 02:00:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833494899805445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 192.15, + "principal_before": 1278.12, + "principal_data": -1085.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2833430250720453, + "account_data": -380.0, + "after": 302.79, + "before": 682.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 00:54:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833430185217221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 302.79, + "principal_before": 682.79, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2833380380691589, + "account_data": -423.7, + "after": 163.95, + "before": 587.65, + "card_type_id": 2793249295533893, + "create_time": "2025-08-14 00:03:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833380085632133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 163.95, + "principal_before": 587.65, + "principal_data": -423.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2833351811124293, + "account_data": -96.0, + "after": 3483.64, + "before": 3579.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:34:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833351788235845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3483.64, + "principal_before": 3579.64, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2833351554223237, + "account_data": -1187.42, + "after": 3579.64, + "before": 4767.06, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:34:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833351452626117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3579.64, + "principal_before": 4767.06, + "principal_data": -1187.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2833346091715781, + "account_data": -447.81, + "after": 2981.08, + "before": 3428.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:28:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833346051165317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 2981.08, + "principal_before": 3428.89, + "principal_data": -447.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2833345607289925, + "account_data": 3000.0, + "after": 3428.89, + "before": 428.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:28:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833345604815941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 3428.89, + "principal_before": 428.89, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2833327753628741, + "account_data": -413.82, + "after": 682.79, + "before": 1096.61, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:10:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833327698201861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 682.79, + "principal_before": 1096.61, + "principal_data": -413.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2833327173471429, + "account_data": 1000.0, + "after": 1096.61, + "before": 96.61, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 23:09:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833327170997445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1096.61, + "principal_before": 96.61, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2833300664061125, + "account_data": -95.1, + "after": 913.59, + "before": 1008.69, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 22:42:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833300573228165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 913.59, + "principal_before": 1008.69, + "principal_data": -95.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2833287129124037, + "account_data": -14.0, + "after": 694.21, + "before": 708.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 22:28:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833287076973765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 694.21, + "principal_before": 708.21, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2833283678899333, + "account_data": -540.98, + "after": 2491.05, + "before": 3032.03, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 22:25:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833283589459205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2491.05, + "principal_before": 3032.03, + "principal_data": -540.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2833271228419333, + "account_data": -109.0, + "after": 0.0, + "before": 109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 22:12:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833270655962309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216582838021, + "tenant_member_id": 2799207334774533, + "principal_after": 0.0, + "principal_before": 109.0, + "principal_data": -109.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2833260564843717, + "account_data": -18.0, + "after": 2347.43, + "before": 2365.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 22:01:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833260548459653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2347.43, + "principal_before": 2365.43, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2833253710728325, + "account_data": -8.0, + "after": 708.21, + "before": 716.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 21:54:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833253690870853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 708.21, + "principal_before": 716.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2833206341799109, + "account_data": -12.0, + "after": 786.12, + "before": 798.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 21:06:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833206261320773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 786.12, + "principal_before": 798.12, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2833184344886469, + "account_data": -81.75, + "after": 0.0, + "before": 81.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 20:44:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833183964974149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 81.75, + "principal_data": -81.75 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2833091670183109, + "account_data": -100.0, + "after": 11673.0, + "before": 11773.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-13 19:09:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833091592113413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11673.0, + "principal_before": 11773.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2833091148844101, + "account_data": -289.13, + "after": 264.74, + "before": 553.87, + "card_type_id": 2793266846533445, + "create_time": "2025-08-13 19:09:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833091059223813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 264.74, + "principal_before": 553.87, + "principal_data": -289.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2833043302190341, + "account_data": -26.0, + "after": 716.21, + "before": 742.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 18:20:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833043280219269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 716.21, + "principal_before": 742.21, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2833038571490437, + "account_data": -108.62, + "after": 41.52, + "before": 150.14, + "card_type_id": 2793266846533445, + "create_time": "2025-08-13 18:15:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833038468287621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 41.52, + "principal_before": 150.14, + "principal_data": -108.62 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2833022693313669, + "account_data": -22.0, + "after": 1532.0, + "before": 1554.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-13 17:59:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833022636641349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1532.0, + "principal_before": 1554.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2833022064905349, + "account_data": -97.69, + "after": 81.75, + "before": 179.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 17:59:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2833021920300229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 81.75, + "principal_before": 179.44, + "principal_data": -97.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2832986396052613, + "account_data": -8.0, + "after": 742.21, + "before": 750.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 17:22:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832986375818373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 742.21, + "principal_before": 750.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2832984805657797, + "account_data": -12.0, + "after": 1552.97, + "before": 1564.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-13 17:21:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832984726801477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1552.97, + "principal_before": 1564.97, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2832927709514885, + "account_data": -13.0, + "after": 1564.97, + "before": 1577.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-13 16:23:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832927632444549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1564.97, + "principal_before": 1577.97, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2832853681933381, + "account_data": -8.0, + "after": 750.21, + "before": 758.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 15:07:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832853663157509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 750.21, + "principal_before": 758.21, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2832844761746693, + "account_data": -5.0, + "after": 798.12, + "before": 803.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 14:58:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832844703140997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 798.12, + "principal_before": 803.12, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832452009921733, + "account_data": -1094.56, + "after": 3032.03, + "before": 4126.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 08:19:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832451810725125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3032.03, + "principal_before": 4126.59, + "principal_data": -1094.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832450562296965, + "account_data": 936.66, + "after": 4126.59, + "before": 3189.93, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 08:17:45", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832447970790533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4126.59, + "principal_before": 3189.93, + "principal_data": 936.66 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832450562165893, + "account_data": 157.9, + "after": 14800.0, + "before": 14642.1, + "card_type_id": 2791990152417157, + "create_time": "2025-08-13 08:17:45", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832447970790533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 14800.0, + "principal_before": 14642.1, + "principal_data": 157.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832448022334661, + "account_data": -936.66, + "after": 3189.93, + "before": 4126.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 08:15:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832447970790533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3189.93, + "principal_before": 4126.59, + "principal_data": -936.66 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832448022203589, + "account_data": -157.9, + "after": 14642.1, + "before": 14800.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-13 08:15:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832447970790533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 14642.1, + "principal_before": 14800.0, + "principal_data": -157.9 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832289314638981, + "account_data": 3000.0, + "after": 4126.59, + "before": 1126.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 05:33:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832289312279685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4126.59, + "principal_before": 1126.59, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2832093910879493, + "account_data": -138.15, + "after": 96.61, + "before": 234.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 02:14:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832093809937541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 96.61, + "principal_before": 234.76, + "principal_data": -138.15 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2832076262591685, + "account_data": -96.0, + "after": 400.2, + "before": 496.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-13 01:56:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832076207279365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 400.2, + "principal_before": 496.2, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2832058790710405, + "account_data": -2298.58, + "after": 1126.59, + "before": 3425.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 01:39:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2832058654133317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1126.59, + "principal_before": 3425.17, + "principal_data": -2298.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831963188333765, + "account_data": -138.39, + "after": 758.21, + "before": 896.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-13 00:01:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831963172555909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 758.21, + "principal_before": 896.6, + "principal_data": -138.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2831941743594757, + "account_data": -1179.94, + "after": 4767.06, + "before": 5947.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 23:40:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831941713660997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 4767.06, + "principal_before": 5947.0, + "principal_data": -1179.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2831933144255685, + "account_data": -227.01, + "after": 0.0, + "before": 227.01, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 23:31:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831932719647941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 227.01, + "principal_data": -227.01 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2831933144108229, + "account_data": -80.95, + "after": 0.0, + "before": 80.95, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 23:31:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831932719647941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 80.95, + "principal_data": -80.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831901769370693, + "account_data": -131.06, + "after": 587.65, + "before": 718.71, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 22:59:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831901704834309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 587.65, + "principal_before": 718.71, + "principal_data": -131.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831901769223237, + "account_data": -85.0, + "after": 0.0, + "before": 85.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 22:59:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831901704834309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 85.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831901633711365, + "account_data": 215.81, + "after": 718.71, + "before": 502.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 22:59:21", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831900321205509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 718.71, + "principal_before": 502.9, + "principal_data": 215.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831901633547525, + "account_data": 85.0, + "after": 85.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 22:59:21", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831900321205509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 85.0, + "principal_before": 0.0, + "principal_data": 85.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831900438154437, + "account_data": -215.81, + "after": 502.9, + "before": 718.71, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 22:58:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831900321205509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 502.9, + "principal_before": 718.71, + "principal_data": -215.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2831900437990597, + "account_data": -85.0, + "after": 0.0, + "before": 85.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 22:58:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831900321205509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 85.0, + "principal_data": -85.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2831891762891845, + "account_data": -109.88, + "after": 150.14, + "before": 260.02, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 22:49:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831891656444997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 150.14, + "principal_before": 260.02, + "principal_data": -109.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2831876594027718, + "account_data": -107.29, + "after": 3425.17, + "before": 3532.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 22:33:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831876532178181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3425.17, + "principal_before": 3532.46, + "principal_data": -107.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2831876593880261, + "account_data": -93.78, + "after": 0.0, + "before": 93.78, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 22:33:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831876532178181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 93.78, + "principal_data": -93.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2831833223187653, + "account_data": -406.22, + "after": 93.78, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 21:49:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831833161813125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 93.78, + "principal_before": 500.0, + "principal_data": -406.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831798647884869, + "account_data": -8.0, + "after": 896.6, + "before": 904.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 21:14:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831798610840773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 896.6, + "principal_before": 904.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831797715160197, + "account_data": -20.0, + "after": 904.6, + "before": 924.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 21:13:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831797624212741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 904.6, + "principal_before": 924.6, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831761197730885, + "account_data": -76.0, + "after": 924.6, + "before": 1000.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 20:36:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831761159441669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 924.6, + "principal_before": 1000.6, + "principal_data": -76.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2831757895584837, + "account_data": -398.11, + "after": 1278.12, + "before": 1676.23, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 20:33:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831757797182533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1278.12, + "principal_before": 1676.23, + "principal_data": -398.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831748465462405, + "account_data": -10.0, + "after": 1000.6, + "before": 1010.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 20:23:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831748416670917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1000.6, + "principal_before": 1010.6, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831702261304453, + "account_data": -35.0, + "after": 1010.6, + "before": 1045.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 19:36:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831702213725445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1010.6, + "principal_before": 1045.6, + "principal_data": -35.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2831689741372613, + "account_data": -105.34, + "after": 5947.0, + "before": 6052.34, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 19:23:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831689704541381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 5947.0, + "principal_before": 6052.34, + "principal_data": -105.34 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2831515898416389, + "account_data": -68.84, + "after": 367.33, + "before": 436.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 16:26:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831515742587973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 367.33, + "principal_before": 436.17, + "principal_data": -68.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831459196226693, + "account_data": -10.0, + "after": 1045.6, + "before": 1055.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 15:29:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831459177909317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1045.6, + "principal_before": 1055.6, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2831440479472901, + "account_data": -16.0, + "after": 1055.6, + "before": 1071.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 15:10:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831440457419973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1055.6, + "principal_before": 1071.6, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2831427324185861, + "account_data": -6.0, + "after": 803.12, + "before": 809.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 14:56:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2831427264597125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 803.12, + "principal_before": 809.12, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2830785235209285, + "account_data": -32.0, + "after": 100.0, + "before": 132.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-12 04:03:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830784683527237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 100.0, + "principal_before": 132.0, + "principal_data": -32.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2830755552988421, + "account_data": -109.05, + "after": 80.95, + "before": 190.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 03:33:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830755428240581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 80.95, + "principal_before": 190.0, + "principal_data": -109.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2830667353214213, + "account_data": -78.37, + "after": 1676.23, + "before": 1754.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 02:03:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830667242556485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1676.23, + "principal_before": 1754.6, + "principal_data": -78.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2830620936457413, + "account_data": -15.0, + "after": 0.67, + "before": 15.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 01:16:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830620899609669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 0.67, + "principal_before": 15.67, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2830618355108933, + "account_data": -2357.28, + "after": 1754.6, + "before": 4111.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 01:13:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830618106875141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1754.6, + "principal_before": 4111.88, + "principal_data": -2357.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2830611098635333, + "account_data": -14.0, + "after": 15.67, + "before": 29.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 01:06:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830611047566597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 15.67, + "principal_before": 29.67, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2830558325886085, + "account_data": -16.0, + "after": 604.0, + "before": 620.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-12 00:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830558262201541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 604.0, + "principal_before": 620.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2830548414319813, + "account_data": -16.31, + "after": 1008.69, + "before": 1025.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 00:02:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830548357631237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 1008.69, + "principal_before": 1025.0, + "principal_data": -16.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2830548414188741, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 00:02:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830548357631237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2830546961943621, + "tenant_member_id": 2799209749939973, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2830548026297861, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-12 00:02:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2830546961943621, + "tenant_member_id": 2799209749939973, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2830546918444293, + "account_data": 1000.0, + "after": 1025.0, + "before": 25.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 00:01:15", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830546915904773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 1025.0, + "principal_before": 25.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2830546285235269, + "account_data": -416.76, + "after": 179.44, + "before": 596.2, + "card_type_id": 2793249295533893, + "create_time": "2025-08-12 00:00:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830546216275205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 179.44, + "principal_before": 596.2, + "principal_data": -416.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2830536192134277, + "account_data": -991.21, + "after": 0.0, + "before": 991.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 23:50:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830535892405381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 991.21, + "principal_data": -991.21 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2830536192003205, + "account_data": -84.0, + "after": 0.0, + "before": 84.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-11 23:50:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830535892405381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 84.0, + "principal_data": -84.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2830535368215685, + "account_data": -1145.94, + "after": 6052.34, + "before": 7198.28, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 23:49:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830535324191941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 6052.34, + "principal_before": 7198.28, + "principal_data": -1145.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2830509902908485, + "account_data": -167.26, + "after": 0.0, + "before": 167.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 23:23:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830509575621893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217985816325, + "tenant_member_id": 2799209948612357, + "principal_after": 0.0, + "principal_before": 167.26, + "principal_data": -167.26 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2830509902777413, + "account_data": -90.0, + "after": 0.0, + "before": 90.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-11 23:23:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830509575621893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827777100008581, + "tenant_member_id": 2799209948612357, + "principal_after": 0.0, + "principal_before": 90.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2830487849094405, + "account_data": -216.87, + "after": 29.67, + "before": 246.54, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 23:01:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830487783050373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 29.67, + "principal_before": 246.54, + "principal_data": -216.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2830433456164037, + "account_data": -26.0, + "after": 1071.6, + "before": 1097.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 22:05:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830433426705605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1071.6, + "principal_before": 1097.6, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2830334762994821, + "account_data": -238.77, + "after": 0.0, + "before": 238.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 20:25:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830334501375109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 238.77, + "principal_data": -238.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2830313366113477, + "account_data": -165.43, + "after": 4111.88, + "before": 4277.31, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 20:03:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830313260796997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 4111.88, + "principal_before": 4277.31, + "principal_data": -165.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2830199859072197, + "account_data": -18.0, + "after": 7198.28, + "before": 7216.28, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 18:08:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830199813033157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 7198.28, + "principal_before": 7216.28, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2830174531963973, + "account_data": -8.0, + "after": 132.0, + "before": 140.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-11 17:42:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830174478126277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 132.0, + "principal_before": 140.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2830128397028613, + "account_data": -56.0, + "after": 1577.97, + "before": 1633.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-11 16:55:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830128303017093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1577.97, + "principal_before": 1633.97, + "principal_data": -56.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2830082859142405, + "account_data": -10.0, + "after": 620.0, + "before": 630.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-11 16:09:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2830082799193221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 620.0, + "principal_before": 630.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2829193117158533, + "account_data": -1946.21, + "after": 4277.31, + "before": 6223.52, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 01:04:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2829192794852421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 4277.31, + "principal_before": 6223.52, + "principal_data": -1946.21 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2829180346731589, + "account_data": -65.0, + "after": 140.0, + "before": 205.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-11 00:51:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2829180275264709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 140.0, + "principal_before": 205.0, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2829173727333573, + "account_data": -15.0, + "after": 85.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-11 00:44:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2829173646118085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 85.0, + "principal_before": 100.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2829138282941637, + "account_data": -8.0, + "after": 1097.6, + "before": 1105.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 00:08:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2829138264149061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1097.6, + "principal_before": 1105.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2829130633137349, + "account_data": -90.4, + "after": 1105.6, + "before": 1196.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-11 00:00:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2829130558049477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1105.6, + "principal_before": 1196.0, + "principal_data": -90.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2828935341608005, + "account_data": -8.0, + "after": 15.89, + "before": 23.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 20:41:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828935209684037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 15.89, + "principal_before": 23.89, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2828921612110917, + "account_data": -8.0, + "after": 190.0, + "before": 198.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 20:27:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828921578491141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 190.0, + "principal_before": 198.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2828899022326853, + "account_data": -7.0, + "after": 23.89, + "before": 30.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 20:04:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828898977139909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 23.89, + "principal_before": 30.89, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2828897118227589, + "account_data": -150.84, + "after": 6223.52, + "before": 6374.36, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 20:03:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828897043549445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6223.52, + "principal_before": 6374.36, + "principal_data": -150.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2828864824396869, + "account_data": -5.0, + "after": 246.54, + "before": 251.54, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 19:30:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828864697699525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 246.54, + "principal_before": 251.54, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2828843885530309, + "account_data": -8.0, + "after": 24.12, + "before": 32.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 19:08:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828843843898629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 24.12, + "principal_before": 32.12, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2828817572711365, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 18:42:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2828776908655685, + "account_data": -190.0, + "after": 32.12, + "before": 222.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 18:00:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828776844561605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 32.12, + "principal_before": 222.12, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2828739912764677, + "account_data": -120.2, + "after": 260.02, + "before": 380.22, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 17:23:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828739769355397, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 260.02, + "principal_before": 380.22, + "principal_data": -120.2 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2828736854609029, + "account_data": -67.0, + "after": 1554.0, + "before": 1621.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-10 17:19:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828736797215941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1554.0, + "principal_before": 1621.0, + "principal_data": -67.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2828736368381125, + "account_data": -224.91, + "after": 596.2, + "before": 821.11, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 17:19:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828736206015749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 596.2, + "principal_before": 821.11, + "principal_data": -224.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2828736368233669, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 17:19:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828736206015749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2828716901027013, + "account_data": -15.0, + "after": 630.0, + "before": 645.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-10 16:59:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828716849024197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 630.0, + "principal_before": 645.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2828688474655941, + "account_data": -8.0, + "after": 251.54, + "before": 259.54, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 16:30:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828688428108869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 251.54, + "principal_before": 259.54, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2828655979433157, + "account_data": -18.0, + "after": 205.0, + "before": 223.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-10 15:57:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828655900953669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 205.0, + "principal_before": 223.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2828635192839365, + "account_data": -22.0, + "after": 1633.97, + "before": 1655.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-10 15:36:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828635106790469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1633.97, + "principal_before": 1655.97, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2828633593433221, + "account_data": -64.0, + "after": 11773.0, + "before": 11837.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-10 15:34:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828633505615109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11773.0, + "principal_before": 11837.0, + "principal_data": -64.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2828632659414149, + "account_data": -63.57, + "after": 553.87, + "before": 617.44, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 15:33:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828632546446405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 553.87, + "principal_before": 617.44, + "principal_data": -63.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2828627300469893, + "account_data": -20.0, + "after": 1550.0, + "before": 1570.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 15:28:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828627279547525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1550.0, + "principal_before": 1570.0, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2828619073113285, + "account_data": -12.0, + "after": 30.89, + "before": 42.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 15:20:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828619026861189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 30.89, + "principal_before": 42.89, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2828605870050565, + "account_data": -8.0, + "after": 24.0, + "before": 32.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 15:06:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828605850995909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 24.0, + "principal_before": 32.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2828493258673221, + "account_data": -3420.0, + "after": 32.0, + "before": 3452.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 13:12:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828493193874693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 32.0, + "principal_before": 3452.0, + "principal_data": -3420.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2828491827547397, + "account_data": 3000.0, + "after": 3452.0, + "before": 452.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 13:10:43", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828491824925957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3452.0, + "principal_before": 452.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2828138704620741, + "account_data": -67.0, + "after": 0.0, + "before": 67.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 07:11:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2828137448033413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 0.0, + "principal_before": 67.0, + "principal_data": -67.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2827844634233861, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 02:12:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2827844211363013, + "account_data": 3000.0, + "after": 3532.46, + "before": 532.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 02:11:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827844208889029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3532.46, + "principal_before": 532.46, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2827843712060677, + "account_data": -1730.46, + "after": 532.46, + "before": 2262.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 02:11:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827843654306885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 532.46, + "principal_before": 2262.92, + "principal_data": -1730.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2827799351200965, + "account_data": -10.0, + "after": 198.0, + "before": 208.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 01:26:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827799288958213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 198.0, + "principal_before": 208.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2827798888516741, + "account_data": -47.0, + "after": 1878.0, + "before": 1925.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-10 01:25:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827798849293573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1878.0, + "principal_before": 1925.0, + "principal_data": -47.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2827798166670405, + "account_data": -54.0, + "after": 0.0, + "before": 54.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 01:25:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827797522304197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216094873349, + "tenant_member_id": 2799207176636165, + "principal_after": 0.0, + "principal_before": 54.0, + "principal_data": -54.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2827790206930181, + "account_data": -56.0, + "after": 223.0, + "before": 279.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-10 01:16:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827790147767430, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 223.0, + "principal_before": 279.0, + "principal_data": -56.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2827788322966725, + "account_data": -10.0, + "after": 90.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 01:15:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827788267179077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827777100008581, + "tenant_member_id": 2799209948612357, + "principal_after": 90.0, + "principal_before": 100.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2827787378379781, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-10 01:14:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827777100008581, + "tenant_member_id": 2799209948612357, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2827787105488005, + "account_data": -7.0, + "after": 167.26, + "before": 174.26, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 01:13:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827787075062853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217985816325, + "tenant_member_id": 2799209948612357, + "principal_after": 167.26, + "principal_before": 174.26, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2827777398000709, + "account_data": -825.74, + "after": 174.26, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 01:03:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827777348832517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217985816325, + "tenant_member_id": 2799209948612357, + "principal_after": 174.26, + "principal_before": 1000.0, + "principal_data": -825.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周蒙", + "memberMobile": "18176783465", + "id": 2827776997313733, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 01:03:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827776994954437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209947629317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217985816325, + "tenant_member_id": 2799209948612357, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2827753170766917, + "account_data": -1740.76, + "after": 227.01, + "before": 1967.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-10 00:39:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827753028127813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 227.01, + "principal_before": 1967.77, + "principal_data": -1740.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2827708825652485, + "account_data": -1070.48, + "after": 7216.28, + "before": 8286.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 23:54:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827708775468293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 7216.28, + "principal_before": 8286.76, + "principal_data": -1070.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2827703649291333, + "account_data": -198.92, + "after": 436.17, + "before": 635.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 23:48:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827703545072773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 436.17, + "principal_before": 635.09, + "principal_data": -198.92 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2827692369956101, + "account_data": 1520.0, + "after": 2262.92, + "before": 742.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 23:37:28", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827670358461701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2262.92, + "principal_before": 742.92, + "principal_data": 1520.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2827670422031429, + "account_data": -1520.0, + "after": 742.92, + "before": 2262.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 23:15:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827670358461701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 742.92, + "principal_before": 2262.92, + "principal_data": -1520.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2827649970703429, + "account_data": -119.78, + "after": 380.22, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 22:54:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827649782041733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 380.22, + "principal_before": 500.0, + "principal_data": -119.78 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2827639639608581, + "account_data": -402.96, + "after": 238.77, + "before": 641.73, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 22:43:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827639535586501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 238.77, + "principal_before": 641.73, + "principal_data": -402.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2827492195994693, + "account_data": -137.7, + "after": 6374.36, + "before": 6512.06, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 20:13:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827492112026821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6374.36, + "principal_before": 6512.06, + "principal_data": -137.7 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2827489738820805, + "account_data": -16.0, + "after": 84.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 20:11:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827489687588037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 84.0, + "principal_before": 100.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2827488465931269, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 20:10:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2827486570990661, + "account_data": -872.02, + "after": 991.21, + "before": 1863.23, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 20:08:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827486513401093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 991.21, + "principal_before": 1863.23, + "principal_data": -872.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2827486570843205, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 20:08:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827486513401093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2827486150544517, + "account_data": 1000.0, + "after": 1863.23, + "before": 863.23, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 20:07:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827486147939461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1863.23, + "principal_before": 863.23, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2827485633989893, + "account_data": -90.0, + "after": 8286.76, + "before": 8376.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 20:07:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827485589883973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 8286.76, + "principal_before": 8376.76, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2827432472759429, + "account_data": -5.0, + "after": 279.0, + "before": 284.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-09 19:13:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827432428932357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 279.0, + "principal_before": 284.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2827423757421765, + "account_data": -68.0, + "after": 990.72, + "before": 1058.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 19:04:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827423711579205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 990.72, + "principal_before": 1058.72, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐", + "memberMobile": "13710386038", + "id": 2827404995759365, + "account_data": -24.0, + "after": 908.0, + "before": 932.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-09 18:45:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827404938185797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827381540998405, + "tenant_member_id": 2827380844252229, + "principal_after": 908.0, + "principal_before": 932.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐", + "memberMobile": "13710386038", + "id": 2827404185455877, + "account_data": -24.0, + "after": 695.0, + "before": 719.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 18:44:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827404010163461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827381452835973, + "tenant_member_id": 2827380844252229, + "principal_after": 695.0, + "principal_before": 719.0, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2827401711094853, + "account_data": -10.0, + "after": 284.0, + "before": 294.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-09 18:41:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827401659960517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 284.0, + "principal_before": 294.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2827400291601541, + "account_data": -8.0, + "after": 452.0, + "before": 460.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 18:40:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827400220511301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 452.0, + "principal_before": 460.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2827384989961157, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 18:24:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827308686380165, + "tenant_member_id": 2799212845565701, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐", + "memberMobile": "13710386038", + "id": 2827384925555653, + "account_data": 932.0, + "after": 932.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-09 18:24:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827381540998405, + "tenant_member_id": 2827380844252229, + "principal_after": 932.0, + "principal_before": 0.0, + "principal_data": 932.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐", + "memberMobile": "13710386038", + "id": 2827384866474949, + "account_data": 719.0, + "after": 719.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 18:24:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2827381452835973, + "tenant_member_id": 2827380844252229, + "principal_after": 719.0, + "principal_before": 0.0, + "principal_data": 719.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2827359103372485, + "account_data": -190.0, + "after": 222.12, + "before": 412.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 17:58:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827359078829189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 222.12, + "principal_before": 412.12, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2827309381831813, + "account_data": -95.46, + "after": 2965.89, + "before": 3061.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 17:07:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827309354585285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 2965.89, + "principal_before": 3061.35, + "principal_data": -95.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2827308569218181, + "account_data": 3000.0, + "after": 3061.35, + "before": 61.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 17:07:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827308566629509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 3061.35, + "principal_before": 61.35, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2827229635447941, + "account_data": -292.88, + "after": 8376.76, + "before": 8669.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 15:46:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827229579594949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 8376.76, + "principal_before": 8669.64, + "principal_data": -292.88 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2827222007794885, + "account_data": -8.0, + "after": 1196.0, + "before": 1204.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 15:38:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827221986544773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1196.0, + "principal_before": 1204.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2827205553785925, + "account_data": -5.0, + "after": 67.0, + "before": 72.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 15:22:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2827205534534789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 67.0, + "principal_before": 72.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2826430535060741, + "account_data": -1899.78, + "after": 2262.92, + "before": 4162.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 02:13:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826430466378821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2262.92, + "principal_before": 4162.7, + "principal_data": -1899.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2826430534896901, + "account_data": -1388.0, + "after": 0.0, + "before": 1388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 02:13:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826430466378821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1388.0, + "principal_data": -1388.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2826429128133637, + "account_data": 500.0, + "after": 1388.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 02:12:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1388.0, + "principal_before": 888.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2826428851014789, + "account_data": 3000.0, + "after": 4162.7, + "before": 1162.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 02:12:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826428848622725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4162.7, + "principal_before": 1162.7, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2826329010703557, + "account_data": -29.0, + "after": 294.0, + "before": 323.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-09 00:30:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826328966483013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 294.0, + "principal_before": 323.0, + "principal_data": -29.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826317731466437, + "account_data": -105.99, + "after": 1204.0, + "before": 1309.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 00:19:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826317702925381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1204.0, + "principal_before": 1309.99, + "principal_data": -105.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2826309346086149, + "account_data": -908.84, + "after": 8669.64, + "before": 9578.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 00:10:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826309308435653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 8669.64, + "principal_before": 9578.48, + "principal_data": -908.84 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2826308884270021, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-09 00:10:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2826307970223237, + "account_data": -527.37, + "after": 641.73, + "before": 1169.1, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 00:09:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826307912584389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 641.73, + "principal_before": 1169.1, + "principal_data": -527.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2826307141585989, + "account_data": -819.95, + "after": 863.23, + "before": 1683.18, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 00:08:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826307049327749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 863.23, + "principal_before": 1683.18, + "principal_data": -819.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2826306671447109, + "account_data": 1000.0, + "after": 1683.18, + "before": 683.18, + "card_type_id": 2793249295533893, + "create_time": "2025-08-09 00:07:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826306668956741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1683.18, + "principal_before": 683.18, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2826298623642693, + "account_data": -10.0, + "after": 24.0, + "before": 34.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 23:59:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826298582273157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 24.0, + "principal_before": 34.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2826295571467461, + "account_data": -400.0, + "after": 0.0, + "before": 400.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 23:56:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826295168109701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 400.0, + "principal_data": -400.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2826291368266949, + "account_data": -10.0, + "after": 323.0, + "before": 333.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-08 23:52:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826291315510533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 323.0, + "principal_before": 333.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2826263118974213, + "account_data": -96.0, + "after": 61.35, + "before": 157.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 23:23:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826263060909317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 61.35, + "principal_before": 157.35, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2826223216577797, + "account_data": -950.0, + "after": 1058.72, + "before": 2008.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 22:42:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826223165885701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 1058.72, + "principal_before": 2008.72, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2826222760725573, + "account_data": -625.28, + "after": 2008.72, + "before": 2634.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 22:42:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826222736821509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 2008.72, + "principal_before": 2634.0, + "principal_data": -625.28 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑", + "memberMobile": "15920499813", + "id": 2826201704385669, + "account_data": -384.0, + "after": 0.0, + "before": 384.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 22:21:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826201493490885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212454070021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219108284165, + "tenant_member_id": 2799212455151365, + "principal_after": 0.0, + "principal_before": 384.0, + "principal_data": -384.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "18688881606", + "id": 2826198704819461, + "account_data": -432.0, + "after": 0.0, + "before": 432.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 22:18:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826197668006981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210123085573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218420565765, + "tenant_member_id": 2799210124101381, + "principal_after": 0.0, + "principal_before": 432.0, + "principal_data": -432.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "湛", + "memberMobile": "15111450638", + "id": 2826192107572485, + "account_data": -432.0, + "after": 0.0, + "before": 432.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 22:11:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826191950875717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207320241925, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216472409861, + "tenant_member_id": 2799207321339653, + "principal_after": 0.0, + "principal_before": 432.0, + "principal_data": -432.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826190779075653, + "account_data": -5.0, + "after": 1309.99, + "before": 1314.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 22:09:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826190753844293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1309.99, + "principal_before": 1314.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2826174377888965, + "account_data": -8.0, + "after": 333.0, + "before": 341.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-08 21:53:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826174330096901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 333.0, + "principal_before": 341.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826172950662405, + "account_data": -8.0, + "after": 1314.99, + "before": 1322.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:51:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826172930247749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1314.99, + "principal_before": 1322.99, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826167957802053, + "account_data": -5.0, + "after": 1322.99, + "before": 1327.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:46:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826167939239109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1322.99, + "principal_before": 1327.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826167056583749, + "account_data": -5.0, + "after": 1327.99, + "before": 1332.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:45:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826167038774533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1327.99, + "principal_before": 1332.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2826155597843397, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 21:34:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2826155189472453, + "account_data": -396.91, + "after": 603.09, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:33:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826155138042949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 603.09, + "principal_before": 1000.0, + "principal_data": -396.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2826153681849413, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:32:14", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826153678982213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2826140134771973, + "account_data": -55.63, + "after": 259.54, + "before": 315.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 21:18:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826140093418565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 259.54, + "principal_before": 315.17, + "principal_data": -55.63 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2826125838060677, + "account_data": -380.0, + "after": 208.0, + "before": 588.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 21:03:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826125780995333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 208.0, + "principal_before": 588.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2826039706078469, + "account_data": -10.0, + "after": 809.12, + "before": 819.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 19:36:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826039646080069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 809.12, + "principal_before": 819.12, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2826031061650693, + "account_data": -100.0, + "after": 1332.99, + "before": 1432.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 19:27:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826031032290501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1332.99, + "principal_before": 1432.99, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2826022565399685, + "account_data": -22.0, + "after": 341.0, + "before": 363.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-08 19:18:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826022518262917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 341.0, + "principal_before": 363.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2826018586397829, + "account_data": -9.0, + "after": 363.0, + "before": 372.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-08 19:14:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2826018538310917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 363.0, + "principal_before": 372.0, + "principal_data": -9.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2825982183361605, + "account_data": -50.0, + "after": 1432.99, + "before": 1482.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 18:37:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825982154689797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1432.99, + "principal_before": 1482.99, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2825933604129861, + "account_data": -760.0, + "after": 6512.06, + "before": 7272.06, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 17:48:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825933510528133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6512.06, + "principal_before": 7272.06, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2825928888536069, + "account_data": 500.0, + "after": 588.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 17:43:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 588.0, + "principal_before": 88.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2825928757644293, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 17:43:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2825928657521669, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 17:43:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2825889494584517, + "tenant_member_id": 2799212430657285, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2825906348051525, + "account_data": -82.0, + "after": 592.0, + "before": 674.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 17:20:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825906296868101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 592.0, + "principal_before": 674.0, + "principal_data": -82.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2825905173548101, + "account_data": -269.37, + "after": 433.27, + "before": 702.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 17:19:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825905050143877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 433.27, + "principal_before": 702.64, + "principal_data": -269.37 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2825890329758917, + "account_data": -40.0, + "after": 1621.0, + "before": 1661.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 17:04:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825890256538693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1621.0, + "principal_before": 1661.0, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2825889777421573, + "account_data": -178.89, + "after": 821.11, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 17:03:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825889715965189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 821.11, + "principal_before": 1000.0, + "principal_data": -178.89 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2825889446792261, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 17:03:26", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825889444269125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2825792654888197, + "account_data": -12.0, + "after": 702.64, + "before": 714.64, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 15:24:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825792603130949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 702.64, + "principal_before": 714.64, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2825771036134533, + "account_data": -8.0, + "after": 1482.99, + "before": 1490.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 15:02:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825771012132101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1482.99, + "principal_before": 1490.99, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2825767967362309, + "account_data": -8.0, + "after": 819.12, + "before": 827.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 14:59:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825767863766085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 819.12, + "principal_before": 827.12, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2825767077792901, + "account_data": -16.0, + "after": 0.0, + "before": 16.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 14:58:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825766966004805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2822329141528837, + "tenant_member_id": 2799212898879237, + "principal_after": 0.0, + "principal_before": 16.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2825259692215429, + "account_data": -89.42, + "after": 1162.7, + "before": 1252.12, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 06:22:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825259578707077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1162.7, + "principal_before": 1252.12, + "principal_data": -89.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2825241621908677, + "account_data": -5775.63, + "after": 1252.12, + "before": 7027.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 06:04:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825241444895813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1252.12, + "principal_before": 7027.75, + "principal_data": -5775.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2825240742136901, + "account_data": 5000.0, + "after": 7027.75, + "before": 2027.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 06:03:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825240739810373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7027.75, + "principal_before": 2027.75, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2825190806686981, + "account_data": -1198.6, + "after": 1967.77, + "before": 3166.37, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 05:12:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825190598495429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1967.77, + "principal_before": 3166.37, + "principal_data": -1198.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2825189704977669, + "account_data": 3000.0, + "after": 3166.37, + "before": 166.37, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 05:11:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2825189702667525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 3166.37, + "principal_before": 166.37, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2824982809103621, + "account_data": -96.0, + "after": 496.2, + "before": 592.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-08 01:41:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824982749891717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 496.2, + "principal_before": 592.2, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824956005354629, + "account_data": -2048.36, + "after": 1490.99, + "before": 3539.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 01:13:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824955776240901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 1490.99, + "principal_before": 3539.35, + "principal_data": -2048.36 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824956005223557, + "account_data": -543.83, + "after": 0.0, + "before": 543.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 01:13:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824955776240901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 543.83, + "principal_data": -543.83 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824955258178501, + "account_data": 500.0, + "after": 543.83, + "before": 43.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 01:13:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 543.83, + "principal_before": 43.83, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824954673188037, + "account_data": 3000.0, + "after": 3539.35, + "before": 539.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 01:12:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824954670943429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 3539.35, + "principal_before": 539.35, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2824888814799813, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-08 00:05:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2824888621223173, + "account_data": -281.29, + "after": 718.71, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 00:05:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824888489708677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 718.71, + "principal_before": 1000.0, + "principal_data": -281.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2824888225189061, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 00:04:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824888221404357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2824884014058693, + "account_data": -819.42, + "after": 9578.48, + "before": 10397.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-08 00:00:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824883869961349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 9578.48, + "principal_before": 10397.9, + "principal_data": -819.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2824827252559045, + "account_data": -1190.5, + "after": 412.12, + "before": 1602.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 23:02:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824827167870085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 412.12, + "principal_before": 1602.62, + "principal_data": -1190.5 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2824792811605061, + "account_data": -92.0, + "after": 1661.0, + "before": 1753.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-07 22:27:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824792767450181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1661.0, + "principal_before": 1753.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2824792387603589, + "account_data": -404.63, + "after": 0.0, + "before": 404.63, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 22:27:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824792188062981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 0.0, + "principal_before": 404.63, + "principal_data": -404.63 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2824691263343813, + "account_data": -12.0, + "after": 88.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 20:44:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824691245517957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 88.0, + "principal_before": 100.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2824671728045125, + "account_data": -182.88, + "after": 7272.06, + "before": 7454.94, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 20:24:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824671627463941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7272.06, + "principal_before": 7454.94, + "principal_data": -182.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824663567633541, + "account_data": -8.0, + "after": 43.83, + "before": 51.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 20:16:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824663546842181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 43.83, + "principal_before": 51.83, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824662864579781, + "account_data": -20.0, + "after": 51.83, + "before": 71.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 20:15:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824662843886661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 51.83, + "principal_before": 71.83, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2824660101598277, + "account_data": -90.0, + "after": 2412.09, + "before": 2502.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 20:12:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824660053249285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2412.09, + "principal_before": 2502.09, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2824658821893317, + "account_data": -45.0, + "after": 71.83, + "before": 116.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 20:11:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824658793811077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 71.83, + "principal_before": 116.83, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2824658507599045, + "account_data": -45.0, + "after": 42.89, + "before": 87.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 20:11:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824658484038789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 42.89, + "principal_before": 87.89, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2824640518294725, + "account_data": -950.0, + "after": 72.0, + "before": 1022.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 19:52:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824640494931205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 72.0, + "principal_before": 1022.0, + "principal_data": -950.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2824634139446533, + "account_data": -10.0, + "after": 2365.43, + "before": 2375.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 19:46:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824634065947781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2365.43, + "principal_before": 2375.43, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2824563325504773, + "account_data": -760.0, + "after": 2027.75, + "before": 2787.75, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 18:34:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824563271453893, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2027.75, + "principal_before": 2787.75, + "principal_data": -760.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2824541869264005, + "account_data": -8.0, + "after": 1022.0, + "before": 1030.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 18:12:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824541847096389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 1022.0, + "principal_before": 1030.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2824537869028485, + "account_data": -40.0, + "after": 1753.0, + "before": 1793.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-07 18:08:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824537805081861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1753.0, + "principal_before": 1793.0, + "principal_data": -40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2824536572333125, + "account_data": -198.37, + "after": 404.63, + "before": 603.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 18:07:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824536501079237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 404.63, + "principal_before": 603.0, + "principal_data": -198.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2824414684187781, + "account_data": -190.0, + "after": 10397.9, + "before": 10587.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 16:03:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824414658055237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 10397.9, + "principal_before": 10587.9, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2824394632301765, + "account_data": -28.0, + "after": 16.0, + "before": 44.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 15:42:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2824394596830405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2822329141528837, + "tenant_member_id": 2799212898879237, + "principal_after": 16.0, + "principal_before": 44.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2823967214488773, + "account_data": -10.0, + "after": 87.89, + "before": 97.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 08:28:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823967164058885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 87.89, + "principal_before": 97.89, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2823904259067141, + "account_data": -8.0, + "after": 97.89, + "before": 105.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 07:24:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823904179391621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 97.89, + "principal_before": 105.89, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823797186940165, + "account_data": -216.97, + "after": 1602.62, + "before": 1819.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 05:35:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823797120306245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1602.62, + "principal_before": 1819.59, + "principal_data": -216.97 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823797186727173, + "account_data": -407.2, + "after": 0.0, + "before": 407.2, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 05:35:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823797120306245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 407.2, + "principal_data": -407.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2823665107619077, + "account_data": -1.54, + "after": 234.76, + "before": 236.3, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 03:20:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823664874769541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 234.76, + "principal_before": 236.3, + "principal_data": -1.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2823665107471621, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 03:20:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823664874769541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2823640411917381, + "account_data": -145.0, + "after": 592.2, + "before": 737.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-07 02:55:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823640363306245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 592.2, + "principal_before": 737.2, + "principal_data": -145.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823631012596997, + "account_data": -92.8, + "after": 407.2, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 02:46:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823630922517637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 407.2, + "principal_before": 500.0, + "principal_data": -92.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2823621882793029, + "account_data": -38.0, + "after": 315.17, + "before": 353.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 02:36:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823621862722693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 315.17, + "principal_before": 353.17, + "principal_data": -38.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2823584518507717, + "account_data": -513.23, + "after": 221.75, + "before": 734.98, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 01:58:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823584448318533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 221.75, + "principal_before": 734.98, + "principal_data": -513.23 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2823567101021445, + "account_data": -1830.9, + "after": 1169.1, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 01:41:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823567042727173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1169.1, + "principal_before": 3000.0, + "principal_data": -1830.9 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2823567100857605, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 01:41:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823567042727173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2823566810614789, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 01:40:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2823566397459525, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 01:40:18", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823566395067461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2823546529025285, + "account_data": -5.0, + "after": 353.17, + "before": 358.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 01:20:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823546253757701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 353.17, + "principal_before": 358.17, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2823533172313349, + "account_data": -2289.02, + "after": 2787.75, + "before": 5076.77, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 01:06:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823533111135493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2787.75, + "principal_before": 5076.77, + "principal_data": -2289.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823524313254917, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-07 00:57:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823523974204677, + "account_data": -1317.85, + "after": 1819.59, + "before": 3137.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 00:57:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823523928804549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1819.59, + "principal_before": 3137.44, + "principal_data": -1317.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823523478817925, + "account_data": 3000.0, + "after": 3137.44, + "before": 137.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 00:56:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823523476376709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 3137.44, + "principal_before": 137.44, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2823496588381445, + "account_data": -570.0, + "after": 10587.9, + "before": 11157.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 00:29:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823496561151173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 10587.9, + "principal_before": 11157.9, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2823491880062213, + "account_data": -1273.15, + "after": 11157.9, + "before": 12431.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-07 00:24:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823491818343557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 11157.9, + "principal_before": 12431.05, + "principal_data": -1273.15 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2823441924230277, + "account_data": -349.17, + "after": 0.0, + "before": 349.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 23:33:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823441506815109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 349.17, + "principal_data": -349.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2823425545456837, + "account_data": -58.33, + "after": 358.17, + "before": 416.5, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 23:17:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823425434258501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 358.17, + "principal_before": 416.5, + "principal_data": -58.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2823425545309381, + "account_data": -41.88, + "after": 0.0, + "before": 41.88, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 23:17:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823425434258501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 0.0, + "principal_before": 41.88, + "principal_data": -41.88 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2823358846504005, + "account_data": -156.0, + "after": 44.0, + "before": 200.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 22:09:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823358785113349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2822329141528837, + "tenant_member_id": 2799212898879237, + "principal_after": 44.0, + "principal_before": 200.0, + "principal_data": -156.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2823311779581061, + "account_data": -81.47, + "after": 0.0, + "before": 81.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 21:21:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823311450147909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 0.0, + "principal_before": 81.47, + "principal_data": -81.47 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2823256611949701, + "account_data": -5.0, + "after": 1655.97, + "before": 1660.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 20:25:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823256550329413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1655.97, + "principal_before": 1660.97, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2823256225631493, + "account_data": -207.58, + "after": 7454.94, + "before": 7662.52, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 20:24:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823256133307653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7454.94, + "principal_before": 7662.52, + "principal_data": -207.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2823250409589829, + "account_data": -574.47, + "after": 5076.77, + "before": 5651.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 20:18:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823250350542021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5076.77, + "principal_before": 5651.24, + "principal_data": -574.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2823236439985349, + "account_data": -136.67, + "after": 12431.05, + "before": 12567.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 20:04:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823236199861445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 12431.05, + "principal_before": 12567.72, + "principal_data": -136.67 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2823180634180741, + "account_data": -6.0, + "after": 372.0, + "before": 378.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 19:07:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823180586749189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 372.0, + "principal_before": 378.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2823153655975045, + "account_data": -8.0, + "after": 12567.72, + "before": 12575.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 18:40:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823153611263237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 12567.72, + "principal_before": 12575.72, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2823127108013061, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 18:13:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2823127042575301, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 18:13:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2822329141528837, + "tenant_member_id": 2799212898879237, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2823127039773829, + "account_data": -1600.0, + "after": 400.0, + "before": 2000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 18:13:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823126995700869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 400.0, + "principal_before": 2000.0, + "principal_data": -1600.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2823127039642757, + "account_data": -300.0, + "after": 0.0, + "before": 300.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 18:13:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823126995700869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 300.0, + "principal_data": -300.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2823126850669509, + "account_data": 200.0, + "after": 300.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 18:13:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 300.0, + "principal_before": 100.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2823126596357253, + "account_data": 2000.0, + "after": 2000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 18:12:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823126593899653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 2000.0, + "principal_before": 0.0, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2823120158264517, + "account_data": -190.0, + "after": 539.35, + "before": 729.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 18:06:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823120061451333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 539.35, + "principal_before": 729.35, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2823117650054277, + "account_data": -190.0, + "after": 137.44, + "before": 327.44, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 18:03:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823117533007109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 137.44, + "principal_before": 327.44, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2823113913011269, + "account_data": -24.0, + "after": 116.83, + "before": 140.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 18:00:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823113893973125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 116.83, + "principal_before": 140.83, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2823112546176197, + "account_data": -28.0, + "after": 645.0, + "before": 673.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 17:58:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823112473251077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 645.0, + "principal_before": 673.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2823106457848901, + "account_data": -5.0, + "after": 34.0, + "before": 39.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 17:52:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823106442366213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 34.0, + "principal_before": 39.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2823095516302597, + "account_data": -190.0, + "after": 12575.72, + "before": 12765.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 17:41:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823095465020613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 12575.72, + "principal_before": 12765.72, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2823064934221893, + "account_data": -10.0, + "after": 673.0, + "before": 683.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 17:10:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823064874862277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 673.0, + "principal_before": 683.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2823052151621637, + "account_data": -100.0, + "after": 2417.0, + "before": 2517.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-06 16:57:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823052062787525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216132245253, + "tenant_member_id": 2799207188170501, + "principal_after": 2417.0, + "principal_before": 2517.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2823050733766597, + "account_data": -192.88, + "after": 827.12, + "before": 1020.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 16:55:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823050670360581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 827.12, + "principal_before": 1020.0, + "principal_data": -192.88 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2823017173616325, + "account_data": -16.0, + "after": 1660.97, + "before": 1676.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 16:21:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2823017105885253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1660.97, + "principal_before": 1676.97, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2822919391774405, + "account_data": -5.0, + "after": 378.0, + "before": 383.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-06 14:42:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822919315605445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 378.0, + "principal_before": 383.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2822358606596293, + "account_data": -98.52, + "after": 327.44, + "before": 425.96, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 05:11:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822358540027909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 327.44, + "principal_before": 425.96, + "principal_data": -98.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2822358606465221, + "account_data": -80.0, + "after": 0.0, + "before": 80.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 05:11:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822358540027909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 80.0, + "principal_data": -80.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2822357340047621, + "account_data": -284.38, + "after": 0.0, + "before": 284.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 05:10:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822357106379013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220077922053, + "tenant_member_id": 2799212898879237, + "principal_after": 0.0, + "principal_before": 284.38, + "principal_data": -284.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2822330783189253, + "account_data": -1715.62, + "after": 284.38, + "before": 2000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 04:43:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822330675611653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220077922053, + "tenant_member_id": 2799212898879237, + "principal_after": 284.38, + "principal_before": 2000.0, + "principal_data": -1715.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "熊先生", + "memberMobile": "13509296673", + "id": 2822328963172421, + "account_data": 2000.0, + "after": 2000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 04:41:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822328960780357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212897847045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220077922053, + "tenant_member_id": 2799212898879237, + "principal_after": 2000.0, + "principal_before": 0.0, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宪", + "memberMobile": "15013075696", + "id": 2822253806946309, + "account_data": -65.0, + "after": 0.0, + "before": 65.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-06 03:25:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822251433019589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207499433733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217019258629, + "tenant_member_id": 2799207500564229, + "principal_after": 0.0, + "principal_before": 65.0, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2822241835862021, + "account_data": -16.0, + "after": 5651.24, + "before": 5667.24, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 03:12:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822241776470277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5651.24, + "principal_before": 5667.24, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2822233116346565, + "account_data": -26.0, + "after": 140.83, + "before": 166.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 03:04:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822233060853765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 140.83, + "principal_before": 166.83, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2822232119232517, + "account_data": -15.0, + "after": 166.83, + "before": 181.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 03:03:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822232029628421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 166.83, + "principal_before": 181.83, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2822230417557509, + "account_data": -260.0, + "after": 181.83, + "before": 441.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 03:01:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822230285617413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 181.83, + "principal_before": 441.83, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2822208164923461, + "account_data": -2369.52, + "after": 4021.27, + "before": 6390.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 02:38:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822208080808197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 4021.27, + "principal_before": 6390.79, + "principal_data": -2369.52 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2822208164792389, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 02:38:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822208080808197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2822197549713669, + "account_data": -382.56, + "after": 617.44, + "before": 1000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 02:27:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822197299464453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 617.44, + "principal_before": 1000.0, + "principal_data": -382.56 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2822161258825797, + "account_data": -6.0, + "after": 166.37, + "before": 172.37, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 01:50:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822161232349381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 166.37, + "principal_before": 172.37, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2822141798353093, + "account_data": -20.0, + "after": 80.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 01:31:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822141744760837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 80.0, + "principal_before": 100.0, + "principal_data": -20.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2822138500843717, + "account_data": -902.78, + "after": 172.37, + "before": 1075.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 01:27:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822138418710533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 172.37, + "principal_before": 1075.15, + "principal_data": -902.78 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2822138500712645, + "account_data": -92.0, + "after": 0.0, + "before": 92.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 01:27:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822138418710533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 92.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2822138050185477, + "account_data": 1000.0, + "after": 1075.15, + "before": 75.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 01:27:19", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822138047793413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1075.15, + "principal_before": 75.15, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2822112488310981, + "account_data": -380.0, + "after": 12765.72, + "before": 13145.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 01:01:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822112338053381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 12765.72, + "principal_before": 13145.72, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2822111840274629, + "account_data": -1126.09, + "after": 13145.72, + "before": 14271.81, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 01:00:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822111755782149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 13145.72, + "principal_before": 14271.81, + "principal_data": -1126.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2822061252380869, + "account_data": -553.38, + "after": 5667.24, + "before": 6220.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-06 00:09:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822061169084421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5667.24, + "principal_before": 6220.62, + "principal_data": -553.38 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2822061252233413, + "account_data": -318.0, + "after": 0.0, + "before": 318.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-06 00:09:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2822061169084421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 318.0, + "principal_data": -318.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2822009311955461, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 23:16:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821947676182789, + "tenant_member_id": 2799207159990021, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2822008205003205, + "account_data": 500.0, + "after": 683.0, + "before": 183.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-05 23:15:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 683.0, + "principal_before": 183.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2821993780742341, + "account_data": -7.0, + "after": 183.0, + "before": 190.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-05 23:00:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821993753823429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 183.0, + "principal_before": 190.0, + "principal_data": -7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2821947589117957, + "account_data": 5000.0, + "after": 6390.79, + "before": 1390.79, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 22:13:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821947586791429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 6390.79, + "principal_before": 1390.79, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2821933366560837, + "account_data": -214.11, + "after": 428.89, + "before": 643.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 21:59:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821933293979653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 428.89, + "principal_before": 643.0, + "principal_data": -214.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2821892707322117, + "account_data": -53.12, + "after": 41.88, + "before": 95.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 21:17:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821892626794565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 41.88, + "principal_before": 95.0, + "principal_data": -53.12 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2821747097110597, + "account_data": -28.0, + "after": 105.89, + "before": 133.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 18:49:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821747040946181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 105.89, + "principal_before": 133.89, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2821746011523525, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 18:48:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2821745949428165, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 18:48:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2821745869965765, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 18:48:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2821727959238917, + "tenant_member_id": 2799210181019397, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2821727806359749, + "account_data": 1000.0, + "after": 1198.67, + "before": 198.67, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 18:30:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821727803885765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 1198.67, + "principal_before": 198.67, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2821726884645061, + "account_data": -84.2, + "after": 198.67, + "before": 282.87, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 18:29:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821726770104325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 198.67, + "principal_before": 282.87, + "principal_data": -84.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2821726494787781, + "account_data": 152.4, + "after": 282.87, + "before": 130.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 18:28:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821725825239301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 282.87, + "principal_before": 130.47, + "principal_data": 152.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2821725951609029, + "account_data": -152.4, + "after": 130.47, + "before": 282.87, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 18:28:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821725825239301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 130.47, + "principal_before": 282.87, + "principal_data": -152.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2821697492715717, + "account_data": -135.57, + "after": 14271.81, + "before": 14407.38, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 17:59:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821697379371013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 14271.81, + "principal_before": 14407.38, + "principal_data": -135.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2821696515868933, + "account_data": -261.43, + "after": 714.64, + "before": 976.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 17:58:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821696368445637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 714.64, + "principal_before": 976.07, + "principal_data": -261.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2821696149375237, + "account_data": 442.19, + "after": 976.07, + "before": 533.88, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 17:57:47", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821695906629701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 976.07, + "principal_before": 533.88, + "principal_data": 442.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2821695961483333, + "account_data": -442.19, + "after": 533.88, + "before": 976.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 17:57:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821695906629701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 533.88, + "principal_before": 976.07, + "principal_data": -442.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2821683787106373, + "account_data": -8.0, + "after": 133.89, + "before": 141.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 17:45:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821683635292421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 133.89, + "principal_before": 141.89, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2821666777221317, + "account_data": -8.0, + "after": 92.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 17:27:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821666741766213, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 92.0, + "principal_before": 100.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2821528886691909, + "account_data": -34.0, + "after": 141.89, + "before": 175.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 15:07:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821528701536517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 141.89, + "principal_before": 175.89, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2821528282220613, + "account_data": 34.0, + "after": 175.89, + "before": 141.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 15:07:02", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821524323731717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 175.89, + "principal_before": 141.89, + "principal_data": 34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2821526499756293, + "account_data": -8.0, + "after": 1020.0, + "before": 1028.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 15:05:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821526485911621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1020.0, + "principal_before": 1028.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2821526499608837, + "account_data": -10.0, + "after": 0.0, + "before": 10.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-05 15:05:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821526485911621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216127166213, + "tenant_member_id": 2799207188170501, + "principal_after": 0.0, + "principal_before": 10.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2821524338198725, + "account_data": -34.0, + "after": 141.89, + "before": 175.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 15:03:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2821524323731717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 141.89, + "principal_before": 175.89, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2820758375450693, + "account_data": -1095.7, + "after": 236.3, + "before": 1332.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 02:03:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820758218459205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 236.3, + "principal_before": 1332.0, + "principal_data": -1095.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2820757821442309, + "account_data": 1000.0, + "after": 1332.0, + "before": 332.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 02:03:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820757819066629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1332.0, + "principal_before": 332.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2820705579862277, + "account_data": -5.0, + "after": 95.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 01:10:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820705518733573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 95.0, + "principal_before": 100.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2820690401364165, + "account_data": -10.0, + "after": 352.0, + "before": 362.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 00:54:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820690332731461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 352.0, + "principal_before": 362.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2820688154068997, + "account_data": -10.0, + "after": 441.83, + "before": 451.83, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 00:52:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820688034924549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 441.83, + "principal_before": 451.83, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2820683566860357, + "account_data": -72.0, + "after": 737.2, + "before": 809.2, + "card_type_id": 2791990152417157, + "create_time": "2025-08-05 00:47:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820683504011461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 737.2, + "principal_before": 809.2, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2820674422130757, + "account_data": -15.0, + "after": 362.0, + "before": 377.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 00:38:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820674385791173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 362.0, + "principal_before": 377.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2820649487616261, + "account_data": -1324.63, + "after": 425.96, + "before": 1750.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 00:13:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820649391491077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 425.96, + "principal_before": 1750.59, + "principal_data": -1324.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2820649064384517, + "account_data": 1000.0, + "after": 1750.59, + "before": 750.59, + "card_type_id": 2793249295533893, + "create_time": "2025-08-05 00:12:38", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820649061402629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1750.59, + "principal_before": 750.59, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820646566758597, + "account_data": -570.0, + "after": 318.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-05 00:10:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820646460508229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 318.0, + "principal_before": 888.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2820631316121861, + "account_data": -2540.0, + "after": 460.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 23:54:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820631222667461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 460.0, + "principal_before": 3000.0, + "principal_data": -2540.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2820631315990789, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 23:54:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820631222667461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2820631016589765, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 23:54:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628983728389, + "tenant_member_id": 2820625955784965, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "18819484838", + "id": 2820628924385541, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 23:52:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820628921927941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2820625954179333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820628725778629, + "tenant_member_id": 2820625955784965, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820576925632965, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 22:59:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2820576860637637, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 22:59:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820575944575046, + "account_data": 5000.0, + "after": 6220.62, + "before": 1220.62, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 22:58:16", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820575942133829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 6220.62, + "principal_before": 1220.62, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2820549161732293, + "account_data": -70.0, + "after": 1030.0, + "before": 1100.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 22:31:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820549083842565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 1030.0, + "principal_before": 1100.0, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2820549161584837, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 22:31:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820549083842565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818731958570565, + "tenant_member_id": 2799210032301829, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820548290480133, + "account_data": -14.95, + "after": 1220.62, + "before": 1235.57, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 22:30:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820548195846341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1220.62, + "principal_before": 1235.57, + "principal_data": -14.95 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820548290332677, + "account_data": -324.0, + "after": 0.0, + "before": 324.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 22:30:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820548195846341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 324.0, + "principal_data": -324.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2820547816409349, + "account_data": -176.0, + "after": 324.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 22:29:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820547697854533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 324.0, + "principal_before": 500.0, + "principal_data": -176.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2820543127603205, + "account_data": -801.7, + "after": 14407.38, + "before": 15209.08, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 22:24:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820543057479877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 14407.38, + "principal_before": 15209.08, + "principal_data": -801.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2820401440901381, + "account_data": -1048.0, + "after": 75.15, + "before": 1123.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 20:00:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820401252174085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 75.15, + "principal_before": 1123.15, + "principal_data": -1048.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2820401440753925, + "account_data": -92.0, + "after": 0.0, + "before": 92.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 20:00:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820401252174085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 92.0, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2820400581953797, + "account_data": 1000.0, + "after": 1123.15, + "before": 123.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 19:59:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820400579610885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1123.15, + "principal_before": 123.15, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2820343885072453, + "account_data": -5.0, + "after": 39.0, + "before": 44.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 19:02:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820343753459973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 39.0, + "principal_before": 44.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2820303742748741, + "account_data": -8.0, + "after": 92.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 18:21:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820303680063749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 92.0, + "principal_before": 100.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2820280551344645, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 17:57:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2820249101142021, + "tenant_member_id": 2799207338198789, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2820260699326661, + "account_data": -39.11, + "after": 2728.24, + "before": 2767.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 17:37:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2820260626057285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 2728.24, + "principal_before": 2767.35, + "principal_data": -39.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2819730664443397, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 08:38:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2819358741859909, + "account_data": -358.17, + "after": 451.83, + "before": 810.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 02:20:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819358465265285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 451.83, + "principal_before": 810.0, + "principal_data": -358.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2819350242086661, + "account_data": -1353.13, + "after": 1235.57, + "before": 2588.7, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 02:11:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819350163459781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1235.57, + "principal_before": 2588.7, + "principal_data": -1353.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2819349814480645, + "account_data": -2738.06, + "after": 2588.7, + "before": 5326.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 02:10:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819349728235269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2588.7, + "principal_before": 5326.76, + "principal_data": -2738.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2819349814300421, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 02:10:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819349728235269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2819349204832005, + "account_data": 3000.0, + "after": 5326.76, + "before": 2326.76, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 02:10:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819349202472709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5326.76, + "principal_before": 2326.76, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819346573987525, + "account_data": -491.81, + "after": 750.59, + "before": 1242.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 02:07:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819346442866373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 750.59, + "principal_before": 1242.4, + "principal_data": -491.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819346573856453, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 02:07:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819346442866373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819346419731909, + "account_data": 100.0, + "after": 200.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 02:07:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 200.0, + "principal_before": 100.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819345476963909, + "account_data": 1000.0, + "after": 1242.4, + "before": 242.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 02:06:34", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819345474195013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1242.4, + "principal_before": 242.4, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2819291087294021, + "account_data": -610.81, + "after": 683.18, + "before": 1293.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 01:11:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819291037617861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 683.18, + "principal_before": 1293.99, + "principal_data": -610.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2819291087146565, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 01:11:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819291037617861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2819290676596165, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-04 01:10:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2819289163992645, + "account_data": 1000.0, + "after": 1293.99, + "before": 293.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 01:09:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819289161600581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 1293.99, + "principal_before": 293.99, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2819221643152965, + "account_data": -1122.02, + "after": 15209.08, + "before": 16331.1, + "card_type_id": 2793249295533893, + "create_time": "2025-08-04 00:00:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819221617217285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 15209.08, + "principal_before": 16331.1, + "principal_data": -1122.02 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宪", + "memberMobile": "15013075696", + "id": 2819220496617029, + "account_data": -88.0, + "after": 65.0, + "before": 153.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-03 23:59:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819220433063493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207499433733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217019258629, + "tenant_member_id": 2799207500564229, + "principal_after": 65.0, + "principal_before": 153.0, + "principal_data": -88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2819173672963717, + "account_data": -614.05, + "after": 16331.1, + "before": 16945.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 23:11:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819173604445957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 16331.1, + "principal_before": 16945.15, + "principal_data": -614.05 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2819142833343941, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 22:40:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819142772936133, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 22:40:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2819138058931909, + "account_data": -8.0, + "after": 810.0, + "before": 818.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 22:35:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819138035601029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 810.0, + "principal_before": 818.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819131901218501, + "account_data": -932.81, + "after": 242.4, + "before": 1175.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 22:29:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819131814678214, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 242.4, + "principal_before": 1175.21, + "principal_data": -932.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2819131207077637, + "account_data": 1000.0, + "after": 1175.21, + "before": 175.21, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 22:28:36", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819131204669189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1175.21, + "principal_before": 175.21, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2819110811275013, + "account_data": -8.0, + "after": 818.0, + "before": 826.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 22:07:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819110788861509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 818.0, + "principal_before": 826.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2819032638902021, + "account_data": -242.0, + "after": 7662.52, + "before": 7904.52, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 20:48:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2819032369843845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7662.52, + "principal_before": 7904.52, + "principal_data": -242.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2818960821915269, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 19:35:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818960636989125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2818960142339653, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 19:34:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818960139652677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2818918947163845, + "account_data": -83.13, + "after": 0.0, + "before": 83.13, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 18:52:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818918695259717, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 83.13, + "principal_data": -83.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2818873487723269, + "account_data": -3090.0, + "after": 0.0, + "before": 3090.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 18:06:26", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217400186629, + "tenant_member_id": 2799209739667205, + "principal_after": 0.0, + "principal_before": 3090.0, + "principal_data": -3090.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2818873487624965, + "account_data": -4772.0, + "after": 0.0, + "before": 4772.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-03 18:06:26", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217394665221, + "tenant_member_id": 2799209739667205, + "principal_after": 0.0, + "principal_before": 4772.0, + "principal_data": -4772.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2818873487510277, + "account_data": -750.0, + "after": 0.0, + "before": 750.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-03 18:06:26", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217389733637, + "tenant_member_id": 2799209739667205, + "principal_after": 0.0, + "principal_before": 750.0, + "principal_data": -750.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2818871968321221, + "account_data": -570.0, + "after": 16945.15, + "before": 17515.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 18:04:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818871938682501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 16945.15, + "principal_before": 17515.15, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818838718860869, + "account_data": -28.0, + "after": 826.0, + "before": 854.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 17:31:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818838693809797, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 826.0, + "principal_before": 854.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2818824929873541, + "account_data": -144.0, + "after": 157.35, + "before": 301.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 17:17:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818824873447173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 157.35, + "principal_before": 301.35, + "principal_data": -144.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818813251915525, + "account_data": -26.0, + "after": 854.0, + "before": 880.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 17:05:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818813225111237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 854.0, + "principal_before": 880.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818808488775301, + "account_data": -8.0, + "after": 880.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 17:00:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818808432070341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 880.0, + "principal_before": 888.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2818798525238853, + "account_data": -190.0, + "after": 7904.52, + "before": 8094.52, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 16:50:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818798434864709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7904.52, + "principal_before": 8094.52, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2818744044965445, + "account_data": -4.0, + "after": 383.0, + "before": 387.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-03 15:54:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818743979626181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 383.0, + "principal_before": 387.0, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2818743470427781, + "account_data": -17.0, + "after": 387.0, + "before": 404.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-03 15:54:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818743403957829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 387.0, + "principal_before": 404.0, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2818732813061637, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 15:43:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818731958570565, + "tenant_member_id": 2799210032301829, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2818732464623237, + "account_data": -1900.0, + "after": 1100.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 15:42:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818732422090309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 1100.0, + "principal_before": 3000.0, + "principal_data": -1900.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2818731783589445, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 15:42:17", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818731781262917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2818337430114053, + "account_data": -12.72, + "after": 0.0, + "before": 12.72, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 09:01:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818336903270085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 0.0, + "principal_before": 12.72, + "principal_data": -12.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2818337429966597, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 09:01:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818336903270085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818227314724613, + "tenant_member_id": 2799207328155397, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818326491041221, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 08:50:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818031136034501, + "tenant_member_id": 2799207519176453, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2818326381710789, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 08:49:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2818227314724613, + "tenant_member_id": 2799207328155397, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2818227856969477, + "account_data": -987.28, + "after": 12.72, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 07:09:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818227675827781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 12.72, + "principal_before": 1000.0, + "principal_data": -987.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2818227240603205, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 07:09:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818227238096453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219759957765, + "tenant_member_id": 2799207328155397, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818041885232709, + "account_data": -4270.65, + "after": 729.35, + "before": 5000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 04:00:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818041796792005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 729.35, + "principal_before": 5000.0, + "principal_data": -4270.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2818031069662789, + "account_data": 5000.0, + "after": 5000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 03:49:29", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2818031067369029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 5000.0, + "principal_before": 0.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2818026867740101, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 03:45:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2818026776235461, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 03:45:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2817948070399749, + "account_data": -577.53, + "after": 0.0, + "before": 577.53, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 02:25:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817947884179077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 0.0, + "principal_before": 577.53, + "principal_data": -577.53 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2817939102551749, + "account_data": -25.0, + "after": 175.89, + "before": 200.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 02:15:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817939076222725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 175.89, + "principal_before": 200.89, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2817937811296005, + "account_data": -26.0, + "after": 2502.09, + "before": 2528.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 02:14:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817937794862789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2502.09, + "principal_before": 2528.09, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2817913226923653, + "account_data": -56.71, + "after": 175.21, + "before": 231.92, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:49:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817913144643269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 175.21, + "principal_before": 231.92, + "principal_data": -56.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2817913226776197, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-03 01:49:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817913144643269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2817910062206725, + "account_data": -52.0, + "after": 1925.0, + "before": 1977.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-03 01:46:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817910003502853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1925.0, + "principal_before": 1977.0, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2817894790139589, + "account_data": -10.0, + "after": 416.5, + "before": 426.5, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:30:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817894766219013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 416.5, + "principal_before": 426.5, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2817891972795973, + "account_data": -2675.1, + "after": 2326.76, + "before": 5001.86, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:27:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817891909652165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2326.76, + "principal_before": 5001.86, + "principal_data": -2675.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2817891547647557, + "account_data": 3000.0, + "after": 5001.86, + "before": 2001.86, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:27:33", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817891545091653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5001.86, + "principal_before": 2001.86, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2817889928318598, + "account_data": -352.77, + "after": 2001.86, + "before": 2354.63, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:25:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817889762971269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2001.86, + "principal_before": 2354.63, + "principal_data": -352.77 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2817881362730565, + "account_data": -380.0, + "after": 17515.15, + "before": 17895.15, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:17:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817881344331525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 17515.15, + "principal_before": 17895.15, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2817880143892165, + "account_data": -1654.99, + "after": 17895.15, + "before": 19550.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 01:15:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817880112500293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 17895.15, + "principal_before": 19550.14, + "principal_data": -1654.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2817856462261829, + "account_data": -10.0, + "after": 426.5, + "before": 436.5, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 00:51:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817856444206725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 426.5, + "principal_before": 436.5, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2817846408498821, + "account_data": -240.37, + "after": 635.09, + "before": 875.46, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 00:41:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817846341930693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 635.09, + "principal_before": 875.46, + "principal_data": -240.37 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2817842531487301, + "account_data": -1749.41, + "after": 436.5, + "before": 2185.91, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 00:37:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817842494983941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 436.5, + "principal_before": 2185.91, + "principal_data": -1749.41 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2817841521987333, + "account_data": 1000.0, + "after": 2185.91, + "before": 1185.91, + "card_type_id": 2793249295533893, + "create_time": "2025-08-03 00:36:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817841519398661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 2185.91, + "principal_before": 1185.91, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2817810649026245, + "account_data": -68.0, + "after": 703.0, + "before": 771.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-03 00:05:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817810500013637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 703.0, + "principal_before": 771.0, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2817729890913989, + "account_data": -113.55, + "after": 301.35, + "before": 414.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 22:43:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817729862372933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 301.35, + "principal_before": 414.9, + "principal_data": -113.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18825868576", + "id": 2817666231095045, + "account_data": -198.4, + "after": 313.6, + "before": 512.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 21:38:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817666205617861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207466075909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216936748805, + "tenant_member_id": 2799207467042565, + "principal_after": 313.6, + "principal_before": 512.0, + "principal_data": -198.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2817653035568901, + "account_data": -5.0, + "after": 33.4, + "before": 38.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 21:24:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817653014023749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 33.4, + "principal_before": 38.4, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2817612148199109, + "account_data": -239.31, + "after": 8094.52, + "before": 8333.83, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 20:43:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817611985227461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8094.52, + "principal_before": 8333.83, + "principal_data": -239.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2817600493735365, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 20:31:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2817595248709189, + "account_data": -768.08, + "after": 231.92, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 20:26:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817595187023621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 231.92, + "principal_before": 1000.0, + "principal_data": -768.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2817594856394373, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 20:25:44", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817594853805701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2817568820973253, + "account_data": -12.0, + "after": 38.4, + "before": 50.4, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 19:59:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817568760516229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 38.4, + "principal_before": 50.4, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2817512176701125, + "account_data": -352.87, + "after": 0.0, + "before": 352.87, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 19:01:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817511808437829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 0.0, + "principal_before": 352.87, + "principal_data": -352.87 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2817512176553669, + "account_data": -120.0, + "after": 0.0, + "before": 120.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 19:01:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817511808437829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 0.0, + "principal_before": 120.0, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2817504058461765, + "account_data": -905.0, + "after": 0.0, + "before": 905.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 18:53:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817503866441477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 905.0, + "principal_data": -905.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2817458157129285, + "account_data": -190.0, + "after": 19550.14, + "before": 19740.14, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 18:06:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817458141286085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 19550.14, + "principal_before": 19740.14, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2817425044459141, + "account_data": -26.0, + "after": 2528.09, + "before": 2554.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 17:33:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817425002122949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2528.09, + "principal_before": 2554.09, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2817409299205765, + "account_data": -12.0, + "after": 0.0, + "before": 12.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 17:16:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817409268354821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 0.0, + "principal_before": 12.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2817408523144965, + "account_data": -96.0, + "after": 414.9, + "before": 510.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 17:16:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817408430804613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 414.9, + "principal_before": 510.9, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2817407719263877, + "account_data": -10.0, + "after": 12.0, + "before": 22.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 17:15:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817407585210118, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 12.0, + "principal_before": 22.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2817330966597253, + "account_data": -10.0, + "after": 190.0, + "before": 200.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-02 15:57:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817330886053573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 190.0, + "principal_before": 200.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2817329182543557, + "account_data": -90.0, + "after": 905.0, + "before": 995.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 15:55:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817329152151109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 905.0, + "principal_before": 995.0, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2817329182396101, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 15:55:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817329152151109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2817311658659525, + "account_data": -190.02, + "after": 1185.91, + "before": 1375.93, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 15:37:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2817311594860293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1185.91, + "principal_before": 1375.93, + "principal_data": -190.02 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816988591786117, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 10:09:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816570368117637, + "account_data": -44.82, + "after": 577.53, + "before": 622.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 03:03:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816570346638149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 577.53, + "principal_before": 622.35, + "principal_data": -44.82 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816551879084869, + "account_data": 36.36, + "after": 622.35, + "before": 585.99, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 02:44:46", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816549026794501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 622.35, + "principal_before": 585.99, + "principal_data": 36.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816549053614917, + "account_data": -36.36, + "after": 585.99, + "before": 622.35, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 02:41:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816549026794501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 585.99, + "principal_before": 622.35, + "principal_data": -36.36 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816548004121541, + "account_data": -240.25, + "after": 622.35, + "before": 862.6, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 02:40:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816547954019333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 622.35, + "principal_before": 862.6, + "principal_data": -240.25 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2816514171309061, + "account_data": -45.0, + "after": 200.89, + "before": 245.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 02:06:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816514151484421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 200.89, + "principal_before": 245.89, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2816500333677445, + "account_data": -345.75, + "after": 7687.19, + "before": 8032.94, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:52:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816500140116805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 7687.19, + "principal_before": 8032.94, + "principal_data": -345.75 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2816500333529989, + "account_data": -1047.78, + "after": 0.0, + "before": 1047.78, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 01:52:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816500140116805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806855376242373, + "tenant_member_id": 2799207090996997, + "principal_after": 0.0, + "principal_before": 1047.78, + "principal_data": -1047.78 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2816482915912710, + "account_data": -100.0, + "after": 14800.0, + "before": 14900.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-02 01:34:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816482862337029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 14800.0, + "principal_before": 14900.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2816482032061381, + "account_data": -384.17, + "after": 2354.63, + "before": 2738.8, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:33:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816481959513093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2354.63, + "principal_before": 2738.8, + "principal_data": -384.17 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2816464655109125, + "account_data": -100.0, + "after": 14900.0, + "before": 15000.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-02 01:16:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816464574974981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 14900.0, + "principal_before": 15000.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2816464055143301, + "account_data": -878.29, + "after": 2738.8, + "before": 3617.09, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:15:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816463924694021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2738.8, + "principal_before": 3617.09, + "principal_data": -878.29 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816457493597125, + "account_data": -200.0, + "after": 771.0, + "before": 971.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-02 01:08:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816457347550085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 771.0, + "principal_before": 971.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816456773143557, + "account_data": -1062.32, + "after": 123.15, + "before": 1185.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:08:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816456562330501, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 123.15, + "principal_before": 1185.47, + "principal_data": -1062.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816456431750021, + "account_data": 960.25, + "after": 1185.47, + "before": 225.22, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:07:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816455776783237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1185.47, + "principal_before": 225.22, + "principal_data": 960.25 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816456431602565, + "account_data": 102.07, + "after": 971.0, + "before": 868.93, + "card_type_id": 2791990152417157, + "create_time": "2025-08-02 01:07:40", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816455776783237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 971.0, + "principal_before": 868.93, + "principal_data": 102.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816455829752773, + "account_data": -960.25, + "after": 225.22, + "before": 1185.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:07:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816455776783237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 225.22, + "principal_before": 1185.47, + "principal_data": -960.25 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816455829605317, + "account_data": -102.07, + "after": 868.93, + "before": 971.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-02 01:07:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816455776783237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 868.93, + "principal_before": 971.0, + "principal_data": -102.07 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2816455127190469, + "account_data": 1000.0, + "after": 1185.47, + "before": 185.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:06:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816455124847557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1185.47, + "principal_before": 185.47, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2816450091502405, + "account_data": -259.86, + "after": 19740.14, + "before": 20000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 01:01:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816450051673029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 19740.14, + "principal_before": 20000.0, + "principal_data": -259.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2816450091354949, + "account_data": -1172.3, + "after": 0.0, + "before": 1172.3, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 01:01:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816450051673029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 1172.3, + "principal_data": -1172.3 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2816449613089605, + "account_data": -380.0, + "after": 1172.3, + "before": 1552.3, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 01:00:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816449550764933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1172.3, + "principal_before": 1552.3, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2816436008437957, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-02 00:46:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816435100470277, + "account_data": -75.47, + "after": 862.6, + "before": 938.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 00:45:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816435054332869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 862.6, + "principal_before": 938.07, + "principal_data": -75.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816403642911621, + "account_data": -5.0, + "after": 938.07, + "before": 943.07, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 00:13:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816403522472837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 938.07, + "principal_before": 943.07, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2816402996366277, + "account_data": -101.1, + "after": 943.07, + "before": 1044.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-02 00:13:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816402902551365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 943.07, + "principal_before": 1044.17, + "principal_data": -101.1 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2816384562105349, + "account_data": -100.0, + "after": 490.0, + "before": 590.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-01 23:54:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816384484690821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216197633797, + "tenant_member_id": 2799207221888773, + "principal_after": 490.0, + "principal_before": 590.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2816383974230853, + "account_data": -541.6, + "after": 50.4, + "before": 592.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 23:53:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816383885642757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 50.4, + "principal_before": 592.0, + "principal_data": -541.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2816378221693829, + "account_data": -418.59, + "after": 8333.83, + "before": 8752.42, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 23:48:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816377939659653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8333.83, + "principal_before": 8752.42, + "principal_data": -418.59 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2816376115678213, + "account_data": -5.0, + "after": 995.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 23:45:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816376086694725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 995.0, + "principal_before": 1000.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2816375662988293, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 23:45:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816375660284933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2816373835533317, + "account_data": -96.0, + "after": 510.9, + "before": 606.9, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 23:43:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816373805222853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 510.9, + "principal_before": 606.9, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2816293723245446, + "account_data": -382.98, + "after": 1375.93, + "before": 1758.91, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 22:22:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816293632707461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1375.93, + "principal_before": 1758.91, + "principal_data": -382.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2816112408906757, + "account_data": -409.58, + "after": 81.47, + "before": 491.05, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 19:17:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816112342584133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 81.47, + "principal_before": 491.05, + "principal_data": -409.58 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2816076931844485, + "account_data": -5.0, + "after": 404.0, + "before": 409.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-01 18:41:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816076791531973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 404.0, + "principal_before": 409.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2816073293236613, + "account_data": -45.0, + "after": 1977.0, + "before": 2022.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-01 18:37:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816073172404613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 1977.0, + "principal_before": 2022.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2816052899449285, + "account_data": -45.0, + "after": 22.0, + "before": 67.0, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 18:17:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816052884244805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 22.0, + "principal_before": 67.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2816048659089669, + "account_data": -26.0, + "after": 245.89, + "before": 271.89, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 18:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816048606841093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 245.89, + "principal_before": 271.89, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2816047030946117, + "account_data": -10.06, + "after": 8752.42, + "before": 8762.48, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 18:11:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816046858521029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8752.42, + "principal_before": 8762.48, + "principal_data": -10.06 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2816013071011525, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-08-01 17:36:40", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816013068586693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216357721861, + "tenant_member_id": 2799207276775173, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2816001412517637, + "account_data": -8.0, + "after": 200.0, + "before": 208.0, + "card_type_id": 2794699703437125, + "create_time": "2025-08-01 17:24:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2816001366937349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 200.0, + "principal_before": 208.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2815975678168773, + "account_data": -10.0, + "after": 2375.43, + "before": 2385.43, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 16:58:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815975625215621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2375.43, + "principal_before": 2385.43, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2815944873234245, + "account_data": -380.0, + "after": 120.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 16:27:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815944825409285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 120.0, + "principal_before": 500.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2815911087656709, + "account_data": -63.0, + "after": 185.47, + "before": 248.47, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 15:52:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815910820646725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 185.47, + "principal_before": 248.47, + "principal_data": -63.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2815321450876613, + "account_data": -65.0, + "after": 1676.97, + "before": 1741.97, + "card_type_id": 2794699703437125, + "create_time": "2025-08-01 05:53:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815321193680581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1676.97, + "principal_before": 1741.97, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2815315339087685, + "account_data": -2646.23, + "after": 8762.48, + "before": 11408.71, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 05:46:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815314934582917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8762.48, + "principal_before": 11408.71, + "principal_data": -2646.23 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2815315338940229, + "account_data": -1888.0, + "after": 0.0, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 05:46:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815314934582917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 0.0, + "principal_before": 1888.0, + "principal_data": -1888.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2815171077770053, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 03:20:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2815107867381445, + "account_data": 10000.0, + "after": 11408.71, + "before": 1408.71, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 02:15:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815107864956613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 11408.71, + "principal_before": 1408.71, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2815072464096965, + "account_data": -12.0, + "after": 1047.78, + "before": 1059.78, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 01:39:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815072443125573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806855376242373, + "tenant_member_id": 2799207090996997, + "principal_after": 1047.78, + "principal_before": 1059.78, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2815068924219141, + "account_data": -65.0, + "after": 349.17, + "before": 414.17, + "card_type_id": 2793249295533893, + "create_time": "2025-08-01 01:36:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815068773158533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 349.17, + "principal_before": 414.17, + "principal_data": -65.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2815068577500997, + "account_data": -940.22, + "after": 1059.78, + "before": 2000.0, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 01:35:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815068440841925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806855376242373, + "tenant_member_id": 2799207090996997, + "principal_after": 1059.78, + "principal_before": 2000.0, + "principal_data": -940.22 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2815008602607237, + "account_data": -95.0, + "after": 0.0, + "before": 95.0, + "card_type_id": 2791990152417157, + "create_time": "2025-08-01 00:34:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815008483659589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217540400901, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 95.0, + "principal_data": -95.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2815007738089157, + "account_data": -277.83, + "after": 1552.3, + "before": 1830.13, + "card_type_id": 2793266846533445, + "create_time": "2025-08-01 00:33:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2815007579164421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1552.3, + "principal_before": 1830.13, + "principal_data": -277.83 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2814945196542405, + "account_data": -232.93, + "after": 875.46, + "before": 1108.39, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 23:30:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814945134938821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 875.46, + "principal_before": 1108.39, + "principal_data": -232.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2814901878147589, + "account_data": -310.38, + "after": 1408.71, + "before": 1719.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 22:46:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814901496351365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1408.71, + "principal_before": 1719.09, + "principal_data": -310.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2814899937938053, + "account_data": 482.38, + "after": 1719.09, + "before": 1236.71, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 22:44:20", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814889857288645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1719.09, + "principal_before": 1236.71, + "principal_data": 482.38 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2814899856509637, + "account_data": -172.0, + "after": 1741.97, + "before": 1913.97, + "card_type_id": 2794699703437125, + "create_time": "2025-07-31 22:44:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814899746965957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1741.97, + "principal_before": 1913.97, + "principal_data": -172.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2814895555594757, + "account_data": -15.0, + "after": 42.0, + "before": 57.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-31 22:39:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814895489272325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 42.0, + "principal_before": 57.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2814890241985221, + "account_data": -482.38, + "after": 1236.71, + "before": 1719.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 22:34:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814889857288645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1236.71, + "principal_before": 1719.09, + "principal_data": -482.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2814873462524613, + "account_data": -8.0, + "after": 271.89, + "before": 279.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 22:17:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814873440668165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 271.89, + "principal_before": 279.89, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2814787739290053, + "account_data": -8.0, + "after": 1570.0, + "before": 1578.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 20:50:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814787711732229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1570.0, + "principal_before": 1578.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2814735711472325, + "account_data": -26.0, + "after": 279.89, + "before": 305.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 19:57:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814735694432709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 279.89, + "principal_before": 305.89, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2814714343688709, + "account_data": -5.0, + "after": 305.89, + "before": 310.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 19:35:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814714285787781, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 305.89, + "principal_before": 310.89, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2814688933415557, + "account_data": -220.2, + "after": 0.0, + "before": 220.2, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 19:09:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814688737184261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 220.2, + "principal_data": -220.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "13825157225", + "id": 2814682139511301, + "account_data": -1.0, + "after": 0.0, + "before": 1.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 19:02:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814681931107013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212475680517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219160303365, + "tenant_member_id": 2799212476647173, + "principal_after": 0.0, + "principal_before": 1.0, + "principal_data": -1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2814651471776197, + "account_data": -710.0, + "after": 0.0, + "before": 710.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 18:31:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814651412892101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 0.0, + "principal_before": 710.0, + "principal_data": -710.0 + }, + { + "memberCardTypeName": "月卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "13825157225", + "id": 2814476337923589, + "account_data": 985.0, + "after": 985.0, + "before": 0.0, + "card_type_id": 2793306611533637, + "create_time": "2025-07-31 15:33:25", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814476335547909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212475680517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2814474501506437, + "tenant_member_id": 2799212476647173, + "principal_after": 985.0, + "principal_before": 0.0, + "principal_data": 985.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2814446893303237, + "account_data": -10.0, + "after": 208.0, + "before": 218.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-31 15:03:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814446840710533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 208.0, + "principal_before": 218.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2814445897516485, + "account_data": -11.0, + "after": 1028.0, + "before": 1039.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 15:02:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2814445711345093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1028.0, + "principal_before": 1039.0, + "principal_data": -11.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2814057205466693, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-31 08:27:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813729334888645, + "tenant_member_id": 2799207533332229, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2813729963886789, + "account_data": -2647.13, + "after": 352.87, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 02:54:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813729898105605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 352.87, + "principal_before": 3000.0, + "principal_data": -2647.13 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2813729963722949, + "account_data": -271.17, + "after": 1249.83, + "before": 1521.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-31 02:54:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813729898105605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217086531333, + "tenant_member_id": 2799207533332229, + "principal_after": 1249.83, + "principal_before": 1521.0, + "principal_data": -271.17 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2813729033799877, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 02:53:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813729032046789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217092740869, + "tenant_member_id": 2799207533332229, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2813717423901445, + "account_data": -569.86, + "after": 80.14, + "before": 650.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-31 02:41:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813716881199685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 80.14, + "principal_before": 650.0, + "principal_data": -569.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2813662851156421, + "account_data": -1574.06, + "after": 1719.09, + "before": 3293.15, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 01:45:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813662627121605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 1719.09, + "principal_before": 3293.15, + "principal_data": -1574.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2813662093316677, + "account_data": 1574.06, + "after": 3617.09, + "before": 2043.03, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 01:45:08", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813659256672837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3617.09, + "principal_before": 2043.03, + "principal_data": 1574.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2813659417203269, + "account_data": -1574.06, + "after": 2043.03, + "before": 3617.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 01:42:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813659256672837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2043.03, + "principal_before": 3617.09, + "principal_data": -1574.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2813658738348613, + "account_data": -1043.61, + "after": 3293.15, + "before": 4336.76, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 01:41:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813658385975493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 3293.15, + "principal_before": 4336.76, + "principal_data": -1043.61 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2813650250369221, + "account_data": -25.0, + "after": 310.89, + "before": 335.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 01:33:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813650174069509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 310.89, + "principal_before": 335.89, + "principal_data": -25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2813600908350021, + "account_data": -15.0, + "after": 335.89, + "before": 350.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 00:42:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813600851759685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 335.89, + "principal_before": 350.89, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2813594972818181, + "account_data": -371.81, + "after": 414.17, + "before": 785.98, + "card_type_id": 2793249295533893, + "create_time": "2025-07-31 00:36:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813594611733061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 414.17, + "principal_before": 785.98, + "principal_data": -371.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2813556454443461, + "account_data": -599.11, + "after": 1044.17, + "before": 1643.28, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 23:57:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813556230949317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 1044.17, + "principal_before": 1643.28, + "principal_data": -599.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2813556454279621, + "account_data": -61.19, + "after": 0.0, + "before": 61.19, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 23:57:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813556230949317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 0.0, + "principal_before": 61.19, + "principal_data": -61.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18684668238", + "id": 2813555573920325, + "account_data": -8.0, + "after": 914.0, + "before": 922.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 23:56:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813555550358277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212915558149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220108068613, + "tenant_member_id": 2799212917131013, + "principal_after": 914.0, + "principal_before": 922.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2813549017549573, + "account_data": -103.34, + "after": 606.9, + "before": 710.24, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 23:50:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813548975786437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 606.9, + "principal_before": 710.24, + "principal_data": -103.34 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宪", + "memberMobile": "15013075696", + "id": 2813454435781125, + "account_data": -15.0, + "after": 153.0, + "before": 168.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-30 22:13:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813454390299141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207499433733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217019258629, + "tenant_member_id": 2799207500564229, + "principal_after": 153.0, + "principal_before": 168.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2813443548367365, + "account_data": -331.05, + "after": 1830.13, + "before": 2161.18, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 22:02:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813443292088837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1830.13, + "principal_before": 2161.18, + "principal_data": -331.05 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2813441868564997, + "account_data": -24.0, + "after": 2554.09, + "before": 2578.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 22:01:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813441846086085, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2554.09, + "principal_before": 2578.09, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宪", + "memberMobile": "15013075696", + "id": 2813425202202821, + "account_data": -15.0, + "after": 168.0, + "before": 183.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-30 21:44:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813425159064325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207499433733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217019258629, + "tenant_member_id": 2799207500564229, + "principal_after": 168.0, + "principal_before": 183.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2813346464205253, + "account_data": -336.45, + "after": 0.0, + "before": 336.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 20:24:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813346157136069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 0.0, + "principal_before": 336.45, + "principal_data": -336.45 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2813346464041413, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 20:24:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813346157136069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2813333642398469, + "account_data": -8.0, + "after": 2578.09, + "before": 2586.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 20:11:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813333618559493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2578.09, + "principal_before": 2586.09, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2813332728383685, + "account_data": -137.42, + "after": 1.27, + "before": 138.69, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 20:10:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813332625771013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219141068549, + "tenant_member_id": 2799207204882181, + "principal_after": 1.27, + "principal_before": 138.69, + "principal_data": -137.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2813321356020229, + "account_data": -223.81, + "after": 50.73, + "before": 274.54, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 19:58:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813321298512645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 50.73, + "principal_before": 274.54, + "principal_data": -223.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2813321355889157, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 19:58:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813321298512645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2813306803341829, + "account_data": -45.0, + "after": 67.0, + "before": 112.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 19:43:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813306739411461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 67.0, + "principal_before": 112.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2813293511018949, + "account_data": -382.95, + "after": 491.05, + "before": 874.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 19:30:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813293380143621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 491.05, + "principal_before": 874.0, + "principal_data": -382.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2813208961469189, + "account_data": -90.0, + "after": 220.2, + "before": 310.2, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 18:04:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813208944183493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 220.2, + "principal_before": 310.2, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2813208961305349, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 18:04:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813208944183493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2813176006330821, + "account_data": -279.54, + "after": 976.07, + "before": 1255.61, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 17:30:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813175947151813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 976.07, + "principal_before": 1255.61, + "principal_data": -279.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2813158725323525, + "account_data": -34.0, + "after": 350.89, + "before": 384.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 17:13:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813158679808773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 350.89, + "principal_before": 384.89, + "principal_data": -34.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2813086933780933, + "account_data": -190.0, + "after": 61.19, + "before": 251.19, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 16:00:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813086845324037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 61.19, + "principal_before": 251.19, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 2813073119152901, + "account_data": -90.79, + "after": 186.31, + "before": 277.1, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 15:45:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813072994257413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219509479173, + "tenant_member_id": 2799212596201221, + "principal_after": 186.31, + "principal_before": 277.1, + "principal_data": -90.79 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2813065610758341, + "account_data": -5.0, + "after": 44.0, + "before": 49.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 15:38:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813065535785477, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 44.0, + "principal_before": 49.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生", + "memberMobile": "13312811181", + "id": 2813030752815557, + "account_data": -212.07, + "after": 461.93, + "before": 674.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 15:02:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2813030547065285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212789827333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813028275358149, + "tenant_member_id": 2813027656895237, + "principal_after": 461.93, + "principal_before": 674.0, + "principal_data": -212.07 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生", + "memberMobile": "13312811181", + "id": 2813030236751429, + "account_data": 674.0, + "after": 674.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 15:02:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212789827333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2813028275358149, + "tenant_member_id": 2813027656895237, + "principal_after": 674.0, + "principal_before": 0.0, + "principal_data": 674.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2812765623469637, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 10:33:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812352492571141, + "tenant_member_id": 2799212678481669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2812353038977541, + "account_data": -725.46, + "after": 274.54, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 03:33:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812352929286661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 274.54, + "principal_before": 1000.0, + "principal_data": -725.46 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姜姜", + "memberMobile": "17825615553", + "id": 2812352422496709, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 03:32:52", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812352420645317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212677449477, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219666683653, + "tenant_member_id": 2799212678481669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812326137236229, + "account_data": -248.81, + "after": 251.19, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 03:06:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812326071945989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 251.19, + "principal_before": 500.0, + "principal_data": -248.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2812255249025797, + "account_data": -5.0, + "after": 384.89, + "before": 389.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 01:54:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812255036770757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 384.89, + "principal_before": 389.89, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2812181804599749, + "account_data": -10.0, + "after": 2586.09, + "before": 2596.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:39:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812181742782917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2586.09, + "principal_before": 2596.09, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812166679906053, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 00:23:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812165566810885, + "account_data": -1480.51, + "after": 1643.28, + "before": 3123.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:22:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812165465622981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 1643.28, + "principal_before": 3123.79, + "principal_data": -1480.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812165566679813, + "account_data": -55.0, + "after": 0.0, + "before": 55.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 00:22:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812165465622981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 0.0, + "principal_before": 55.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812165566532357, + "account_data": -37.0, + "after": 0.0, + "before": 37.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-30 00:22:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812165465622981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216005367557, + "tenant_member_id": 2799207137642245, + "principal_after": 0.0, + "principal_before": 37.0, + "principal_data": -37.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2812164956293893, + "account_data": 3000.0, + "after": 3123.79, + "before": 123.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:22:10", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812164953934597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 3123.79, + "principal_before": 123.79, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2812162515928645, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 00:19:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2812160980060677, + "tenant_member_id": 2799212473452293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2812161589299717, + "account_data": -689.8, + "after": 310.2, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:18:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812161460292037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 310.2, + "principal_before": 1000.0, + "principal_data": -689.8 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2812161589152261, + "account_data": -11.0, + "after": 0.0, + "before": 11.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-30 00:18:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812161460292037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219145770757, + "tenant_member_id": 2799212473452293, + "principal_after": 0.0, + "principal_before": 11.0, + "principal_data": -11.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2812160864848645, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:18:00", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812160863095557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219182782213, + "tenant_member_id": 2799212473452293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2812149453457861, + "account_data": -655.43, + "after": 4336.76, + "before": 4992.19, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:06:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812149383564037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 4336.76, + "principal_before": 4992.19, + "principal_data": -655.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2812149249788101, + "account_data": -8.0, + "after": 2596.09, + "before": 2604.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:06:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812149198834117, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2596.09, + "principal_before": 2604.09, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2812148416055749, + "account_data": -7.2, + "after": 0.0, + "before": 7.2, + "card_type_id": 2793249295533893, + "create_time": "2025-07-30 00:05:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812148174555653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 7.2, + "principal_data": -7.2 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2812148415891909, + "account_data": -55.0, + "after": 0.0, + "before": 55.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-30 00:05:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812148174555653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 55.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2812127028677381, + "account_data": -324.93, + "after": 19402.49, + "before": 19727.42, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 23:43:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812126971414981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 19402.49, + "principal_before": 19727.42, + "principal_data": -324.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2812120540678341, + "account_data": -45.0, + "after": 112.0, + "before": 157.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 23:36:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812120516839621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 112.0, + "principal_before": 157.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2812022384478661, + "account_data": -141.2, + "after": 785.98, + "before": 927.18, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 21:57:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812022200666309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 785.98, + "principal_before": 927.18, + "principal_data": -141.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2812021309573637, + "account_data": -183.67, + "after": 1758.91, + "before": 1942.58, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 21:56:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812021248182789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1758.91, + "principal_before": 1942.58, + "principal_data": -183.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2812021309426181, + "account_data": -278.42, + "after": 0.0, + "before": 278.42, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 21:56:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2812021248182789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 0.0, + "principal_before": 278.42, + "principal_data": -278.42 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2811897829313029, + "account_data": -1520.0, + "after": 710.0, + "before": 2230.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 19:50:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811897758435525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 710.0, + "principal_before": 2230.0, + "principal_data": -1520.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2811877313006341, + "account_data": -26.42, + "after": 1255.61, + "before": 1282.03, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 19:29:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811877247044037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1255.61, + "principal_before": 1282.03, + "principal_data": -26.42 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2811829899609669, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 18:41:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2811829743340037, + "account_data": -1900.0, + "after": 336.45, + "before": 2236.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 18:41:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811829719829253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 336.45, + "principal_before": 2236.45, + "principal_data": -1900.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2811829132806597, + "account_data": 1000.0, + "after": 2236.45, + "before": 1236.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 18:40:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811829130856901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2236.45, + "principal_before": 1236.45, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2811787940956357, + "account_data": -45.0, + "after": 389.89, + "before": 434.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 17:58:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811787922868997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 389.89, + "principal_before": 434.89, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2811781212588485, + "account_data": -45.0, + "after": 2161.18, + "before": 2206.18, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 17:51:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811781175888325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 2161.18, + "principal_before": 2206.18, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2811775912381189, + "account_data": -90.0, + "after": 2206.18, + "before": 2296.18, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 17:46:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811775893424581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 2206.18, + "principal_before": 2296.18, + "principal_data": -90.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2811774220945925, + "account_data": -26.0, + "after": 434.89, + "before": 460.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 17:44:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811774181394629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 434.89, + "principal_before": 460.89, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2811771601209541, + "account_data": -14.0, + "after": 2604.09, + "before": 2618.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 17:42:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811771581434629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2604.09, + "principal_before": 2618.09, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2811765203945669, + "account_data": -100.0, + "after": 674.0, + "before": 774.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-29 17:35:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811765136820677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 674.0, + "principal_before": 774.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2811764682803717, + "account_data": -325.83, + "after": 1282.03, + "before": 1607.86, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 17:34:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811764503874309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1282.03, + "principal_before": 1607.86, + "principal_data": -325.83 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2811763123276293, + "account_data": -12.0, + "after": 55.0, + "before": 67.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 17:33:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811763104876997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 55.0, + "principal_before": 67.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2811761699015109, + "account_data": -12.0, + "after": 67.0, + "before": 79.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 17:31:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811761639704773, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 67.0, + "principal_before": 79.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2811750791858373, + "account_data": -1520.0, + "after": 248.47, + "before": 1768.47, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 17:20:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811750742706373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 248.47, + "principal_before": 1768.47, + "principal_data": -1520.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2811707238615493, + "account_data": -45.0, + "after": 55.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 16:36:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811707217103045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 55.0, + "principal_before": 100.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2811690681387781, + "account_data": -5.0, + "after": 2296.18, + "before": 2301.18, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 16:19:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2811690660350469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 2296.18, + "principal_before": 2301.18, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2810922086140357, + "account_data": -5.0, + "after": 409.0, + "before": 414.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-29 03:17:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810921949694405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 409.0, + "principal_before": 414.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2810863164836293, + "account_data": -161.58, + "after": 278.42, + "before": 440.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 02:17:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810863082375685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 278.42, + "principal_before": 440.0, + "principal_data": -161.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2810849765443781, + "account_data": -574.09, + "after": 1768.47, + "before": 2342.56, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 02:04:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810849631783365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 1768.47, + "principal_before": 2342.56, + "principal_data": -574.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2810848199477765, + "account_data": -289.58, + "after": 2342.56, + "before": 2632.14, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 02:02:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810848059345413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2342.56, + "principal_before": 2632.14, + "principal_data": -289.58 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2810848199330309, + "account_data": -62.62, + "after": 0.0, + "before": 62.62, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 02:02:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810848059345413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 0.0, + "principal_before": 62.62, + "principal_data": -62.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2810847448074693, + "account_data": -1003.0, + "after": 332.0, + "before": 1335.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 02:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810846990125829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 332.0, + "principal_before": 1335.0, + "principal_data": -1003.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2810847447943621, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 02:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810846990125829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2810809101208069, + "account_data": -21.0, + "after": 1913.97, + "before": 1934.97, + "card_type_id": 2794699703437125, + "create_time": "2025-07-29 01:22:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810808969152709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1913.97, + "principal_before": 1934.97, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2810802743904005, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 01:16:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2810802688820997, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 01:16:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2810801842670085, + "account_data": -992.8, + "after": 7.2, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 01:15:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810801793764101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 7.2, + "principal_before": 1000.0, + "principal_data": -992.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2810801126083077, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 01:14:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810801124133381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2810800366012613, + "account_data": 1000.0, + "after": 1335.0, + "before": 335.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 01:14:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810800364193989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1335.0, + "principal_before": 335.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2810771868076485, + "account_data": -30.0, + "after": 440.0, + "before": 470.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 00:45:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810771815107077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 440.0, + "principal_before": 470.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2810752965953989, + "account_data": -12.0, + "after": 2618.09, + "before": 2630.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-29 00:25:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810752940525765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2618.09, + "principal_before": 2630.09, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2810737345464837, + "account_data": -30.0, + "after": 470.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-29 00:09:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810737273407941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 470.0, + "principal_before": 500.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生", + "memberMobile": "13318830983", + "id": 2810708662667013, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-28 23:40:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810692397271813, + "tenant_member_id": 2810692143794373, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生", + "memberMobile": "13318830983", + "id": 2810708618364677, + "account_data": 1098.0, + "after": 1098.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 23:40:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810707427641797, + "tenant_member_id": 2810692143794373, + "principal_after": 1098.0, + "principal_before": 0.0, + "principal_data": 1098.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2810651136936389, + "account_data": -16.0, + "after": 2630.09, + "before": 2646.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 22:42:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810651099646725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2630.09, + "principal_before": 2646.09, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2810628308421125, + "account_data": -184.44, + "after": 2301.18, + "before": 2485.62, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 22:19:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810628200630725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 2301.18, + "principal_before": 2485.62, + "principal_data": -184.44 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2810620849949125, + "account_data": -37.72, + "after": 0.0, + "before": 37.72, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 22:11:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810620544846597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 37.72, + "principal_data": -37.72 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2810620849785285, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 22:11:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810620544846597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2810619879065797, + "account_data": -90.84, + "after": 282.87, + "before": 373.71, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 22:10:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810619819100613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 282.87, + "principal_before": 373.71, + "principal_data": -90.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2810616083089605, + "account_data": -26.0, + "after": 2646.09, + "before": 2672.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 22:06:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810615995025861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2646.09, + "principal_before": 2672.09, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2810577954769093, + "account_data": -570.0, + "after": 1412.67, + "before": 1982.67, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 21:27:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810577912154629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 1412.67, + "principal_before": 1982.67, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2810568035207685, + "account_data": -6017.33, + "after": 1982.67, + "before": 8000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 21:17:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810567859636997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 1982.67, + "principal_before": 8000.0, + "principal_data": -6017.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2810568035060229, + "account_data": -1388.0, + "after": 0.0, + "before": 1388.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 21:17:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810567859636997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809392472082949, + "tenant_member_id": 2799207232816901, + "principal_after": 0.0, + "principal_before": 1388.0, + "principal_data": -1388.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2810563645851397, + "account_data": 888.0, + "after": 1388.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 21:13:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809392472082949, + "tenant_member_id": 2799207232816901, + "principal_after": 1388.0, + "principal_before": 500.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2810563364899269, + "account_data": 5000.0, + "after": 8000.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 21:12:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810563362048453, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 8000.0, + "principal_before": 3000.0, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810547792611525, + "account_data": -640.0, + "after": 2767.35, + "before": 3407.35, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 20:57:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810547746703877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 2767.35, + "principal_before": 3407.35, + "principal_data": -640.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810547792464069, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 20:57:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810547746703877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412972263621, + "tenant_member_id": 2810412433033413, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810547674482245, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 20:56:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412972263621, + "tenant_member_id": 2810412433033413, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810546931960325, + "account_data": 3000.0, + "after": 3407.35, + "before": 407.35, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 20:56:13", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810546930207237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 3407.35, + "principal_before": 407.35, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810543656520133, + "account_data": -312.65, + "after": 407.35, + "before": 720.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 20:52:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810543607958277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 407.35, + "principal_before": 720.0, + "principal_data": -312.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2810538946529733, + "account_data": -1020.0, + "after": 2230.0, + "before": 3250.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 20:48:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810538891200965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 2230.0, + "principal_before": 3250.0, + "principal_data": -1020.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2810538946365893, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 20:48:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810538891200965, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2810517652031941, + "account_data": -16.0, + "after": 460.89, + "before": 476.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 20:26:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810517636500229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 460.89, + "principal_before": 476.89, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2810440587758085, + "account_data": -50.0, + "after": 476.89, + "before": 526.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 19:08:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810440550435269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 476.89, + "principal_before": 526.89, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810421509048837, + "account_data": -280.0, + "after": 720.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 18:48:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810421461764613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 720.0, + "principal_before": 1000.0, + "principal_data": -280.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810421508901381, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 18:48:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810421461764613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412972263621, + "tenant_member_id": 2810412433033413, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810413550192389, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 18:40:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412972263621, + "tenant_member_id": 2810412433033413, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老宋", + "memberMobile": "13822154554", + "id": 2810412841192197, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 18:39:49", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810412839373574, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2810412432050373, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2810412433295557, + "tenant_member_id": 2810412433033413, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2810375766689349, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 18:02:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2810371284355525, + "account_data": 3000.0, + "after": 3250.0, + "before": 250.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 17:57:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810371281799621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 3250.0, + "principal_before": 250.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2810323626870533, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 17:09:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809505065011397, + "tenant_member_id": 2799210011215621, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2810315816438533, + "account_data": -141.93, + "after": 1607.86, + "before": 1749.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 17:01:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810315741415877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1607.86, + "principal_before": 1749.79, + "principal_data": -141.93 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2810315533076997, + "account_data": 95.09, + "after": 1749.79, + "before": 1654.7, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 17:00:50", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810314851715845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1749.79, + "principal_before": 1654.7, + "principal_data": 95.09 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2810315532929541, + "account_data": 46.84, + "after": 774.0, + "before": 727.16, + "card_type_id": 2791990152417157, + "create_time": "2025-07-28 17:00:50", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810314851715845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 774.0, + "principal_before": 727.16, + "principal_data": 46.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2810315384376069, + "account_data": -94.32, + "after": 83.13, + "before": 177.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 17:00:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810315281942981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 83.13, + "principal_before": 177.45, + "principal_data": -94.32 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2810314892921029, + "account_data": -95.09, + "after": 1654.7, + "before": 1749.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 17:00:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810314851715845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1654.7, + "principal_before": 1749.79, + "principal_data": -95.09 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2810314892773573, + "account_data": -46.84, + "after": 727.16, + "before": 774.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-28 17:00:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810314851715845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 727.16, + "principal_before": 774.0, + "principal_data": -46.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2810231518432005, + "account_data": -5.0, + "after": 49.0, + "before": 54.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 15:35:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810231491398149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 49.0, + "principal_before": 54.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2810199949576389, + "account_data": -10.0, + "after": 2385.43, + "before": 2395.43, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 15:03:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2810199930407685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2385.43, + "principal_before": 2395.43, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2809507168438469, + "account_data": -345.0, + "after": 138.69, + "before": 483.69, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 03:18:31", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809507019786757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219141068549, + "tenant_member_id": 2799207204882181, + "principal_after": 138.69, + "principal_before": 483.69, + "principal_data": -345.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2809505953778117, + "account_data": -1944.98, + "after": 1942.58, + "before": 3887.56, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 03:17:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809505866976005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1942.58, + "principal_before": 3887.56, + "principal_data": -1944.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2809504842238405, + "account_data": 3000.0, + "after": 3887.56, + "before": 887.56, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 03:16:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809504839059909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 3887.56, + "principal_before": 887.56, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809472102697029, + "account_data": 1888.0, + "after": 2485.62, + "before": 597.62, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 02:42:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 2485.62, + "principal_before": 597.62, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809471790483909, + "account_data": 10000.0, + "after": 20000.0, + "before": 10000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 02:42:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809471788321221, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 20000.0, + "principal_before": 10000.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2809468096055813, + "account_data": -52.0, + "after": 526.89, + "before": 578.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 02:38:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809468049311941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 526.89, + "principal_before": 578.89, + "principal_data": -52.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2809431331375621, + "account_data": -6.0, + "after": 578.89, + "before": 584.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 02:01:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809431311108293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 578.89, + "principal_before": 584.89, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2809429942749957, + "account_data": -14.0, + "after": 584.89, + "before": 598.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 01:59:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809429892565445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 584.89, + "principal_before": 598.89, + "principal_data": -14.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2809393346660421, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 01:22:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2809392472082949, + "tenant_member_id": 2799207232816901, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2809392431663301, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 01:21:48", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809392429549765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2809359525448453, + "account_data": -45.0, + "after": 598.89, + "before": 643.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:48:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809359436351685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 598.89, + "principal_before": 643.89, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2809350339070149, + "account_data": -22.0, + "after": 643.89, + "before": 665.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:38:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809350184995013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 643.89, + "principal_before": 665.89, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2809335671982597, + "account_data": -5.0, + "after": 157.0, + "before": 162.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:24:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809335643654597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 157.0, + "principal_before": 162.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2809332376635589, + "account_data": -570.0, + "after": 1236.45, + "before": 1806.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:20:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809332330334405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 1236.45, + "principal_before": 1806.45, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2809328900426501, + "account_data": -18.0, + "after": 1039.0, + "before": 1057.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:17:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809328783657157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1039.0, + "principal_before": 1057.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2809321448114373, + "account_data": -18.0, + "after": 3617.09, + "before": 3635.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:09:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809321333574405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3617.09, + "principal_before": 3635.09, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2809320319732165, + "account_data": -945.33, + "after": 3635.09, + "before": 4580.42, + "card_type_id": 2793249295533893, + "create_time": "2025-07-28 00:08:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809320243153413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3635.09, + "principal_before": 4580.42, + "principal_data": -945.33 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2809320319568325, + "account_data": -318.0, + "after": 0.0, + "before": 318.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-28 00:08:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809320243153413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 318.0, + "principal_data": -318.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809306250496773, + "account_data": -1076.87, + "after": 597.62, + "before": 1674.49, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 23:54:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809306178685381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 597.62, + "principal_before": 1674.49, + "principal_data": -1076.87 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "左先生", + "memberMobile": "13711411714", + "id": 2809305702517189, + "account_data": -216.0, + "after": 127.0, + "before": 343.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 23:53:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809305594104581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207283132165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216381609733, + "tenant_member_id": 2799207284131589, + "principal_after": 127.0, + "principal_before": 343.0, + "principal_data": -216.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2809305061919493, + "account_data": -339.91, + "after": 19727.42, + "before": 20067.33, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 23:52:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809305009932485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 19727.42, + "principal_before": 20067.33, + "principal_data": -339.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2809225166506437, + "account_data": -570.0, + "after": 4992.19, + "before": 5562.19, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 22:31:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809225059944901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 4992.19, + "principal_before": 5562.19, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2809207173761477, + "account_data": -96.0, + "after": 809.2, + "before": 905.2, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 22:13:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809207132883461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 809.2, + "principal_before": 905.2, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809201538533509, + "account_data": -213.51, + "after": 1674.49, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 22:07:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809201475963333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1674.49, + "principal_before": 1888.0, + "principal_data": -213.51 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809201372678597, + "account_data": 179.01, + "after": 1888.0, + "before": 1708.99, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 22:07:27", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809201050339461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1888.0, + "principal_before": 1708.99, + "principal_data": 179.01 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809201372514757, + "account_data": 34.5, + "after": 95.0, + "before": 60.5, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 22:07:27", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809201050339461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217540400901, + "tenant_member_id": 2799209806071557, + "principal_after": 95.0, + "principal_before": 60.5, + "principal_data": 34.5 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809201071474821, + "account_data": -179.01, + "after": 1708.99, + "before": 1888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 22:07:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809201050339461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1708.99, + "principal_before": 1888.0, + "principal_data": -179.01 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2809201071327365, + "account_data": -34.5, + "after": 60.5, + "before": 95.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 22:07:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809201050339461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217540400901, + "tenant_member_id": 2799209806071557, + "principal_after": 60.5, + "principal_before": 95.0, + "principal_data": -34.5 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2809190475975173, + "account_data": -544.54, + "after": 927.18, + "before": 1471.72, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 21:56:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809190352030149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 927.18, + "principal_before": 1471.72, + "principal_data": -544.54 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2809190475827717, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 21:56:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809190352030149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2809190161369285, + "account_data": -150.0, + "after": 0.0, + "before": 150.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 21:56:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809189939923141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 150.0, + "principal_data": -150.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2809188046276613, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 21:53:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2809187658696837, + "account_data": 1000.0, + "after": 1471.72, + "before": 471.72, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 21:53:30", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809187656829061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1471.72, + "principal_before": 471.72, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2809134230718917, + "account_data": -26.0, + "after": 887.56, + "before": 913.56, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 20:59:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809134185122245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 887.56, + "principal_before": 913.56, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈", + "memberMobile": "18026382150", + "id": 2809133777717701, + "account_data": -36.0, + "after": 250.0, + "before": 286.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 20:58:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809133676693701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207510443781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217033447173, + "tenant_member_id": 2799207511639813, + "principal_after": 250.0, + "principal_before": 286.0, + "principal_data": -36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2809110557985285, + "account_data": -140.29, + "after": 483.69, + "before": 623.98, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 20:35:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809110486256069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219141068549, + "tenant_member_id": 2799207204882181, + "principal_after": 483.69, + "principal_before": 623.98, + "principal_data": -140.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 2809002757916997, + "account_data": -502.14, + "after": 277.1, + "before": 779.24, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 18:45:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809002630891845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219509479173, + "tenant_member_id": 2799212596201221, + "principal_after": 277.1, + "principal_before": 779.24, + "principal_data": -502.14 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 2809002757704005, + "account_data": -230.0, + "after": 0.0, + "before": 230.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 18:45:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2809002630891845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219504350981, + "tenant_member_id": 2799212596201221, + "principal_after": 0.0, + "principal_before": 230.0, + "principal_data": -230.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2808940602525893, + "account_data": -97.04, + "after": 874.0, + "before": 971.04, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:42:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808940571936901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 874.0, + "principal_before": 971.04, + "principal_data": -97.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2808939719968901, + "account_data": -45.0, + "after": 1749.79, + "before": 1794.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:41:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808939671898309, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1749.79, + "principal_before": 1794.79, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2808938180774021, + "account_data": -100.0, + "after": 774.0, + "before": 874.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-27 17:39:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808938067839237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 774.0, + "principal_before": 874.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2808937406843205, + "account_data": -534.48, + "after": 1794.79, + "before": 2329.27, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:38:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808937240824133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 1794.79, + "principal_before": 2329.27, + "principal_data": -534.48 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2808934341199877, + "account_data": 1888.0, + "after": 1888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 17:35:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 1888.0, + "principal_before": 0.0, + "principal_data": 1888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2808926728505605, + "account_data": -570.0, + "after": 4580.42, + "before": 5150.42, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:28:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808926565992645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4580.42, + "principal_before": 5150.42, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2808923177257093, + "account_data": 10000.0, + "after": 10000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:24:27", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808923174783109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 10000.0, + "principal_before": 0.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2808921679399173, + "account_data": -208.96, + "after": 971.04, + "before": 1180.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 17:22:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808921459230917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 971.04, + "principal_before": 1180.0, + "principal_data": -208.96 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2808889160665285, + "account_data": -5.0, + "after": 54.0, + "before": 59.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 16:49:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808889133713669, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 54.0, + "principal_before": 59.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2808837887772997, + "account_data": -190.0, + "after": 62.62, + "before": 252.62, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 15:57:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808837867505925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 62.62, + "principal_before": 252.62, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2808833143834757, + "account_data": -5.0, + "after": 59.0, + "before": 64.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 15:52:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808833123371333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 59.0, + "principal_before": 64.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2808794327943301, + "account_data": -10.0, + "after": 1934.97, + "before": 1944.97, + "card_type_id": 2794699703437125, + "create_time": "2025-07-27 15:13:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808794239109253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1934.97, + "principal_before": 1944.97, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2808784936487109, + "account_data": -17.0, + "after": 1944.97, + "before": 1961.97, + "card_type_id": 2794699703437125, + "create_time": "2025-07-27 15:03:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2808784834660485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1944.97, + "principal_before": 1961.97, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2808770101020741, + "account_data": 650.0, + "after": 650.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 14:48:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 650.0, + "principal_before": 0.0, + "principal_data": 650.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2807957299729221, + "account_data": -800.19, + "after": 0.0, + "before": 800.19, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 01:01:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807957092668165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 800.19, + "principal_data": -800.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2807915171205893, + "account_data": -570.0, + "after": 1806.45, + "before": 2376.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:19:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807915121939013, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 1806.45, + "principal_before": 2376.45, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2807913498545221, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 00:17:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2807913315128069, + "account_data": -962.28, + "after": 37.72, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:17:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807913246691910, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 37.72, + "principal_before": 1000.0, + "principal_data": -962.28 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2807912805339717, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:16:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807912803045957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2807910809736005, + "account_data": -1001.0, + "after": 0.0, + "before": 1001.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:14:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807910532551237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 0.0, + "principal_before": 1001.0, + "principal_data": -1001.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2807910809539397, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 00:14:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807910532551237, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2807910231477253, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-27 00:14:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807909777675141, + "tenant_member_id": 2799209976481541, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2807909674193797, + "account_data": 1000.0, + "after": 1001.0, + "before": 1.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:13:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807909672309637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 1001.0, + "principal_before": 1.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2807898641748741, + "account_data": -636.45, + "after": 5562.19, + "before": 6198.64, + "card_type_id": 2793249295533893, + "create_time": "2025-07-27 00:02:14", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807898502468357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 5562.19, + "principal_before": 6198.64, + "principal_data": -636.45 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2807892219810566, + "account_data": -570.0, + "after": 318.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 23:55:42", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807892103025541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 318.0, + "principal_before": 888.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2807891949046789, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 23:55:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2807891558830661, + "account_data": 5000.0, + "after": 5150.42, + "before": 150.42, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 23:55:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807891556897349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 5150.42, + "principal_before": 150.42, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2807872214159941, + "account_data": -1868.62, + "after": 800.19, + "before": 2668.81, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 23:35:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807872143446853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 800.19, + "principal_before": 2668.81, + "principal_data": -1868.62 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2807845352641285, + "account_data": -13.0, + "after": 218.0, + "before": 231.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 23:08:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807845216588549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 218.0, + "principal_before": 231.0, + "principal_data": -13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈小姐", + "memberMobile": "13802740778", + "id": 2807842499039813, + "account_data": -55.54, + "after": 544.46, + "before": 600.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 23:05:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807842468942405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212878235397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220043892485, + "tenant_member_id": 2799212879873797, + "principal_after": 544.46, + "principal_before": 600.0, + "principal_data": -55.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2807831187575365, + "account_data": -444.21, + "after": 1390.79, + "before": 1835.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:53:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807831149597254, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 1390.79, + "principal_before": 1835.0, + "principal_data": -444.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2807822902317893, + "account_data": -120.0, + "after": 710.24, + "before": 830.24, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:45:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807822847464261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 710.24, + "principal_before": 830.24, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2807816040059461, + "account_data": -850.0, + "after": 150.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:38:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807815976948613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 150.0, + "principal_before": 1000.0, + "principal_data": -850.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2807816039912005, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 22:38:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807815976948613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2807815709985861, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 22:37:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2807815243780869, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:37:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807815241847557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2807799186805317, + "account_data": -8.0, + "after": 2395.43, + "before": 2403.43, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:21:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807799160902405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2395.43, + "principal_before": 2403.43, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2807781593731973, + "account_data": -10.0, + "after": 665.89, + "before": 675.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 22:03:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807781317317509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 665.89, + "principal_before": 675.89, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2807774374646661, + "account_data": -92.0, + "after": 150.42, + "before": 242.42, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 21:55:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807774290973445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 150.42, + "principal_before": 242.42, + "principal_data": -92.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2807774374515589, + "account_data": -8.0, + "after": 0.0, + "before": 8.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 21:55:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807774290973445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 8.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2807763377836933, + "account_data": -57.38, + "after": 252.62, + "before": 310.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 21:44:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807763303224197, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 252.62, + "principal_before": 310.0, + "principal_data": -57.38 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2807762338042629, + "account_data": -10.0, + "after": 471.72, + "before": 481.72, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 21:43:35", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807762229089093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 471.72, + "principal_before": 481.72, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "符先生", + "memberMobile": "13622281724", + "id": 2807700945523589, + "account_data": -276.55, + "after": 49.45, + "before": 326.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 20:41:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807700791874437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212869863173, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220033865477, + "tenant_member_id": 2799212870829829, + "principal_after": 49.45, + "principal_before": 326.0, + "principal_data": -276.55 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2807694756680517, + "account_data": -12.0, + "after": 675.89, + "before": 687.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 20:34:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807694624068357, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 675.89, + "principal_before": 687.89, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2807663126139653, + "account_data": -10.0, + "after": 687.89, + "before": 697.89, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 20:02:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807663072056069, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 687.89, + "principal_before": 697.89, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2807649119654469, + "account_data": -10.0, + "after": 2376.45, + "before": 2386.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 19:48:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807649067586373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2376.45, + "principal_before": 2386.45, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2807627083191173, + "account_data": -190.0, + "after": 310.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 19:26:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807626997420805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 310.0, + "principal_before": 500.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "温文彬(该会员已注销)", + "memberMobile": "17827954175(1)", + "id": 2807621852220357, + "account_data": -131.0, + "after": 0.0, + "before": 131.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 19:20:40", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209968830213, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218068260613, + "tenant_member_id": 2799209969829637, + "principal_after": 0.0, + "principal_before": 131.0, + "principal_data": -131.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2807597147329093, + "account_data": -55.0, + "after": 874.0, + "before": 929.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:55:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807597083825029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 874.0, + "principal_before": 929.0, + "principal_data": -55.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "13533371177(1)", + "id": 2807595958586309, + "account_data": -338.0, + "after": 0.0, + "before": 338.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:54:20", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212367513349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218905040645, + "tenant_member_id": 2799212368545541, + "principal_after": 0.0, + "principal_before": 338.0, + "principal_data": -338.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "13533371177(1)", + "id": 2807595958471621, + "account_data": -30.0, + "after": 0.0, + "before": 30.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:54:20", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212367513349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218900256517, + "tenant_member_id": 2799212368545541, + "principal_after": 0.0, + "principal_before": 30.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2807595742860101, + "account_data": -174.7, + "after": 2329.27, + "before": 2503.97, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:54:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807595676111685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 2329.27, + "principal_before": 2503.97, + "principal_data": -174.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林富华(该会员已注销)", + "memberMobile": "13602236240(1)", + "id": 2807595398204357, + "account_data": -928.0, + "after": 0.0, + "before": 928.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:53:46", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212363990789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218895505157, + "tenant_member_id": 2799212365022981, + "principal_after": 0.0, + "principal_before": 928.0, + "principal_data": -928.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2807595001908293, + "account_data": 2000.0, + "after": 2000.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 18:53:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806855376242373, + "tenant_member_id": 2799207090996997, + "principal_after": 2000.0, + "principal_before": 0.0, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "海哥(该会员已注销)", + "memberMobile": "13913306605(1)", + "id": 2807590945868741, + "account_data": -367.1, + "after": 0.0, + "before": 367.1, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:49:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212382291717, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219074057989, + "tenant_member_id": 2799212383258373, + "principal_after": 0.0, + "principal_before": 367.1, + "principal_data": -367.1 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "海哥(该会员已注销)", + "memberMobile": "13913306605(1)", + "id": 2807590945754053, + "account_data": -182.0, + "after": 0.0, + "before": 182.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:49:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212382291717, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218937022213, + "tenant_member_id": 2799212383258373, + "principal_after": 0.0, + "principal_before": 182.0, + "principal_data": -182.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎小姐(该会员已注销)", + "memberMobile": "15914518556(1)", + "id": 2807590721915845, + "account_data": -534.0, + "after": 0.0, + "before": 534.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:49:00", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212622677765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219557271301, + "tenant_member_id": 2799212623660805, + "principal_after": 0.0, + "principal_before": 534.0, + "principal_data": -534.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "15521196743(1)", + "id": 2807590249696197, + "account_data": -205.0, + "after": 0.0, + "before": 205.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:48:32", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212634556165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219575375621, + "tenant_member_id": 2799212635555589, + "principal_after": 0.0, + "principal_before": 205.0, + "principal_data": -205.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "佳佳(该会员已注销)", + "memberMobile": "19902270191(1)", + "id": 2807589953080261, + "account_data": -260.0, + "after": 0.0, + "before": 260.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:48:13", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212644665093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219606472453, + "tenant_member_id": 2799212646336261, + "principal_after": 0.0, + "principal_before": 260.0, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "庄先生(该会员已注销)", + "memberMobile": "13560069201(1)", + "id": 2807589006019525, + "account_data": -467.47, + "after": 0.0, + "before": 467.47, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:47:16", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212669421317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219655591685, + "tenant_member_id": 2799212670846725, + "principal_after": 0.0, + "principal_before": 467.47, + "principal_data": -467.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生(该会员已注销)", + "memberMobile": "18664649918(1)", + "id": 2807588614409157, + "account_data": -554.6, + "after": 0.0, + "before": 554.6, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:46:52", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212684756741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219683297029, + "tenant_member_id": 2799212685772549, + "principal_after": 0.0, + "principal_before": 554.6, + "principal_data": -554.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生(该会员已注销)", + "memberMobile": "18688886161(1)", + "id": 2807588165307333, + "account_data": -312.0, + "after": 0.0, + "before": 312.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:46:24", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212688066309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219693061893, + "tenant_member_id": 2799212689065733, + "principal_after": 0.0, + "principal_before": 312.0, + "principal_data": -312.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐柯(该会员已注销)", + "memberMobile": "13922778722(1)", + "id": 2807587829664709, + "account_data": -402.0, + "after": 0.0, + "before": 402.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:46:04", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212447172357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219727271685, + "tenant_member_id": 2799212448220933, + "principal_after": 0.0, + "principal_before": 402.0, + "principal_data": -402.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐柯(该会员已注销)", + "memberMobile": "13922778722(1)", + "id": 2807587829550021, + "account_data": -160.0, + "after": 0.0, + "before": 160.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:46:04", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212447172357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219096700677, + "tenant_member_id": 2799212448220933, + "principal_after": 0.0, + "principal_before": 160.0, + "principal_data": -160.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生(该会员已注销)", + "memberMobile": "13922262521(1)", + "id": 2807587030043589, + "account_data": -300.0, + "after": 0.0, + "before": 300.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:45:15", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212739069701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219781764869, + "tenant_member_id": 2799212740642565, + "principal_after": 0.0, + "principal_before": 300.0, + "principal_data": -300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "JOJO(该会员已注销)", + "memberMobile": "13533509812(1)", + "id": 2807586552466373, + "account_data": -300.0, + "after": 0.0, + "before": 300.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:44:46", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212752373509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219801573125, + "tenant_member_id": 2799212753405701, + "principal_after": 0.0, + "principal_before": 300.0, + "principal_data": -300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "13312811181(1)", + "id": 2807583752293317, + "account_data": -674.0, + "after": 0.0, + "before": 674.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:41:55", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212789827333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219874760453, + "tenant_member_id": 2799212790843141, + "principal_after": 0.0, + "principal_before": 674.0, + "principal_data": -674.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王文熙(该会员已注销)", + "memberMobile": "15889955833(1)", + "id": 2807583401364421, + "account_data": -300.0, + "after": 0.0, + "before": 300.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:41:34", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212797134597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219884263173, + "tenant_member_id": 2799212798150405, + "principal_after": 0.0, + "principal_before": 300.0, + "principal_data": -300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18588891356(1)", + "id": 2807583068621765, + "account_data": -260.0, + "after": 0.0, + "before": 260.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:41:13", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212820694789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219943294725, + "tenant_member_id": 2799212821808901, + "principal_after": 0.0, + "principal_before": 260.0, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "13824473185(1)", + "id": 2807581557377989, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:39:41", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210131179269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219925878533, + "tenant_member_id": 2799210132571909, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "13824473185(1)", + "id": 2807581557246917, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:39:41", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210131179269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218435835653, + "tenant_member_id": 2799210132571909, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李瑾(该会员已注销)", + "memberMobile": "13535098051(1)", + "id": 2807581233335237, + "account_data": -498.8, + "after": 0.0, + "before": 498.8, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:39:21", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212831082245, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219964462853, + "tenant_member_id": 2799212832130821, + "principal_after": 0.0, + "principal_before": 498.8, + "principal_data": -498.8 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "15018428186(1)", + "id": 2807580479507397, + "account_data": -169.0, + "after": 0.0, + "before": 169.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:38:35", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212901385989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220083132165, + "tenant_member_id": 2799212902975237, + "principal_after": 0.0, + "principal_before": 169.0, + "principal_data": -169.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13533355668(1)", + "id": 2807580128529349, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:38:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212841174789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219994396421, + "tenant_member_id": 2799212842157829, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张林(该会员已注销)", + "memberMobile": "15920272681(1)", + "id": 2807579419151301, + "account_data": -109.0, + "after": 0.0, + "before": 109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:37:31", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212827379461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219953927941, + "tenant_member_id": 2799212828444421, + "principal_after": 0.0, + "principal_before": 109.0, + "principal_data": -109.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莱先生(该会员已注销)", + "memberMobile": "13610193517(1)", + "id": 2807578845842373, + "account_data": -126.0, + "after": 0.0, + "before": 126.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:36:56", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212786484997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219869697797, + "tenant_member_id": 2799212787468037, + "principal_after": 0.0, + "principal_before": 126.0, + "principal_data": -126.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生(该会员已注销)", + "memberMobile": "13826050919(1)", + "id": 2807578021497797, + "account_data": -106.1, + "after": 0.0, + "before": 106.1, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:36:05", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212779652869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219860293381, + "tenant_member_id": 2799212780685061, + "principal_after": 0.0, + "principal_before": 106.1, + "principal_data": -106.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈女士(该会员已注销)", + "memberMobile": "13631303308(1)", + "id": 2807577281989573, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:35:20", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212783027973, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219864880901, + "tenant_member_id": 2799212784076549, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗小姐(该会员已注销)", + "memberMobile": "13710201000(1)", + "id": 2807576809671621, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:34:51", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212772689669, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219841238789, + "tenant_member_id": 2799212773852933, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13392104715(1)", + "id": 2807576403102661, + "account_data": -159.0, + "after": 0.0, + "before": 159.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:34:26", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212769314565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219833423621, + "tenant_member_id": 2799212770281221, + "principal_after": 0.0, + "principal_before": 159.0, + "principal_data": -159.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生(该会员已注销)", + "memberMobile": "18038230815(1)", + "id": 2807576009247685, + "account_data": -147.0, + "after": 0.0, + "before": 147.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:34:02", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212755666693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219807831813, + "tenant_member_id": 2799212756633349, + "principal_after": 0.0, + "principal_before": 147.0, + "principal_data": -147.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生(该会员已注销)", + "memberMobile": "13728050010(1)", + "id": 2807575589604293, + "account_data": -93.0, + "after": 0.0, + "before": 93.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:33:37", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209782593285, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219791185669, + "tenant_member_id": 2799209783559941, + "principal_after": 0.0, + "principal_before": 93.0, + "principal_data": -93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生(该会员已注销)", + "memberMobile": "13160863931(1)", + "id": 2807575327263685, + "account_data": -213.4, + "after": 0.0, + "before": 213.4, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:33:21", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212731188997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219771377413, + "tenant_member_id": 2799212732172037, + "principal_after": 0.0, + "principal_before": 213.4, + "principal_data": -213.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蒋方源(该会员已注销)", + "memberMobile": "15814569090(1)", + "id": 2807574969617349, + "account_data": -91.0, + "after": 0.0, + "before": 91.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:32:59", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212714231557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219736758021, + "tenant_member_id": 2799212715755269, + "principal_after": 0.0, + "principal_before": 91.0, + "principal_data": -91.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张士超(该会员已注销)", + "memberMobile": "13068888777(1)", + "id": 2807574639332293, + "account_data": -1000.0, + "after": 0.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:32:39", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212699469573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219711362821, + "tenant_member_id": 2799212700485381, + "principal_after": 0.0, + "principal_before": 1000.0, + "principal_data": -1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程璐(该会员已注销)", + "memberMobile": "18666020935(1)", + "id": 2807574372060101, + "account_data": -122.0, + "after": 0.0, + "before": 122.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:32:23", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212649645829, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219619137285, + "tenant_member_id": 2799212650678021, + "principal_after": 0.0, + "principal_before": 122.0, + "principal_data": -122.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚倩(该会员已注销)", + "memberMobile": "19186990918(1)", + "id": 2807571104975813, + "account_data": -67.0, + "after": 0.0, + "before": 67.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:29:03", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212619384581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219552487173, + "tenant_member_id": 2799212620384005, + "principal_after": 0.0, + "principal_before": 67.0, + "principal_data": -67.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚倩(该会员已注销)", + "memberMobile": "19186990918(1)", + "id": 2807571104844741, + "account_data": -272.0, + "after": 0.0, + "before": 272.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:29:03", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212619384581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219546834693, + "tenant_member_id": 2799212620384005, + "principal_after": 0.0, + "principal_before": 272.0, + "principal_data": -272.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "崔女士(该会员已注销)", + "memberMobile": "18988888009(1)", + "id": 2807570680384453, + "account_data": -80.0, + "after": 0.0, + "before": 80.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:28:37", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212625954565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219563808517, + "tenant_member_id": 2799212626953989, + "principal_after": 0.0, + "principal_before": 80.0, + "principal_data": -80.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "秦(该会员已注销)", + "memberMobile": "13924118066(1)", + "id": 2807570166336453, + "account_data": -1666.0, + "after": 0.0, + "before": 1666.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:28:06", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210166142725, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218625283845, + "tenant_member_id": 2799210167289605, + "principal_after": 0.0, + "principal_before": 1666.0, + "principal_data": -1666.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "秦(该会员已注销)", + "memberMobile": "13924118066(1)", + "id": 2807570166238149, + "account_data": -482.0, + "after": 0.0, + "before": 482.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:28:06", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210166142725, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218620483333, + "tenant_member_id": 2799210167289605, + "principal_after": 0.0, + "principal_before": 482.0, + "principal_data": -482.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生(该会员已注销)", + "memberMobile": "13724039514(1)", + "id": 2807569406593989, + "account_data": -115.0, + "after": 0.0, + "before": 115.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:27:19", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210186573573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218687035141, + "tenant_member_id": 2799210187654917, + "principal_after": 0.0, + "principal_before": 115.0, + "principal_data": -115.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生(该会员已注销)", + "memberMobile": "13724039514(1)", + "id": 2807569406479301, + "account_data": -1.0, + "after": 0.0, + "before": 1.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:27:19", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210186573573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218682201861, + "tenant_member_id": 2799210187654917, + "principal_after": 0.0, + "principal_before": 1.0, + "principal_data": -1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13926117295(1)", + "id": 2807568877833157, + "account_data": -166.0, + "after": 0.0, + "before": 166.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:26:47", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210169681669, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218630313733, + "tenant_member_id": 2799210171156229, + "principal_after": 0.0, + "principal_before": 166.0, + "principal_data": -166.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生(该会员已注销)", + "memberMobile": "15018499467(1)", + "id": 2807568395176901, + "account_data": -117.0, + "after": 0.0, + "before": 117.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:26:18", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210105784069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218390468357, + "tenant_member_id": 2799210106767109, + "principal_after": 0.0, + "principal_before": 117.0, + "principal_data": -117.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生(该会员已注销)", + "memberMobile": "15018499467(1)", + "id": 2807568395078597, + "account_data": -69.0, + "after": 0.0, + "before": 69.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:26:18", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210105784069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218385569541, + "tenant_member_id": 2799210106767109, + "principal_after": 0.0, + "principal_before": 69.0, + "principal_data": -69.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2807567536867013, + "account_data": -8.0, + "after": 2668.81, + "before": 2676.81, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:25:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807567508080325, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2668.81, + "principal_before": 2676.81, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐先生(该会员已注销)", + "memberMobile": "13922330793(1)", + "id": 2807566668925893, + "account_data": -74.99, + "after": 0.0, + "before": 74.99, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:24:32", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209906374405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218050500357, + "tenant_member_id": 2799209907373829, + "principal_after": 0.0, + "principal_before": 74.99, + "principal_data": -74.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郝小姐(该会员已注销)", + "memberMobile": "15989292955(1)", + "id": 2807565311871941, + "account_data": -69.0, + "after": 0.0, + "before": 69.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:23:10", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209927952133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217937516293, + "tenant_member_id": 2799209928935173, + "principal_after": 0.0, + "principal_before": 69.0, + "principal_data": -69.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郝小姐(该会员已注销)", + "memberMobile": "15989292955(1)", + "id": 2807565311773637, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:23:10", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209927952133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217930979077, + "tenant_member_id": 2799209928935173, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "18321567023(1)", + "id": 2807564784028613, + "account_data": -111.0, + "after": 0.0, + "before": 111.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:22:37", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209917155077, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217908713221, + "tenant_member_id": 2799209918301957, + "principal_after": 0.0, + "principal_before": 111.0, + "principal_data": -111.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吕信宇(该会员已注销)", + "memberMobile": "18928836088(1)", + "id": 2807564382636997, + "account_data": -133.0, + "after": 0.0, + "before": 133.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:22:13", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209869510405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217814914821, + "tenant_member_id": 2799209870984965, + "principal_after": 0.0, + "principal_before": 133.0, + "principal_data": -133.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吕信宇(该会员已注销)", + "memberMobile": "18928836088(1)", + "id": 2807564382522309, + "account_data": -78.0, + "after": 0.0, + "before": 78.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:22:13", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209869510405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217809704709, + "tenant_member_id": 2799209870984965, + "principal_after": 0.0, + "principal_before": 78.0, + "principal_data": -78.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13622246825(1)", + "id": 2807564118805445, + "account_data": -160.0, + "after": 0.0, + "before": 160.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:21:57", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209833744133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217713121029, + "tenant_member_id": 2799209834727173, + "principal_after": 0.0, + "principal_before": 160.0, + "principal_data": -160.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生(该会员已注销)", + "memberMobile": "13580354091(1)", + "id": 2807563369155525, + "account_data": -90.98, + "after": 0.0, + "before": 90.98, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:21:11", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207587202821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217213589253, + "tenant_member_id": 2799207588464389, + "principal_after": 0.0, + "principal_before": 90.98, + "principal_data": -90.98 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生(该会员已注销)", + "memberMobile": "13580354091(1)", + "id": 2807563369040837, + "account_data": -9.0, + "after": 0.0, + "before": 9.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:21:11", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207587202821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217208887045, + "tenant_member_id": 2799207588464389, + "principal_after": 0.0, + "principal_before": 9.0, + "principal_data": -9.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2807563288086405, + "account_data": -6.0, + "after": 2676.81, + "before": 2682.81, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:21:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807563002693509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2676.81, + "principal_before": 2682.81, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2807560124107717, + "account_data": -1098.0, + "after": 0.0, + "before": 1098.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:17:53", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 0.0, + "principal_before": 1098.0, + "principal_data": -1098.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2807560123993029, + "account_data": -907.0, + "after": 0.0, + "before": 907.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 18:17:53", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215923578629, + "tenant_member_id": 2799207097812741, + "principal_after": 0.0, + "principal_before": 907.0, + "principal_data": -907.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "13265933438(1)", + "id": 2807556479044549, + "account_data": -441.0, + "after": 0.0, + "before": 441.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:14:10", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207093290757, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215918532357, + "tenant_member_id": 2799207094322949, + "principal_after": 0.0, + "principal_before": 441.0, + "principal_data": -441.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "龙先生(该会员已注销)", + "memberMobile": "13822281419(1)", + "id": 2807556222798789, + "account_data": -204.0, + "after": 0.0, + "before": 204.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:13:55", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207103350533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215939651333, + "tenant_member_id": 2799207104726789, + "principal_after": 0.0, + "principal_before": 204.0, + "principal_data": -204.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2807555881470917, + "account_data": -2776.0, + "after": 0.0, + "before": 2776.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:13:34", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216044099333, + "tenant_member_id": 2799207109379845, + "principal_after": 0.0, + "principal_before": 2776.0, + "principal_data": -2776.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2807555881372613, + "account_data": -716.0, + "after": 0.0, + "before": 716.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:13:34", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215950759685, + "tenant_member_id": 2799207109379845, + "principal_after": 0.0, + "principal_before": 716.0, + "principal_data": -716.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2807555881274309, + "account_data": -19.0, + "after": 0.0, + "before": 19.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 18:13:34", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215946073861, + "tenant_member_id": 2799207109379845, + "principal_after": 0.0, + "principal_before": 19.0, + "principal_data": -19.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李生(该会员已注销)", + "memberMobile": "13352813215(1)", + "id": 2807555529100229, + "account_data": -764.0, + "after": 0.0, + "before": 764.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:13:12", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207214532357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216187803397, + "tenant_member_id": 2799207215482629, + "principal_after": 0.0, + "principal_before": 764.0, + "principal_data": -764.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李生(该会员已注销)", + "memberMobile": "13352813215(1)", + "id": 2807555529001925, + "account_data": -800.0, + "after": 0.0, + "before": 800.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:13:12", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207214532357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216182904581, + "tenant_member_id": 2799207215482629, + "principal_after": 0.0, + "principal_before": 800.0, + "principal_data": -800.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波(该会员已注销)", + "memberMobile": "13718998990(1)", + "id": 2807554849967045, + "account_data": -398.0, + "after": 0.0, + "before": 398.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:12:31", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216245212933, + "tenant_member_id": 2799207236192005, + "principal_after": 0.0, + "principal_before": 398.0, + "principal_data": -398.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波(该会员已注销)", + "memberMobile": "13718998990(1)", + "id": 2807554849852357, + "account_data": -530.0, + "after": 0.0, + "before": 530.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:12:31", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216239396613, + "tenant_member_id": 2799207236192005, + "principal_after": 0.0, + "principal_before": 530.0, + "principal_data": -530.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2807554166492101, + "account_data": -1854.0, + "after": 0.0, + "before": 1854.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:11:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216313124613, + "tenant_member_id": 2799207259735813, + "principal_after": 0.0, + "principal_before": 1854.0, + "principal_data": -1854.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2807554166377413, + "account_data": -1983.0, + "after": 0.0, + "before": 1983.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:11:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216307930885, + "tenant_member_id": 2799207259735813, + "principal_after": 0.0, + "principal_before": 1983.0, + "principal_data": -1983.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2807554166262725, + "account_data": -451.0, + "after": 0.0, + "before": 451.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 18:11:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216302851845, + "tenant_member_id": 2799207259735813, + "principal_after": 0.0, + "principal_before": 451.0, + "principal_data": -451.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月(该会员已注销)", + "memberMobile": "19802010700(1)", + "id": 2807553771785157, + "account_data": -272.0, + "after": 0.0, + "before": 272.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:11:25", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216325347077, + "tenant_member_id": 2799207263405829, + "principal_after": 0.0, + "principal_before": 272.0, + "principal_data": -272.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月(该会员已注销)", + "memberMobile": "19802010700(1)", + "id": 2807553771654085, + "account_data": -478.0, + "after": 0.0, + "before": 478.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:11:25", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216318596869, + "tenant_member_id": 2799207263405829, + "principal_after": 0.0, + "principal_before": 478.0, + "principal_data": -478.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐(该会员已注销)", + "memberMobile": "13710386038(1)", + "id": 2807553550683077, + "account_data": -719.0, + "after": 0.0, + "before": 719.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:11:12", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216372238085, + "tenant_member_id": 2799207280871173, + "principal_after": 0.0, + "principal_before": 719.0, + "principal_data": -719.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐(该会员已注销)", + "memberMobile": "13710386038(1)", + "id": 2807553550584773, + "account_data": -813.0, + "after": 0.0, + "before": 813.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:11:12", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216367240965, + "tenant_member_id": 2799207280871173, + "principal_after": 0.0, + "principal_before": 813.0, + "principal_data": -813.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2807553060801477, + "account_data": -833.0, + "after": 0.0, + "before": 833.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:10:42", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216633317125, + "tenant_member_id": 2799207382173445, + "principal_after": 0.0, + "principal_before": 833.0, + "principal_data": -833.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2807553060703173, + "account_data": -4329.0, + "after": 0.0, + "before": 4329.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:10:42", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216626763525, + "tenant_member_id": 2799207382173445, + "principal_after": 0.0, + "principal_before": 4329.0, + "principal_data": -4329.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2807553060588485, + "account_data": -322.0, + "after": 0.0, + "before": 322.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-26 18:10:42", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216620340997, + "tenant_member_id": 2799207382173445, + "principal_after": 0.0, + "principal_before": 322.0, + "principal_data": -322.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生(该会员已注销)", + "memberMobile": "18927551908(1)", + "id": 2807552468274117, + "account_data": -573.0, + "after": 0.0, + "before": 573.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:10:06", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216861103877, + "tenant_member_id": 2799207431980805, + "principal_after": 0.0, + "principal_before": 573.0, + "principal_data": -573.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生(该会员已注销)", + "memberMobile": "18927551908(1)", + "id": 2807552468175813, + "account_data": -910.0, + "after": 0.0, + "before": 910.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:10:06", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216856123141, + "tenant_member_id": 2799207431980805, + "principal_after": 0.0, + "principal_before": 910.0, + "principal_data": -910.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "都先生(该会员已注销)", + "memberMobile": "13811127796(1)", + "id": 2807551338630085, + "account_data": -314.0, + "after": 0.0, + "before": 314.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:08:57", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216970942213, + "tenant_member_id": 2799207475218181, + "principal_after": 0.0, + "principal_before": 314.0, + "principal_data": -314.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "都先生(该会员已注销)", + "memberMobile": "13811127796(1)", + "id": 2807551338531781, + "account_data": -119.0, + "after": 0.0, + "before": 119.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:08:57", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216964503301, + "tenant_member_id": 2799207475218181, + "principal_after": 0.0, + "principal_before": 119.0, + "principal_data": -119.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冼先生(该会员已注销)", + "memberMobile": "18688226877(1)", + "id": 2807551088675781, + "account_data": -361.0, + "after": 0.0, + "before": 361.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:08:41", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207524927237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217069754117, + "tenant_member_id": 2799207525926661, + "principal_after": 0.0, + "principal_before": 361.0, + "principal_data": -361.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冼先生(该会员已注销)", + "memberMobile": "18688226877(1)", + "id": 2807551088561093, + "account_data": -904.0, + "after": 0.0, + "before": 904.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:08:41", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207524927237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217065035525, + "tenant_member_id": 2799207525926661, + "principal_after": 0.0, + "principal_before": 904.0, + "principal_data": -904.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "向生(该会员已注销)", + "memberMobile": "13751700258(1)", + "id": 2807550595664837, + "account_data": -534.0, + "after": 0.0, + "before": 534.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:08:11", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207528236805, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217081796357, + "tenant_member_id": 2799207529236229, + "principal_after": 0.0, + "principal_before": 534.0, + "principal_data": -534.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13418054500(1)", + "id": 2807550319692741, + "account_data": -806.0, + "after": 0.0, + "before": 806.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:07:54", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207566558981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217160013573, + "tenant_member_id": 2799207567984389, + "principal_after": 0.0, + "principal_before": 806.0, + "principal_data": -806.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13418054500(1)", + "id": 2807550319594437, + "account_data": -640.0, + "after": 0.0, + "before": 640.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:07:54", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799207566558981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217155245829, + "tenant_member_id": 2799207567984389, + "principal_after": 0.0, + "principal_before": 640.0, + "principal_data": -640.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "楚楚(该会员已注销)", + "memberMobile": "13278656529(1)", + "id": 2807549038070725, + "account_data": -221.0, + "after": 0.0, + "before": 221.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:06:36", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209932359429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217947215621, + "tenant_member_id": 2799209933833989, + "principal_after": 0.0, + "principal_before": 221.0, + "principal_data": -221.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "楚楚(该会员已注销)", + "memberMobile": "13278656529(1)", + "id": 2807549037956037, + "account_data": -22.0, + "after": 0.0, + "before": 22.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:06:36", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799209932359429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217942497029, + "tenant_member_id": 2799209933833989, + "principal_after": 0.0, + "principal_before": 22.0, + "principal_data": -22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18826220332(1)", + "id": 2807545308695493, + "account_data": -4133.99, + "after": 0.0, + "before": 4133.99, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:02:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218152933125, + "tenant_member_id": 2799210018309893, + "principal_after": 0.0, + "principal_before": 4133.99, + "principal_data": -4133.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18826220332(1)", + "id": 2807545308597189, + "account_data": -682.0, + "after": 0.0, + "before": 682.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 18:02:49", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218147968773, + "tenant_member_id": 2799210018309893, + "principal_after": 0.0, + "principal_before": 682.0, + "principal_data": -682.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2807544345626501, + "account_data": -5.0, + "after": 0.0, + "before": 5.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:01:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807544328259205, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 0.0, + "principal_before": 5.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "朱劲伟(该会员已注销)", + "memberMobile": "13710314829(1)", + "id": 2807543752166341, + "account_data": -3000.0, + "after": 0.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 18:01:14", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "注销会员", + "site_id": 2790685415443269, + "system_member_id": 2799212352620293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218879530757, + "tenant_member_id": 2799212354193157, + "principal_after": 0.0, + "principal_before": 3000.0, + "principal_data": -3000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2807540282706949, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 17:57:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806708229588805, + "tenant_member_id": 2799207290996485, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2807529063122565, + "account_data": -246.11, + "after": 697.89, + "before": 944.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 17:46:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807528976074437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 697.89, + "principal_before": 944.0, + "principal_data": -246.11 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2807488885622405, + "account_data": -95.76, + "after": 830.24, + "before": 926.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 17:05:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807488811566725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 830.24, + "principal_before": 926.0, + "principal_data": -95.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2807408431253317, + "account_data": -5.0, + "after": 64.0, + "before": 69.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 15:43:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807408363603589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 64.0, + "principal_before": 69.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2807387640628933, + "account_data": -8.0, + "after": 944.0, + "before": 952.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 15:22:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2807387519485573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 944.0, + "principal_before": 952.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2806954379708293, + "account_data": -380.0, + "after": 613.14, + "before": 993.14, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 08:01:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806954342483589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 613.14, + "principal_before": 993.14, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2806860665145221, + "account_data": -2184.86, + "after": 993.14, + "before": 3178.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 06:26:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806860573099653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 993.14, + "principal_before": 3178.0, + "principal_data": -2184.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2806859911743109, + "account_data": 3000.0, + "after": 3178.0, + "before": 178.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 06:25:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806859908384389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 3178.0, + "principal_before": 178.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2806856181565061, + "account_data": -2485.06, + "after": 8032.94, + "before": 10518.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 06:21:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806856095139525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 8032.94, + "principal_before": 10518.0, + "principal_data": -2485.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2806855235716997, + "account_data": 10000.0, + "after": 10518.0, + "before": 518.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 06:20:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806855233947525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 10518.0, + "principal_before": 518.0, + "principal_data": 10000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2806709448459973, + "account_data": -499.86, + "after": 2632.14, + "before": 3132.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 03:52:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806709248132741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 2632.14, + "principal_before": 3132.0, + "principal_data": -499.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2806708033357701, + "account_data": 3000.0, + "after": 3132.0, + "before": 132.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 03:51:05", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806708031637381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 3132.0, + "principal_before": 132.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2806665780446917, + "account_data": -24.0, + "after": 905.2, + "before": 929.2, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 03:08:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806665573090949, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 905.2, + "principal_before": 929.2, + "principal_data": -24.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2806557231515525, + "account_data": -2018.54, + "after": 242.42, + "before": 2260.96, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 01:17:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806557158491845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 242.42, + "principal_before": 2260.96, + "principal_data": -2018.54 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2806546388190917, + "account_data": -260.01, + "after": 734.98, + "before": 994.99, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 01:06:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806546315986757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 734.98, + "principal_before": 994.99, + "principal_data": -260.01 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806536069187205, + "account_data": -323.55, + "after": 2386.45, + "before": 2710.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:56:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806535825262469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2386.45, + "principal_before": 2710.0, + "principal_data": -323.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806536069039749, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 00:56:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806535825262469, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806535521945221, + "account_data": 503.55, + "after": 2710.0, + "before": 2206.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:55:36", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806523084720005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2710.0, + "principal_before": 2206.45, + "principal_data": 503.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806535521814149, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 00:55:36", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806523084720005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806524488484549, + "account_data": -5.0, + "after": 2206.45, + "before": 2211.45, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:44:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806524443788997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2206.45, + "principal_before": 2211.45, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806523159774917, + "account_data": -503.55, + "after": 2211.45, + "before": 2715.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:43:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806523084720005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2211.45, + "principal_before": 2715.0, + "principal_data": -503.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806523159643845, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-26 00:43:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806523084720005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2806493074048645, + "account_data": -1280.26, + "after": 2682.81, + "before": 3963.07, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:12:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806492952282757, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2682.81, + "principal_before": 3963.07, + "principal_data": -1280.26 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 2806483047647045, + "account_data": -66.0, + "after": 691.61, + "before": 757.61, + "card_type_id": 2791990152417157, + "create_time": "2025-07-26 00:02:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806482949408389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 691.61, + "principal_before": 757.61, + "principal_data": -66.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2806482502305477, + "account_data": -611.04, + "after": 994.99, + "before": 1606.03, + "card_type_id": 2793249295533893, + "create_time": "2025-07-26 00:01:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806482433738437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 994.99, + "principal_before": 1606.03, + "principal_data": -611.04 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2806475129538245, + "account_data": -125.48, + "after": 913.56, + "before": 1039.04, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:54:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806475065673413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 913.56, + "principal_before": 1039.04, + "principal_data": -125.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "果", + "memberMobile": "13902203836", + "id": 2806460056684421, + "account_data": -234.02, + "after": 444.98, + "before": 679.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:38:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806459835745989, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207074645765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215892219653, + "tenant_member_id": 2799207075874565, + "principal_after": 444.98, + "principal_before": 679.0, + "principal_data": -234.02 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2806442069673605, + "account_data": -96.0, + "after": 926.0, + "before": 1022.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:20:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806442012427973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 926.0, + "principal_before": 1022.0, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806436244653957, + "account_data": -190.0, + "after": 1098.0, + "before": 1288.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:14:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806436063725445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 1098.0, + "principal_before": 1288.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806429540206213, + "account_data": -380.0, + "after": 1288.0, + "before": 1668.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:07:48", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806429484893829, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 1288.0, + "principal_before": 1668.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2806428235761349, + "account_data": -380.0, + "after": 592.0, + "before": 972.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:06:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806428166784709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 592.0, + "principal_before": 972.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2806427681687430, + "account_data": -379.0, + "after": 972.0, + "before": 1351.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:05:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806427578599109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 972.0, + "principal_before": 1351.0, + "principal_data": -379.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2806427681441669, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 23:05:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806427578599109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806427042973573, + "tenant_member_id": 2799207221888773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2806427317701701, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 23:05:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806427042973573, + "tenant_member_id": 2799207221888773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2806426637010757, + "account_data": 1000.0, + "after": 1351.0, + "before": 351.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 23:04:50", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806426635208517, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 1351.0, + "principal_before": 351.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806416167700165, + "account_data": -380.0, + "after": 1668.0, + "before": 2048.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:54:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806416094414533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 1668.0, + "principal_before": 2048.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹先生", + "memberMobile": "15147275706", + "id": 2806415532279621, + "account_data": -552.0, + "after": 0.0, + "before": 552.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:53:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806415467251333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207054903045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215867168517, + "tenant_member_id": 2799207056279301, + "principal_after": 0.0, + "principal_before": 552.0, + "principal_data": -552.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806414146094789, + "account_data": -380.0, + "after": 2048.0, + "before": 2428.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:52:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806414070826693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 2048.0, + "principal_before": 2428.0, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2806383411857029, + "account_data": -117.05, + "after": 1108.39, + "before": 1225.44, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:20:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806383314110149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1108.39, + "principal_before": 1225.44, + "principal_data": -117.05 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806372865690693, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 22:10:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806371926623941, + "account_data": -570.0, + "after": 2715.0, + "before": 3285.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:09:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806371873408709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 2715.0, + "principal_before": 3285.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2806371280520837, + "account_data": 3000.0, + "after": 3285.0, + "before": 285.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:08:32", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806371278325381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 3285.0, + "principal_before": 285.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2806367741839045, + "account_data": -2556.74, + "after": 825.12, + "before": 3381.86, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 22:04:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806367692998533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 825.12, + "principal_before": 3381.86, + "principal_data": -2556.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2806291212093253, + "account_data": -28.0, + "after": 952.0, + "before": 980.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 20:47:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806291191006917, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 952.0, + "principal_before": 980.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2806285773178565, + "account_data": -10.0, + "after": 980.0, + "before": 990.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 20:41:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806285645973189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 980.0, + "principal_before": 990.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806252956534469, + "account_data": -640.0, + "after": 2428.0, + "before": 3068.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 20:08:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806252837455685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 2428.0, + "principal_before": 3068.0, + "principal_data": -640.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806252956403397, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 20:08:10", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806252837455685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806246437095301, + "tenant_member_id": 2799207097812741, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806247095045125, + "account_data": 500.0, + "after": 907.0, + "before": 407.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-25 20:02:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215923578629, + "tenant_member_id": 2799207097812741, + "principal_after": 907.0, + "principal_before": 407.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806247043353669, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 20:02:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806246437095301, + "tenant_member_id": 2799207097812741, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2806244952901445, + "account_data": 3000.0, + "after": 3068.0, + "before": 68.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 20:00:01", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806244951017285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 3068.0, + "principal_before": 68.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2806214109087365, + "account_data": -178.63, + "after": 2503.97, + "before": 2682.6, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 19:28:39", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806214044927685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 2503.97, + "principal_before": 2682.6, + "principal_data": -178.63 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2806210022328133, + "account_data": -8.0, + "after": 1039.04, + "before": 1047.04, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 19:24:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806209973454533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1039.04, + "principal_before": 1047.04, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2806174116677509, + "account_data": -4.0, + "after": 123.79, + "before": 127.79, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 18:47:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806173921527621, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 123.79, + "principal_before": 127.79, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2806154422535877, + "account_data": -87.81, + "after": 373.71, + "before": 461.52, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 18:27:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806154294281861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 373.71, + "principal_before": 461.52, + "principal_data": -87.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2806152782431877, + "account_data": -21.0, + "after": 79.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 18:26:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806152756053637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 79.0, + "principal_before": 100.0, + "principal_data": -21.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2806120053245829, + "account_data": -5.0, + "after": 335.0, + "before": 340.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 17:52:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806119977010821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 335.0, + "principal_before": 340.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2806098896864965, + "account_data": -74.0, + "after": 929.0, + "before": 1003.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-25 17:31:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806098776475525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 929.0, + "principal_before": 1003.0, + "principal_data": -74.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2806096638543493, + "account_data": -311.06, + "after": 2682.6, + "before": 2993.66, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 17:29:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806096494626693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 2682.6, + "principal_before": 2993.66, + "principal_data": -311.06 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2806006858190405, + "account_data": -10.0, + "after": 1961.97, + "before": 1971.97, + "card_type_id": 2794699703437125, + "create_time": "2025-07-25 15:57:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2806006667906629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1961.97, + "principal_before": 1971.97, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2805282280574213, + "account_data": -380.0, + "after": 3963.07, + "before": 4343.07, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 03:40:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805282093747461, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3963.07, + "principal_before": 4343.07, + "principal_data": -380.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2805253241292869, + "account_data": -506.86, + "after": 20067.33, + "before": 20574.19, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 03:11:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805253083057733, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 20067.33, + "principal_before": 20574.19, + "principal_data": -506.86 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2805190310627397, + "account_data": -1646.46, + "after": 4343.07, + "before": 5989.53, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 02:07:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805190235573509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 4343.07, + "principal_before": 5989.53, + "principal_data": -1646.46 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2805190310496325, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 02:07:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805190235573509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2805189338008581, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 02:06:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2805188837165125, + "account_data": 3000.0, + "after": 5989.53, + "before": 2989.53, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 02:05:41", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805188835477573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 5989.53, + "principal_before": 2989.53, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2805142282423493, + "account_data": -70.0, + "after": 481.72, + "before": 551.72, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 01:18:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805142187478277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 481.72, + "principal_before": 551.72, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2805122824604869, + "account_data": -3872.14, + "after": 3381.86, + "before": 7254.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:58:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805122761492549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 3381.86, + "principal_before": 7254.0, + "principal_data": -3872.14 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2805122824457413, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 00:58:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805122761492549, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805122111327429, + "tenant_member_id": 2799207575848709, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2805122657963077, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 00:58:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805122111327429, + "tenant_member_id": 2799207575848709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2805121952909381, + "account_data": 3000.0, + "after": 7254.0, + "before": 4254.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:57:39", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805121951074373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 7254.0, + "principal_before": 4254.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2805113194581573, + "account_data": -1215.57, + "after": 2403.43, + "before": 3619.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:48:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805113089887813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2403.43, + "principal_before": 3619.0, + "principal_data": -1215.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2805113194417733, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 00:48:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805113089887813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805111973662277, + "tenant_member_id": 2799210153232133, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2805112244243461, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 00:47:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805111973662277, + "tenant_member_id": 2799210153232133, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2805111553903813, + "account_data": 3000.0, + "after": 3619.0, + "before": 619.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:47:04", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805111552117957, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 3619.0, + "principal_before": 619.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2805100345019653, + "account_data": -8.0, + "after": 8.0, + "before": 16.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-25 00:35:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805100317198405, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 8.0, + "principal_before": 16.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2805087778721349, + "account_data": -10.0, + "after": 1047.04, + "before": 1057.04, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:22:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805087747247365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1047.04, + "principal_before": 1057.04, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2805080630970437, + "account_data": -243.75, + "after": 551.72, + "before": 795.47, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:15:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805080518053125, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 551.72, + "principal_before": 795.47, + "principal_data": -243.75 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2805080053172293, + "account_data": -168.29, + "after": 0.0, + "before": 168.29, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:15:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805079648701701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 168.29, + "principal_data": -168.29 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2805078470298885, + "account_data": -694.69, + "after": 1057.04, + "before": 1751.73, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:13:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805078370307269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1057.04, + "principal_before": 1751.73, + "principal_data": -694.69 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2805076639649349, + "account_data": -910.58, + "after": 2260.96, + "before": 3171.54, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:11:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805076514622725, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 2260.96, + "principal_before": 3171.54, + "principal_data": -910.58 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2805073390095621, + "account_data": -340.81, + "after": 20574.19, + "before": 20915.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:08:15", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805073175154245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 20574.19, + "principal_before": 20915.0, + "principal_data": -340.81 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2805071840169029, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-25 00:06:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2805070276495429, + "tenant_member_id": 2799207137642245, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2805071167130821, + "account_data": -872.21, + "after": 127.79, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:05:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805070956235973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 127.79, + "principal_before": 1000.0, + "principal_data": -872.21 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2805070138789445, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-25 00:04:56", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805070136823365, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220088145669, + "tenant_member_id": 2799207137642245, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2805058699855941, + "account_data": -96.0, + "after": 1022.0, + "before": 1118.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 23:53:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2805058635828485, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1022.0, + "principal_before": 1118.0, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2804902909773893, + "account_data": -263.7, + "after": 2989.53, + "before": 3253.23, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 21:14:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804902816385093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 2989.53, + "principal_before": 3253.23, + "principal_data": -263.7 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2804869004496453, + "account_data": -60.0, + "after": 449.0, + "before": 509.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 20:40:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804868910681285, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 449.0, + "principal_before": 509.0, + "principal_data": -60.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2804868606266949, + "account_data": 118.0, + "after": 509.0, + "before": 391.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 20:39:56", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804864863407685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 509.0, + "principal_before": 391.0, + "principal_data": 118.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2804864897797317, + "account_data": -118.0, + "after": 391.0, + "before": 509.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 20:36:09", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804864863407685, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 391.0, + "principal_before": 509.0, + "principal_data": -118.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2804771441004101, + "account_data": -100.0, + "after": 1003.0, + "before": 1103.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-24 19:01:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804771330936005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 1003.0, + "principal_before": 1103.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2804769724533957, + "account_data": -13.34, + "after": 2993.66, + "before": 3007.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 18:59:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804769415809093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 2993.66, + "principal_before": 3007.0, + "principal_data": -13.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2804769724386501, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 18:59:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804769415809093, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2804767384569925, + "tenant_member_id": 2799207305578245, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2804767711972421, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 18:57:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2804767384569925, + "tenant_member_id": 2799207305578245, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2804767342677253, + "account_data": 3000.0, + "after": 3007.0, + "before": 7.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 18:56:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804767340973317, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 3007.0, + "principal_before": 7.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2804736837749957, + "account_data": -96.48, + "after": 461.52, + "before": 558.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 18:25:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2804736733579333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 461.52, + "principal_before": 558.0, + "principal_data": -96.48 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803712973262085, + "account_data": -365.77, + "after": 3253.23, + "before": 3619.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 01:04:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803712781864133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3253.23, + "principal_before": 3619.0, + "principal_data": -365.77 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803712973131013, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 01:04:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803712781864133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803711079205893, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 01:02:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803710638558469, + "tenant_member_id": 2799209806071557, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803710577395781, + "account_data": 3000.0, + "after": 3619.0, + "before": 619.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 01:01:55", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803710575593541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 3619.0, + "principal_before": 619.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803701659536581, + "account_data": -83.34, + "after": 795.47, + "before": 878.81, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:52:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803701518272581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 795.47, + "principal_before": 878.81, + "principal_data": -83.34 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803701659389125, + "account_data": -46.0, + "after": 0.0, + "before": 46.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:52:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803701518272581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 46.0, + "principal_data": -46.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 2803669728087237, + "account_data": -68.39, + "after": 757.61, + "before": 826.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-24 00:20:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803669254917701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 757.61, + "principal_before": 826.0, + "principal_data": -68.39 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2803668379258117, + "account_data": -831.71, + "after": 168.29, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:19:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803668294880837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 168.29, + "principal_before": 1000.0, + "principal_data": -831.71 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2803668379127045, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:19:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803668294880837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2803667546754117, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:18:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803667142315589, + "tenant_member_id": 2799212666783493, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "七七", + "memberMobile": "18802057793", + "id": 2803666934255173, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:17:31", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803666932010565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212665276165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219648595717, + "tenant_member_id": 2799212666783493, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2803664218098885, + "account_data": -1230.0, + "after": 285.0, + "before": 1515.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:14:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803664146156805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 285.0, + "principal_before": 1515.0, + "principal_data": -1230.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2803664217951429, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:14:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803664146156805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2803662003932229, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:12:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803661611159109, + "tenant_member_id": 2799212855936773, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2803661547261509, + "account_data": 1000.0, + "after": 1515.0, + "before": 515.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:12:03", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803661545508421, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 1515.0, + "principal_before": 515.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2803652594781445, + "account_data": -190.0, + "after": 340.0, + "before": 530.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:02:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803652494559301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 340.0, + "principal_before": 530.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2803650124762309, + "account_data": -470.0, + "after": 530.0, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-24 00:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803649910902021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 530.0, + "principal_before": 1000.0, + "principal_data": -470.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2803650124614853, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-24 00:00:25", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803649910902021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2803649550715973, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 23:59:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803649247627333, + "tenant_member_id": 2799207287523077, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2803649177341125, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 23:59:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803649174965445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803635392532037, + "account_data": -30.0, + "after": 46.0, + "before": 76.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 23:45:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803635291162693, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 46.0, + "principal_before": 76.0, + "principal_data": -30.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803633675454533, + "account_data": -12.0, + "after": 76.0, + "before": 88.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 23:43:41", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803633556129861, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 76.0, + "principal_before": 88.0, + "principal_data": -12.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803632214625477, + "account_data": -4.0, + "after": 88.0, + "before": 92.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 23:42:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803632080063749, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 88.0, + "principal_before": 92.0, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2803567560919109, + "account_data": -8.0, + "after": 92.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 22:36:26", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803567298940101, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 92.0, + "principal_before": 100.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2803564669930693, + "account_data": -118.94, + "after": 1751.73, + "before": 1870.67, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 22:33:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803564340038789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1751.73, + "principal_before": 1870.67, + "principal_data": -118.94 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2803557599792261, + "account_data": -407.76, + "after": 6198.64, + "before": 6606.4, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 22:26:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803557364632837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6198.64, + "principal_before": 6606.4, + "principal_data": -407.76 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2803525165172805, + "account_data": -822.55, + "after": 177.45, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 21:53:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803525035854981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 177.45, + "principal_before": 1000.0, + "principal_data": -822.55 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2803525165025349, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 21:53:19", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803525035854981, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2803524727114757, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 21:52:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2803524217965765, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 21:52:21", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803524215835845, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2803435782655237, + "account_data": -4.0, + "after": 619.0, + "before": 623.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 20:22:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803435536796933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 619.0, + "principal_before": 623.0, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803280340879429, + "account_data": -5.0, + "after": 619.0, + "before": 624.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 17:44:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803280306982149, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 619.0, + "principal_before": 624.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2803216749726853, + "account_data": -5.0, + "after": 293.99, + "before": 298.99, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 16:39:34", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803216729245765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 293.99, + "principal_before": 298.99, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2803206237916421, + "account_data": -5.0, + "after": 69.0, + "before": 74.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 16:28:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803206211816645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 69.0, + "principal_before": 74.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "乔西", + "memberMobile": "15213282732", + "id": 2803195029163141, + "account_data": -6.0, + "after": 318.0, + "before": 324.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 16:17:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803194978503877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207248660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217966728965, + "tenant_member_id": 2799207249676037, + "principal_after": 318.0, + "principal_before": 324.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "乔西", + "memberMobile": "15213282732", + "id": 2803195029015685, + "account_data": -2.0, + "after": 0.0, + "before": 2.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-23 16:17:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803194978503877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207248660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216277194501, + "tenant_member_id": 2799207249676037, + "principal_after": 0.0, + "principal_before": 2.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2803184721578053, + "account_data": -190.0, + "after": 624.0, + "before": 814.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 16:06:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803184687123589, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 624.0, + "principal_before": 814.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2803130525943877, + "account_data": -4.0, + "after": 0.0, + "before": 4.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 15:11:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2803130316557509, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 0.0, + "principal_before": 4.0, + "principal_data": -4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802487728868613, + "account_data": -1040.0, + "after": 250.0, + "before": 1290.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 04:17:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802487339945157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 250.0, + "principal_before": 1290.0, + "principal_data": -1040.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802487728721157, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 04:17:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802487339945157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802481332620357, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 04:11:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802480976596165, + "account_data": 1000.0, + "after": 1290.0, + "before": 290.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 04:11:06", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802480974171333, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 1290.0, + "principal_before": 290.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802457540266053, + "account_data": -329.85, + "after": 298.99, + "before": 628.84, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 03:47:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802457498127493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 298.99, + "principal_before": 628.84, + "principal_data": -329.85 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802457540118597, + "account_data": -102.0, + "after": 4218.0, + "before": 4320.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-23 03:47:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802457498127493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 4218.0, + "principal_before": 4320.0, + "principal_data": -102.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2802399880349765, + "account_data": -1190.81, + "after": 3171.54, + "before": 4362.35, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 02:48:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802399741332613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3171.54, + "principal_before": 4362.35, + "principal_data": -1190.81 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2802394731908293, + "account_data": -2781.13, + "after": 218.87, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 02:43:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802394613123141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215993554693, + "tenant_member_id": 2799207128008453, + "principal_after": 218.87, + "principal_before": 3000.0, + "principal_data": -2781.13 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2802394731760837, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 02:43:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802394613123141, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802393898600517, + "tenant_member_id": 2799207128008453, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2802394189270085, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 02:42:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802393898600517, + "tenant_member_id": 2799207128008453, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2802393841700101, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 02:42:28", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802393839258885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215993554693, + "tenant_member_id": 2799207128008453, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802365267348677, + "account_data": -112.0, + "after": 4320.0, + "before": 4432.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-23 02:13:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802365155069061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 4320.0, + "principal_before": 4432.0, + "principal_data": -112.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802363809056837, + "account_data": -1682.16, + "after": 628.84, + "before": 2311.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 02:11:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802363436092613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 628.84, + "principal_before": 2311.0, + "principal_data": -1682.16 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802363808909381, + "account_data": -200.0, + "after": 0.0, + "before": 200.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 02:11:55", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802363436092613, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 200.0, + "principal_data": -200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802362621560901, + "account_data": 2000.0, + "after": 2311.0, + "before": 311.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 02:10:42", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802362619840581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 2311.0, + "principal_before": 311.0, + "principal_data": 2000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802361435294789, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-23 02:09:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802358183464133, + "tenant_member_id": 2799207120815877, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2802280010108101, + "account_data": -134.0, + "after": 3545.0, + "before": 3679.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-23 00:46:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802279847251077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3545.0, + "principal_before": 3679.0, + "principal_data": -134.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2802239376460933, + "account_data": -5.0, + "after": 990.0, + "before": 995.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 00:05:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802239202708677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 990.0, + "principal_before": 995.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2802237352642629, + "account_data": -570.0, + "after": 6606.4, + "before": 7176.4, + "card_type_id": 2793249295533893, + "create_time": "2025-07-23 00:03:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802237125102853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 6606.4, + "principal_before": 7176.4, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2802173011724677, + "account_data": -388.6, + "after": 7176.4, + "before": 7565.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 22:57:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802172705245253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7176.4, + "principal_before": 7565.0, + "principal_data": -388.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802067208144965, + "account_data": -1420.0, + "after": 290.0, + "before": 1710.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 21:10:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802066702535045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 290.0, + "principal_before": 1710.0, + "principal_data": -1420.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802067208013893, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-22 21:10:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802066702535045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802065962208261, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-22 21:08:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2802064459712709, + "tenant_member_id": 2799209844590341, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2802064359131205, + "account_data": 1000.0, + "after": 1710.0, + "before": 710.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 21:07:18", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802064357345349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 1710.0, + "principal_before": 710.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "卢广贤", + "memberMobile": "18613066220", + "id": 2802040042572872, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 20:42:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207162349317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216054093573, + "tenant_member_id": 2799207163447045, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢俊", + "memberMobile": "18620395198", + "id": 2802039997221957, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 20:42:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207351731973, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216532522757, + "tenant_member_id": 2799207352715013, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2802039940451397, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 20:42:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216545351429, + "tenant_member_id": 2799207359858437, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄生", + "memberMobile": "13609719719", + "id": 2802039884237893, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 20:42:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207389300485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216650897157, + "tenant_member_id": 2799207390349061, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2802039833644101, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 20:42:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216801138437, + "tenant_member_id": 2799207406946053, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802025397291205, + "account_data": -43.0, + "after": 311.0, + "before": 354.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 20:27:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802025356478661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 311.0, + "principal_before": 354.0, + "principal_data": -43.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2802025396963525, + "account_data": -2.0, + "after": 0.0, + "before": 2.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-22 20:27:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802025356478661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215967487749, + "tenant_member_id": 2799207120815877, + "principal_after": 0.0, + "principal_before": 2.0, + "principal_data": -2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2802022782798085, + "account_data": -217.0, + "after": 0.0, + "before": 217.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 20:25:00", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2802022435391877, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 0.0, + "principal_before": 217.0, + "principal_data": -217.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "艾宇民", + "memberMobile": "15062279958", + "id": 2801989885070341, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 19:51:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207327188741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216483370757, + "tenant_member_id": 2799207328155397, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "年卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾巧明", + "memberMobile": "18688471488", + "id": 2801988154018885, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791987095408517, + "create_time": "2025-07-22 19:49:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207402505989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216795584261, + "tenant_member_id": 2799207403554565, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2801986784790725, + "account_data": -190.0, + "after": 7565.0, + "before": 7755.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 19:48:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801986552121413, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7565.0, + "principal_before": 7755.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2801968103704773, + "account_data": -50.0, + "after": 995.0, + "before": 1045.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 19:29:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801968004647301, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 995.0, + "principal_before": 1045.0, + "principal_data": -50.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801947958970437, + "account_data": 6.0, + "after": 1225.44, + "before": 1219.44, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 19:08:54", + "from_type": 2, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801894834391429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1225.44, + "principal_before": 1219.44, + "principal_data": 6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801894886148357, + "account_data": -6.0, + "after": 1219.44, + "before": 1225.44, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 18:14:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801894834391429, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1219.44, + "principal_before": 1225.44, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801880520345861, + "account_data": -139.56, + "after": 1225.44, + "before": 1365.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 18:00:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801880491575493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1225.44, + "principal_before": 1365.0, + "principal_data": -139.56 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801880520182021, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-22 18:00:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801880491575493, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801880313809989, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-22 18:00:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801879530473733, + "tenant_member_id": 2799210049521413, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2801879401302405, + "account_data": 1000.0, + "after": 1365.0, + "before": 365.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 17:59:09", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801879399532933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 1365.0, + "principal_before": 365.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2801878220818501, + "account_data": -190.0, + "after": 7755.0, + "before": 7945.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 17:57:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801878179121541, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7755.0, + "principal_before": 7945.0, + "principal_data": -190.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2801857534658757, + "account_data": -71.0, + "after": 0.0, + "before": 71.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 17:36:54", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801857182714245, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215993554693, + "tenant_member_id": 2799207128008453, + "principal_after": 0.0, + "principal_before": 71.0, + "principal_data": -71.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2801784546658501, + "account_data": -8.0, + "after": 2672.09, + "before": 2680.09, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 16:22:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801784485824581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2672.09, + "principal_before": 2680.09, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "喜乐", + "memberMobile": "18529180326", + "id": 2801646213892485, + "account_data": -3.0, + "after": 0.0, + "before": 3.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 14:01:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2801646035634437, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209890006789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217861314309, + "tenant_member_id": 2799209891464965, + "principal_after": 0.0, + "principal_before": 3.0, + "principal_data": -3.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2800889946458117, + "account_data": -2875.65, + "after": 4362.35, + "before": 7238.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 01:12:38", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800889188304901, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 4362.35, + "principal_before": 7238.0, + "principal_data": -2875.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2800844153292997, + "account_data": -5.0, + "after": 5.0, + "before": 10.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 00:26:03", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800844129863813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 5.0, + "principal_before": 10.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2800829539863621, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-22 00:11:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2800825633032261, + "account_data": -204.19, + "after": 878.81, + "before": 1083.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 00:07:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800825501485061, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 878.81, + "principal_before": 1083.0, + "principal_data": -204.19 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2800824059775045, + "account_data": 1000.0, + "after": 1083.0, + "before": 83.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-22 00:05:36", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800824057628741, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1083.0, + "principal_before": 83.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2800772215146565, + "account_data": -1711.91, + "after": 2680.09, + "before": 4392.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 23:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800771371960389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 2680.09, + "principal_before": 4392.0, + "principal_data": -1711.91 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2800772214982725, + "account_data": -500.0, + "after": 0.0, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-21 23:12:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800771371960389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 0.0, + "principal_before": 500.0, + "principal_data": -500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2800770322827333, + "account_data": -247.0, + "after": 0.0, + "before": 247.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 23:10:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800770224490629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 0.0, + "principal_before": 247.0, + "principal_data": -247.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2800770322679877, + "account_data": -95.65, + "after": 7180.35, + "before": 7276.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-21 23:10:56", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800770224490629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 7180.35, + "principal_before": 7276.0, + "principal_data": -95.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2800765804300357, + "account_data": -45.0, + "after": 162.0, + "before": 207.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 23:06:21", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800765767043077, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 162.0, + "principal_before": 207.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2800765195537413, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-07-21 23:05:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2800763350779909, + "account_data": 3000.0, + "after": 4392.0, + "before": 1392.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 23:03:51", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800763348731909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 4392.0, + "principal_before": 1392.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2800753410148421, + "account_data": -5.0, + "after": 10.0, + "before": 15.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 22:53:44", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800753238165381, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 10.0, + "principal_before": 15.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2800706251425797, + "account_data": -86.33, + "after": 1870.67, + "before": 1957.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 22:05:46", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800706200422341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1870.67, + "principal_before": 1957.0, + "principal_data": -86.33 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2800677354735493, + "account_data": -28.0, + "after": 10.0, + "before": 38.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-21 21:36:22", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800677073487813, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216127166213, + "tenant_member_id": 2799207188170501, + "principal_after": 10.0, + "principal_before": 38.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2800574477469765, + "account_data": -5.0, + "after": 74.0, + "before": 79.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 19:51:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800574414915525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 74.0, + "principal_before": 79.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2800535382460293, + "account_data": -5.0, + "after": 1045.0, + "before": 1050.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 19:11:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800535356409925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 1045.0, + "principal_before": 1050.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2800534985656325, + "account_data": -28.0, + "after": 4.0, + "before": 32.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 19:11:32", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800534947940293, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 4.0, + "principal_before": 32.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2800404348963717, + "account_data": -562.0, + "after": 7238.0, + "before": 7800.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 16:58:39", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7238.0, + "principal_before": 7800.0, + "principal_data": -562.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2800392615004101, + "account_data": -10.0, + "after": 32.0, + "before": 42.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 16:46:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800392593475653, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 32.0, + "principal_before": 42.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2800360635942917, + "account_data": -10.0, + "after": 79.0, + "before": 89.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 16:14:11", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800360608303045, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 79.0, + "principal_before": 89.0, + "principal_data": -10.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2800348154579013, + "account_data": -6.0, + "after": 42.0, + "before": 48.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 16:01:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2800348098742341, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 42.0, + "principal_before": 48.0, + "principal_data": -6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2800343012068229, + "account_data": -16.0, + "after": 48.0, + "before": 64.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:56:15", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 48.0, + "principal_before": 64.0, + "principal_data": -16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13826167578", + "id": 2800338703584133, + "account_data": -72.0, + "after": 4.0, + "before": 76.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:51:52", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207484294917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216993044229, + "tenant_member_id": 2799207485687557, + "principal_after": 4.0, + "principal_before": 76.0, + "principal_data": -72.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹先生", + "memberMobile": "15147275706", + "id": 2800338335697797, + "account_data": -863.0, + "after": 552.0, + "before": 1415.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:51:30", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207054903045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215867168517, + "tenant_member_id": 2799207056279301, + "principal_after": 552.0, + "principal_before": 1415.0, + "principal_data": -863.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2800337681140613, + "account_data": -429.0, + "after": 275.0, + "before": 704.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:50:50", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216556492549, + "tenant_member_id": 2799207229441797, + "principal_after": 275.0, + "principal_before": 704.0, + "principal_data": -429.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13893350921", + "id": 2800336793930629, + "account_data": -15.0, + "after": 71.0, + "before": 86.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:49:56", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2698977562052101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217345398533, + "tenant_member_id": 2799209721169669, + "principal_after": 71.0, + "principal_before": 86.0, + "principal_data": -15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2800336313338757, + "account_data": -264.0, + "after": 1118.0, + "before": 1382.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:49:26", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1118.0, + "principal_before": 1382.0, + "principal_data": -264.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19924725082", + "id": 2800335026670469, + "account_data": -68.0, + "after": 258.0, + "before": 326.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:48:08", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209819850501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217674962693, + "tenant_member_id": 2799209821177605, + "principal_after": 258.0, + "principal_before": 326.0, + "principal_data": -68.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2800334284934021, + "account_data": -45.0, + "after": 1050.0, + "before": 1095.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:47:23", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 1050.0, + "principal_before": 1095.0, + "principal_data": -45.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2800333602179973, + "account_data": -122.0, + "after": 109.0, + "before": 231.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:46:41", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216582838021, + "tenant_member_id": 2799207334774533, + "principal_after": 109.0, + "principal_before": 231.0, + "principal_data": -122.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2800332996627333, + "account_data": -528.0, + "after": 351.0, + "before": 879.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:46:04", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 351.0, + "principal_before": 879.0, + "principal_data": -528.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2800332515314565, + "account_data": -570.0, + "after": 7800.0, + "before": 8370.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:45:35", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 7800.0, + "principal_before": 8370.0, + "principal_data": -570.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2800331954736005, + "account_data": -346.0, + "after": 7945.0, + "before": 8291.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:45:00", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 7945.0, + "principal_before": 8291.0, + "principal_data": -346.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2800331271129989, + "account_data": 340.0, + "after": 515.0, + "before": 175.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:44:19", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 515.0, + "principal_before": 175.0, + "principal_data": 340.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2800330000272261, + "account_data": -67.0, + "after": 1095.0, + "before": 1162.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:43:01", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 1095.0, + "principal_before": 1162.0, + "principal_data": -67.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2800329356315525, + "account_data": -70.0, + "after": 1957.0, + "before": 2027.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:42:22", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 1957.0, + "principal_before": 2027.0, + "principal_data": -70.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2800328508984197, + "account_data": -8.0, + "after": 0.0, + "before": 8.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:41:30", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 0.0, + "principal_before": 8.0, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2800328071170949, + "account_data": -191.0, + "after": 8.0, + "before": 199.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-21 15:41:03", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 8.0, + "principal_before": 199.0, + "principal_data": -191.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13928733639", + "id": 2799220112934661, + "account_data": 2634.0, + "after": 2634.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212919949061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220112836357, + "tenant_member_id": 2799212921554693, + "principal_after": 2634.0, + "principal_before": 0.0, + "principal_data": 2634.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18684668238", + "id": 2799220108199685, + "account_data": 922.0, + "after": 922.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212915558149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220108068613, + "tenant_member_id": 2799212917131013, + "principal_after": 922.0, + "principal_before": 0.0, + "principal_data": 922.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2799220093699845, + "account_data": 1578.0, + "after": 1578.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1578.0, + "principal_before": 0.0, + "principal_data": 1578.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "15018428186(1)", + "id": 2799220083230469, + "account_data": 169.0, + "after": 169.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212901385989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220083132165, + "tenant_member_id": 2799212902975237, + "principal_after": 169.0, + "principal_before": 0.0, + "principal_data": 169.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "13602890721", + "id": 2799220063651589, + "account_data": 640.0, + "after": 640.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212894406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220063536901, + "tenant_member_id": 2799212895438597, + "principal_after": 640.0, + "principal_before": 0.0, + "principal_data": 640.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "枫先生", + "memberMobile": "18064611896", + "id": 2799220058818309, + "account_data": 488.0, + "after": 488.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1914431239655621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220058703621, + "tenant_member_id": 2799212892030725, + "principal_after": 488.0, + "principal_before": 0.0, + "principal_data": 488.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "阿超", + "memberMobile": "18818396020", + "id": 2799220048922373, + "account_data": 260.0, + "after": 260.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212882413317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220048824069, + "tenant_member_id": 2799212883642117, + "principal_after": 260.0, + "principal_before": 0.0, + "principal_data": 260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈小姐", + "memberMobile": "13802740778", + "id": 2799220043990789, + "account_data": 600.0, + "after": 600.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212878235397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220043892485, + "tenant_member_id": 2799212879873797, + "principal_after": 600.0, + "principal_before": 0.0, + "principal_data": 600.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "毕先生", + "memberMobile": "13710910319", + "id": 2799220038911749, + "account_data": 323.0, + "after": 323.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212873500421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220038797061, + "tenant_member_id": 2799212875056901, + "principal_after": 323.0, + "principal_before": 0.0, + "principal_data": 323.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "符先生", + "memberMobile": "13622281724", + "id": 2799220033963781, + "account_data": 326.0, + "after": 326.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212869863173, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220033865477, + "tenant_member_id": 2799212870829829, + "principal_after": 326.0, + "principal_before": 0.0, + "principal_data": 326.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "13719383370", + "id": 2799220024297221, + "account_data": 367.0, + "after": 367.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212861818629, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220024198917, + "tenant_member_id": 2799212862785285, + "principal_after": 367.0, + "principal_before": 0.0, + "principal_data": 367.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13750599899", + "id": 2799220018087685, + "account_data": 514.0, + "after": 514.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212858377989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220017989381, + "tenant_member_id": 2799212859393797, + "principal_after": 514.0, + "principal_before": 0.0, + "principal_data": 514.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小唯", + "memberMobile": "19152047230", + "id": 2799220013451013, + "account_data": 175.0, + "after": 175.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212854904581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220013303557, + "tenant_member_id": 2799212855936773, + "principal_after": 175.0, + "principal_before": 0.0, + "principal_data": 175.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2799219999393541, + "account_data": 1382.0, + "after": 1382.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1382.0, + "principal_before": 0.0, + "principal_data": 1382.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13533355668(1)", + "id": 2799219994511109, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212841174789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219994396421, + "tenant_member_id": 2799212842157829, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李瑾(该会员已注销)", + "memberMobile": "13535098051(1)", + "id": 2799219964577541, + "account_data": 498.8, + "after": 498.8, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212831082245, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219964462853, + "tenant_member_id": 2799212832130821, + "principal_after": 498.8, + "principal_before": 0.0, + "principal_data": 498.8 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘文浩", + "memberMobile": "18122747919", + "id": 2799219958810373, + "account_data": 12.74, + "after": 12.74, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210231613189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219958712069, + "tenant_member_id": 2799210232563461, + "principal_after": 12.74, + "principal_before": 0.0, + "principal_data": 12.74 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张林(该会员已注销)", + "memberMobile": "15920272681(1)", + "id": 2799219954026245, + "account_data": 109.0, + "after": 109.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212827379461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219953927941, + "tenant_member_id": 2799212828444421, + "principal_after": 109.0, + "principal_before": 0.0, + "principal_data": 109.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18588891356(1)", + "id": 2799219943393029, + "account_data": 260.0, + "after": 260.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212820694789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219943294725, + "tenant_member_id": 2799212821808901, + "principal_after": 260.0, + "principal_before": 0.0, + "principal_data": 260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13318860018", + "id": 2799219937134341, + "account_data": 60.0, + "after": 60.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212817188613, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219937019653, + "tenant_member_id": 2799212818319109, + "principal_after": 60.0, + "principal_before": 0.0, + "principal_data": 60.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "13824473185(1)", + "id": 2799219925993221, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210131179269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219925878533, + "tenant_member_id": 2799210132571909, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蓝总", + "memberMobile": "13249633733", + "id": 2799219920193285, + "account_data": 62.0, + "after": 62.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2445255494684677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219920094981, + "tenant_member_id": 2799210007807749, + "principal_after": 62.0, + "principal_before": 0.0, + "principal_data": 62.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "强哥", + "memberMobile": "13809204858", + "id": 2799219915015941, + "account_data": 7.0, + "after": 7.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212810405637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219914917637, + "tenant_member_id": 2799212811503365, + "principal_after": 7.0, + "principal_before": 0.0, + "principal_data": 7.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生", + "memberMobile": "15588690348", + "id": 2799219904857861, + "account_data": 158.0, + "after": 158.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212806997765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219904759557, + "tenant_member_id": 2799212808029957, + "principal_after": 158.0, + "principal_before": 0.0, + "principal_data": 158.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "13798164027", + "id": 2799219894847237, + "account_data": 0.97, + "after": 0.97, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212557780741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219894732549, + "tenant_member_id": 2799212558747397, + "principal_after": 0.97, + "principal_before": 0.0, + "principal_data": 0.97 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13808891339", + "id": 2799219889833733, + "account_data": 87.0, + "after": 87.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212800542469, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219889735429, + "tenant_member_id": 2799212801525509, + "principal_after": 87.0, + "principal_before": 0.0, + "principal_data": 87.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王文熙(该会员已注销)", + "memberMobile": "15889955833(1)", + "id": 2799219884394245, + "account_data": 300.0, + "after": 300.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212797134597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219884263173, + "tenant_member_id": 2799212798150405, + "principal_after": 300.0, + "principal_before": 0.0, + "principal_data": 300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "13312811181(1)", + "id": 2799219874875141, + "account_data": 674.0, + "after": 674.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212789827333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219874760453, + "tenant_member_id": 2799212790843141, + "principal_after": 674.0, + "principal_before": 0.0, + "principal_data": 674.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莱先生(该会员已注销)", + "memberMobile": "13610193517(1)", + "id": 2799219869812485, + "account_data": 126.0, + "after": 126.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212786484997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219869697797, + "tenant_member_id": 2799212787468037, + "principal_after": 126.0, + "principal_before": 0.0, + "principal_data": 126.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈女士(该会员已注销)", + "memberMobile": "13631303308(1)", + "id": 2799219864995589, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212783027973, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219864880901, + "tenant_member_id": 2799212784076549, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生(该会员已注销)", + "memberMobile": "13826050919(1)", + "id": 2799219860408069, + "account_data": 106.1, + "after": 106.1, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212779652869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219860293381, + "tenant_member_id": 2799212780685061, + "principal_after": 106.1, + "principal_before": 0.0, + "principal_data": 106.1 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨洋", + "memberMobile": "18126782693", + "id": 2799219855296261, + "account_data": 61.0, + "after": 61.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2026068177520773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219855197957, + "tenant_member_id": 2799207180060421, + "principal_after": 61.0, + "principal_before": 0.0, + "principal_data": 61.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13725135419", + "id": 2799219850643205, + "account_data": 27.0, + "after": 27.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212483725061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219850544901, + "tenant_member_id": 2799212484740869, + "principal_after": 27.0, + "principal_before": 0.0, + "principal_data": 27.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13760876330", + "id": 2799219846006533, + "account_data": 6.0, + "after": 6.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212776146693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219845891845, + "tenant_member_id": 2799212777178885, + "principal_after": 6.0, + "principal_before": 0.0, + "principal_data": 6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗小姐(该会员已注销)", + "memberMobile": "13710201000(1)", + "id": 2799219841337093, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212772689669, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219841238789, + "tenant_member_id": 2799212773852933, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13392104715(1)", + "id": 2799219833571077, + "account_data": 159.0, + "after": 159.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212769314565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219833423621, + "tenant_member_id": 2799212770281221, + "principal_after": 159.0, + "principal_before": 0.0, + "principal_data": 159.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莫先生", + "memberMobile": "13726561143", + "id": 2799219820398341, + "account_data": 0.2, + "after": 0.2, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212762810117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219820300037, + "tenant_member_id": 2799212763776773, + "principal_after": 0.2, + "principal_before": 0.0, + "principal_data": 0.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生(该会员已注销)", + "memberMobile": "18038230815(1)", + "id": 2799219807946501, + "account_data": 147.0, + "after": 147.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212755666693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219807831813, + "tenant_member_id": 2799212756633349, + "principal_after": 147.0, + "principal_before": 0.0, + "principal_data": 147.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "JOJO(该会员已注销)", + "memberMobile": "13533509812(1)", + "id": 2799219801671429, + "account_data": 300.0, + "after": 300.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212752373509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219801573125, + "tenant_member_id": 2799212753405701, + "principal_after": 300.0, + "principal_before": 0.0, + "principal_data": 300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生(该会员已注销)", + "memberMobile": "13728050010(1)", + "id": 2799219791283973, + "account_data": 93.0, + "after": 93.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209782593285, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219791185669, + "tenant_member_id": 2799209783559941, + "principal_after": 93.0, + "principal_before": 0.0, + "principal_data": 93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570544042", + "id": 2799219786516229, + "account_data": 0.84, + "after": 0.84, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212744230661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219786417925, + "tenant_member_id": 2799212745492229, + "principal_after": 0.84, + "principal_before": 0.0, + "principal_data": 0.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生(该会员已注销)", + "memberMobile": "13922262521(1)", + "id": 2799219781879557, + "account_data": 300.0, + "after": 300.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212739069701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219781764869, + "tenant_member_id": 2799212740642565, + "principal_after": 300.0, + "principal_before": 0.0, + "principal_data": 300.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生(该会员已注销)", + "memberMobile": "13160863931(1)", + "id": 2799219771475717, + "account_data": 213.4, + "after": 213.4, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212731188997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219771377413, + "tenant_member_id": 2799212732172037, + "principal_after": 213.4, + "principal_before": 0.0, + "principal_data": 213.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2799219766789893, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219766675205, + "tenant_member_id": 2799209786836741, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蒋方源(该会员已注销)", + "memberMobile": "15814569090(1)", + "id": 2799219736872709, + "account_data": 91.0, + "after": 91.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212714231557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219736758021, + "tenant_member_id": 2799212715755269, + "principal_after": 91.0, + "principal_before": 0.0, + "principal_data": 91.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐柯(该会员已注销)", + "memberMobile": "13922778722(1)", + "id": 2799219727386373, + "account_data": 402.0, + "after": 402.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212447172357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219727271685, + "tenant_member_id": 2799212448220933, + "principal_after": 402.0, + "principal_before": 0.0, + "principal_data": 402.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13229994895", + "id": 2799219716589317, + "account_data": 40.0, + "after": 40.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212703336197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219716491013, + "tenant_member_id": 2799212704335621, + "principal_after": 40.0, + "principal_before": 0.0, + "principal_data": 40.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张士超(该会员已注销)", + "memberMobile": "13068888777(1)", + "id": 2799219711477509, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212699469573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219711362821, + "tenant_member_id": 2799212700485381, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生(该会员已注销)", + "memberMobile": "18688886161(1)", + "id": 2799219693160197, + "account_data": 312.0, + "after": 312.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212688066309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219693061893, + "tenant_member_id": 2799212689065733, + "principal_after": 312.0, + "principal_before": 0.0, + "principal_data": 312.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "15989050492", + "id": 2799219688343301, + "account_data": 929.2, + "after": 929.2, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210051831557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219688228613, + "tenant_member_id": 2799210052814597, + "principal_after": 929.2, + "principal_before": 0.0, + "principal_data": 929.2 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生(该会员已注销)", + "memberMobile": "18664649918(1)", + "id": 2799219683411717, + "account_data": 554.6, + "after": 554.6, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212684756741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219683297029, + "tenant_member_id": 2799212685772549, + "principal_after": 554.6, + "principal_before": 0.0, + "principal_data": 554.6 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "龚先生", + "memberMobile": "15521047626", + "id": 2799219660457733, + "account_data": 37.4, + "after": 37.4, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212673320709, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219660359429, + "tenant_member_id": 2799212674598661, + "principal_after": 37.4, + "principal_before": 0.0, + "principal_data": 37.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "庄先生(该会员已注销)", + "memberMobile": "13560069201(1)", + "id": 2799219655706373, + "account_data": 467.47, + "after": 467.47, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212669421317, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219655591685, + "tenant_member_id": 2799212670846725, + "principal_after": 467.47, + "principal_before": 0.0, + "principal_data": 467.47 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢001", + "memberMobile": "13802801029", + "id": 2799219651004165, + "account_data": 4558.4, + "after": 5378.4, + "before": 820.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212580374277, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219478038277, + "tenant_member_id": 2799212581897989, + "principal_after": 5378.4, + "principal_before": 820.0, + "principal_data": 4558.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13318718715", + "id": 2799219643778821, + "account_data": 23.27, + "after": 23.27, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212661016325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219643647749, + "tenant_member_id": 2799212662507269, + "principal_after": 23.27, + "principal_before": 0.0, + "principal_data": 23.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程璐(该会员已注销)", + "memberMobile": "18666020935(1)", + "id": 2799219619251973, + "account_data": 122.0, + "after": 122.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212649645829, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219619137285, + "tenant_member_id": 2799212650678021, + "principal_after": 122.0, + "principal_before": 0.0, + "principal_data": 122.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "佳佳(该会员已注销)", + "memberMobile": "19902270191(1)", + "id": 2799219606570757, + "account_data": 260.0, + "after": 260.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212644665093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219606472453, + "tenant_member_id": 2799212646336261, + "principal_after": 260.0, + "principal_before": 0.0, + "principal_data": 260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘洋", + "memberMobile": "15018756008", + "id": 2799219594299141, + "account_data": 44.47, + "after": 44.47, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212641240837, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219594200837, + "tenant_member_id": 2799212642273029, + "principal_after": 44.47, + "principal_before": 0.0, + "principal_data": 44.47 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邬永亮", + "memberMobile": "13510327305", + "id": 2799219587942149, + "account_data": 30.0, + "after": 30.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2568282235341253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219587843845, + "tenant_member_id": 2799212638881541, + "principal_after": 30.0, + "principal_before": 0.0, + "principal_data": 30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "15521196743(1)", + "id": 2799219575490309, + "account_data": 205.0, + "after": 205.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212634556165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219575375621, + "tenant_member_id": 2799212635555589, + "principal_after": 205.0, + "principal_before": 0.0, + "principal_data": 205.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "崔女士(该会员已注销)", + "memberMobile": "18988888009(1)", + "id": 2799219563906821, + "account_data": 80.0, + "after": 80.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212625954565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219563808517, + "tenant_member_id": 2799212626953989, + "principal_after": 80.0, + "principal_before": 0.0, + "principal_data": 80.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎小姐(该会员已注销)", + "memberMobile": "15914518556(1)", + "id": 2799219557418757, + "account_data": 534.0, + "after": 534.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212622677765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219557271301, + "tenant_member_id": 2799212623660805, + "principal_after": 534.0, + "principal_before": 0.0, + "principal_data": 534.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚倩(该会员已注销)", + "memberMobile": "19186990918(1)", + "id": 2799219552585477, + "account_data": 67.0, + "after": 67.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212619384581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219552487173, + "tenant_member_id": 2799212620384005, + "principal_after": 67.0, + "principal_before": 0.0, + "principal_data": 67.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚倩(该会员已注销)", + "memberMobile": "19186990918(1)", + "id": 2799219546932997, + "account_data": 272.0, + "after": 272.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212619384581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219546834693, + "tenant_member_id": 2799212620384005, + "principal_after": 272.0, + "principal_before": 0.0, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴祖桂", + "memberMobile": "13751870035", + "id": 2799219540543237, + "account_data": 1328.0, + "after": 1328.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212613846789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219540444933, + "tenant_member_id": 2799212615616261, + "principal_after": 1328.0, + "principal_before": 0.0, + "principal_data": 1328.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林伟隆", + "memberMobile": "15914470918", + "id": 2799219535742725, + "account_data": 12.0, + "after": 12.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212610242309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219535644421, + "tenant_member_id": 2799212611487493, + "principal_after": 12.0, + "principal_before": 0.0, + "principal_data": 12.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "13918501580", + "id": 2799219524880133, + "account_data": 24.0, + "after": 24.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2758126375358085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219524765445, + "tenant_member_id": 2799212604098309, + "principal_after": 24.0, + "principal_before": 0.0, + "principal_data": 24.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨先生", + "memberMobile": "13825016496", + "id": 2799219515770629, + "account_data": 536.0, + "after": 536.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212599740165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219515672325, + "tenant_member_id": 2799212600772357, + "principal_after": 536.0, + "principal_before": 0.0, + "principal_data": 536.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 2799219509577477, + "account_data": 779.24, + "after": 779.24, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219509479173, + "tenant_member_id": 2799212596201221, + "principal_after": 779.24, + "principal_before": 0.0, + "principal_data": 779.24 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "董贝", + "memberMobile": "13924260605", + "id": 2799219504449285, + "account_data": 230.0, + "after": 230.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212594857733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219504350981, + "tenant_member_id": 2799212596201221, + "principal_after": 230.0, + "principal_before": 0.0, + "principal_data": 230.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2799219494340357, + "account_data": 10.0, + "after": 81.0, + "before": 71.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 81.0, + "principal_before": 71.0, + "principal_data": 10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢001", + "memberMobile": "13802801029", + "id": 2799219478136581, + "account_data": 820.0, + "after": 820.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212580374277, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219478038277, + "tenant_member_id": 2799212581897989, + "principal_after": 820.0, + "principal_before": 0.0, + "principal_data": 820.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18688307461", + "id": 2799219471648517, + "account_data": 1180.0, + "after": 1180.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212576982789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219471484677, + "tenant_member_id": 2799212577998597, + "principal_after": 1180.0, + "principal_before": 0.0, + "principal_data": 1180.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "廖先生", + "memberMobile": "18760127618", + "id": 2799219461981957, + "account_data": 31.0, + "after": 31.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212565235461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219452626693, + "tenant_member_id": 2799212566890245, + "principal_after": 31.0, + "principal_before": 0.0, + "principal_data": 31.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐浩哲", + "memberMobile": "13627458990", + "id": 2799219457296133, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212569659141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219457197829, + "tenant_member_id": 2799212571199237, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭昊坤", + "memberMobile": "19927601452", + "id": 2799219447891717, + "account_data": 19.0, + "after": 19.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212561090309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219447793413, + "tenant_member_id": 2799212562089733, + "principal_after": 19.0, + "principal_before": 0.0, + "principal_data": 19.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张志杰", + "memberMobile": "13622964261", + "id": 2799219437045509, + "account_data": 18.0, + "after": 18.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212554405637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219436930821, + "tenant_member_id": 2799212555405061, + "principal_after": 18.0, + "principal_before": 0.0, + "principal_data": 18.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽航", + "memberMobile": "13640449661", + "id": 2799219430770437, + "account_data": 317.0, + "after": 317.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212550801157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219430672133, + "tenant_member_id": 2799212551833349, + "principal_after": 317.0, + "principal_before": 0.0, + "principal_data": 317.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽航", + "memberMobile": "13640449661", + "id": 2799219425871621, + "account_data": 228.0, + "after": 228.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212550801157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219425773317, + "tenant_member_id": 2799212551833349, + "principal_after": 228.0, + "principal_before": 0.0, + "principal_data": 228.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18802065255", + "id": 2799219416450821, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212543903493, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219416352517, + "tenant_member_id": 2799212544870149, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘焕民", + "memberMobile": "19878647566", + "id": 2799219293456133, + "account_data": 19.0, + "after": 45.0, + "before": 26.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212514248453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219249153797, + "tenant_member_id": 2799212515231493, + "principal_after": 45.0, + "principal_before": 26.0, + "principal_data": 19.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赖", + "memberMobile": "18602078577", + "id": 2799219288606469, + "account_data": 25.0, + "after": 25.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2719948165041605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219288491781, + "tenant_member_id": 2799212534499077, + "principal_after": 25.0, + "principal_before": 0.0, + "principal_data": 25.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赖", + "memberMobile": "18602078577", + "id": 2799219282249477, + "account_data": 455.0, + "after": 455.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2719948165041605, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219282134789, + "tenant_member_id": 2799212534499077, + "principal_after": 455.0, + "principal_before": 0.0, + "principal_data": 455.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15975400720", + "id": 2799219276793605, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212529026821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219276678917, + "tenant_member_id": 2799212529993477, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13824222411", + "id": 2799219272124165, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212525831941, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219272009477, + "tenant_member_id": 2799212526798597, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王伟东", + "memberMobile": "13715858131", + "id": 2799219265980165, + "account_data": 56.0, + "after": 56.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210126984965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219265881861, + "tenant_member_id": 2799210128115461, + "principal_after": 56.0, + "principal_before": 0.0, + "principal_data": 56.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "18022867410", + "id": 2799219254036229, + "account_data": 28.0, + "after": 28.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1907321504403589, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219253921541, + "tenant_member_id": 2799212518999813, + "principal_after": 28.0, + "principal_before": 0.0, + "principal_data": 28.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘焕民", + "memberMobile": "19878647566", + "id": 2799219249268485, + "account_data": 26.0, + "after": 26.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212514248453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219249153797, + "tenant_member_id": 2799212515231493, + "principal_after": 26.0, + "principal_before": 0.0, + "principal_data": 26.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "伍先生", + "memberMobile": "18676544430", + "id": 2799219244500741, + "account_data": 65.0, + "after": 65.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212510004997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219244386053, + "tenant_member_id": 2799212511004421, + "principal_after": 65.0, + "principal_before": 0.0, + "principal_data": 65.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2799219233130245, + "account_data": 15214.0, + "after": 15214.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219233031941, + "tenant_member_id": 2799207435323141, + "principal_after": 15214.0, + "principal_before": 0.0, + "principal_data": 15214.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "17723083217", + "id": 2799219228493573, + "account_data": 84.0, + "after": 172.0, + "before": 88.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212502845189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219226068741, + "tenant_member_id": 2799212504139525, + "principal_after": 172.0, + "principal_before": 88.0, + "principal_data": 84.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "17723083217", + "id": 2799219226167045, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212502845189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219226068741, + "tenant_member_id": 2799212504139525, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2799219205539589, + "account_data": 1606.03, + "after": 1606.03, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219205424901, + "tenant_member_id": 2799212491392773, + "principal_after": 1606.03, + "principal_before": 0.0, + "principal_data": 1606.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡总", + "memberMobile": "15914338893", + "id": 2799219200395013, + "account_data": 2879.0, + "after": 2879.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212490426117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219200280325, + "tenant_member_id": 2799212491392773, + "principal_after": 2879.0, + "principal_before": 0.0, + "principal_data": 2879.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2799219176261381, + "account_data": 3.0, + "after": 11.0, + "before": 8.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219145770757, + "tenant_member_id": 2799212473452293, + "principal_after": 11.0, + "principal_before": 8.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13725135419", + "id": 2799219173623557, + "account_data": 103.0, + "after": 103.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212483725061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219173525253, + "tenant_member_id": 2799212484740869, + "principal_after": 103.0, + "principal_before": 0.0, + "principal_data": 103.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "严先生", + "memberMobile": "13713996884", + "id": 2799219165726469, + "account_data": 13.0, + "after": 13.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212479416069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219165628165, + "tenant_member_id": 2799212480874245, + "principal_after": 13.0, + "principal_before": 0.0, + "principal_data": 13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "13825157225", + "id": 2799219160418053, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212475680517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219160303365, + "tenant_member_id": 2799212476647173, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "高冷", + "memberMobile": "17820474026", + "id": 2799219145869061, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:53:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212472469253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219145770757, + "tenant_member_id": 2799212473452293, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2799219141166853, + "account_data": 623.98, + "after": 623.98, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:53:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219141068549, + "tenant_member_id": 2799207204882181, + "principal_after": 623.98, + "principal_before": 0.0, + "principal_data": 623.98 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2799219134793477, + "account_data": 3567.0, + "after": 3567.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219134678789, + "tenant_member_id": 2799207204882181, + "principal_after": 3567.0, + "principal_before": 0.0, + "principal_data": 3567.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王生", + "memberMobile": "13826261832", + "id": 2799219129796357, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212469061381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219129681669, + "tenant_member_id": 2799212470077189, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13822452082", + "id": 2799219118655237, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212462327557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219118540549, + "tenant_member_id": 2799212463343365, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张洪星", + "memberMobile": "13261126076", + "id": 2799219113805573, + "account_data": 529.0, + "after": 529.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212458460933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219113232133, + "tenant_member_id": 2799212459853573, + "principal_after": 529.0, + "principal_before": 0.0, + "principal_data": 529.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑", + "memberMobile": "15920499813", + "id": 2799219108382469, + "account_data": 384.0, + "after": 384.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212454070021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219108284165, + "tenant_member_id": 2799212455151365, + "principal_after": 384.0, + "principal_before": 0.0, + "principal_data": 384.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13798033595", + "id": 2799219101796101, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212450662149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219101681413, + "tenant_member_id": 2799212451677957, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐柯(该会员已注销)", + "memberMobile": "13922778722(1)", + "id": 2799219096798981, + "account_data": 160.0, + "after": 160.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212447172357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219096700677, + "tenant_member_id": 2799212448220933, + "principal_after": 160.0, + "principal_before": 0.0, + "principal_data": 160.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈大皮", + "memberMobile": "13922141110", + "id": 2799219091982085, + "account_data": 1118.0, + "after": 1118.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212443797253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219091867397, + "tenant_member_id": 2799212444813061, + "principal_after": 1118.0, + "principal_before": 0.0, + "principal_data": 1118.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "玫瑰", + "memberMobile": "13622226003", + "id": 2799219080054533, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212439815941, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219079956229, + "tenant_member_id": 2799212441274117, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "海哥(该会员已注销)", + "memberMobile": "13913306605(1)", + "id": 2799219074156293, + "account_data": 367.1, + "after": 367.1, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212382291717, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219074057989, + "tenant_member_id": 2799212383258373, + "principal_after": 367.1, + "principal_before": 0.0, + "principal_data": 367.1 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "海哥(该会员已注销)", + "memberMobile": "13913306605(1)", + "id": 2799219069290245, + "account_data": 182.0, + "after": 182.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212382291717, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218937022213, + "tenant_member_id": 2799212383258373, + "principal_after": 182.0, + "principal_before": 0.0, + "principal_data": 182.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "兵哥", + "memberMobile": "18675826586", + "id": 2799219065554693, + "account_data": 452.0, + "after": 452.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212436227845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219065456389, + "tenant_member_id": 2799212437407493, + "principal_after": 452.0, + "principal_before": 0.0, + "principal_data": 452.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "兵哥", + "memberMobile": "18675826586", + "id": 2799219060770565, + "account_data": 56.0, + "after": 56.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212436227845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219060672261, + "tenant_member_id": 2799212437407493, + "principal_after": 56.0, + "principal_before": 0.0, + "principal_data": 56.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2799219056019205, + "account_data": 603.0, + "after": 603.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219055920901, + "tenant_member_id": 2799212430657285, + "principal_after": 603.0, + "principal_before": 0.0, + "principal_data": 603.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13711596995", + "id": 2799219051235077, + "account_data": 241.0, + "after": 241.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212432951045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219051120389, + "tenant_member_id": 2799212433934085, + "principal_after": 241.0, + "principal_before": 0.0, + "principal_data": 241.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13570163507", + "id": 2799219046532869, + "account_data": 1793.0, + "after": 1793.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212429444869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219046434565, + "tenant_member_id": 2799212430657285, + "principal_after": 1793.0, + "principal_before": 0.0, + "principal_data": 1793.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梅", + "memberMobile": "13076775111", + "id": 2799219041765125, + "account_data": 135.0, + "after": 135.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212426118917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219041666821, + "tenant_member_id": 2799212427069189, + "principal_after": 135.0, + "principal_before": 0.0, + "principal_data": 135.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张", + "memberMobile": "15976696034", + "id": 2799219031410437, + "account_data": 4.0, + "after": 59.0, + "before": 55.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212396791557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218966759173, + "tenant_member_id": 2799212397774597, + "principal_after": 59.0, + "principal_before": 55.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗", + "memberMobile": "15876580588", + "id": 2799219022792453, + "account_data": 37.99, + "after": 37.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212415026949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219022677765, + "tenant_member_id": 2799212415977221, + "principal_after": 37.99, + "principal_before": 0.0, + "principal_data": 37.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "尧哥", + "memberMobile": "13802980403", + "id": 2799219012159237, + "account_data": 47.0, + "after": 47.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212418287365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219012060933, + "tenant_member_id": 2799212419319557, + "principal_after": 47.0, + "principal_before": 0.0, + "principal_data": 47.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18363065999", + "id": 2799219001247493, + "account_data": 35.0, + "after": 35.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2659665828021765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219001149189, + "tenant_member_id": 2799212411619077, + "principal_after": 35.0, + "principal_before": 0.0, + "principal_data": 35.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "17373267775", + "id": 2799218996201221, + "account_data": 4254.0, + "after": 4254.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207574734597, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218996037381, + "tenant_member_id": 2799207575848709, + "principal_after": 4254.0, + "principal_before": 0.0, + "principal_data": 4254.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "19941261024", + "id": 2799218971657989, + "account_data": 33.0, + "after": 33.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212400068357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218971559685, + "tenant_member_id": 2799212401084165, + "principal_after": 33.0, + "principal_before": 0.0, + "principal_data": 33.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张", + "memberMobile": "15976696034", + "id": 2799218966873861, + "account_data": 55.0, + "after": 55.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212396791557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218966759173, + "tenant_member_id": 2799212397774597, + "principal_after": 55.0, + "principal_before": 0.0, + "principal_data": 55.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "15360725375", + "id": 2799218957272837, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212389598981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218956945157, + "tenant_member_id": 2799212390598405, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "玫瑰", + "memberMobile": "15812458689", + "id": 2799218951816965, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212385650437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218951702277, + "tenant_member_id": 2799212386649861, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "玫瑰", + "memberMobile": "15812458689", + "id": 2799218946803461, + "account_data": 15.0, + "after": 15.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212385650437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218946705157, + "tenant_member_id": 2799212386649861, + "principal_after": 15.0, + "principal_before": 0.0, + "principal_data": 15.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19927472465", + "id": 2799218941839109, + "account_data": 89.0, + "after": 89.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207275775749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218941724421, + "tenant_member_id": 2799207276775173, + "principal_after": 89.0, + "principal_before": 0.0, + "principal_data": 89.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大大", + "memberMobile": "17620992453", + "id": 2799218932385541, + "account_data": 20.0, + "after": 20.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210155689733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218932287237, + "tenant_member_id": 2799210156705541, + "principal_after": 20.0, + "principal_before": 0.0, + "principal_data": 20.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13929546661", + "id": 2799218927421189, + "account_data": 17.0, + "after": 17.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212379047685, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218927306501, + "tenant_member_id": 2799212380030725, + "principal_after": 17.0, + "principal_before": 0.0, + "principal_data": 17.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王总", + "memberMobile": "13829631455", + "id": 2799218921277189, + "account_data": 77.0, + "after": 77.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212375754501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218921178885, + "tenant_member_id": 2799212376737541, + "principal_after": 77.0, + "principal_before": 0.0, + "principal_data": 77.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生", + "memberMobile": "15690792526", + "id": 2799218915903237, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212371904261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218915804933, + "tenant_member_id": 2799212373444357, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "13533371177(1)", + "id": 2799218905138949, + "account_data": 338.0, + "after": 338.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212367513349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218905040645, + "tenant_member_id": 2799212368545541, + "principal_after": 338.0, + "principal_before": 0.0, + "principal_data": 338.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "13533371177(1)", + "id": 2799218900354821, + "account_data": 30.0, + "after": 30.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212367513349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218900256517, + "tenant_member_id": 2799212368545541, + "principal_after": 30.0, + "principal_before": 0.0, + "principal_data": 30.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林富华(该会员已注销)", + "memberMobile": "13602236240(1)", + "id": 2799218895603461, + "account_data": 928.0, + "after": 928.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212363990789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218895505157, + "tenant_member_id": 2799212365022981, + "principal_after": 928.0, + "principal_before": 0.0, + "principal_data": 928.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "朱劲伟(该会员已注销)", + "memberMobile": "13710314829(1)", + "id": 2799218879629061, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212352620293, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218879530757, + "tenant_member_id": 2799212354193157, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "18475130305", + "id": 2799218867455749, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212347688709, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218867341061, + "tenant_member_id": 2799212349277957, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2799218862786309, + "account_data": 7276.0, + "after": 7276.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218862688005, + "tenant_member_id": 2799207287523077, + "principal_after": 7276.0, + "principal_before": 0.0, + "principal_data": 7276.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "18620041921", + "id": 2799218857608965, + "account_data": 312.99, + "after": 312.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212344133381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218857494277, + "tenant_member_id": 2799212345100037, + "principal_after": 312.99, + "principal_before": 0.0, + "principal_data": 312.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "18620041921", + "id": 2799218852742917, + "account_data": 14.0, + "after": 14.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212344133381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218852628229, + "tenant_member_id": 2799212345100037, + "principal_after": 14.0, + "principal_before": 0.0, + "principal_data": 14.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "向何昕", + "memberMobile": "13416347479", + "id": 2799218838636293, + "account_data": 265.0, + "after": 265.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212336023301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218838537989, + "tenant_member_id": 2799212337776389, + "principal_after": 265.0, + "principal_before": 0.0, + "principal_data": 265.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "向何昕", + "memberMobile": "13416347479", + "id": 2799218833917701, + "account_data": 615.0, + "after": 615.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212336023301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218833819397, + "tenant_member_id": 2799212337776389, + "principal_after": 615.0, + "principal_before": 0.0, + "principal_data": 615.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "13066365960", + "id": 2799218829100805, + "account_data": 509.0, + "after": 509.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212332582661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218828969733, + "tenant_member_id": 2799212333647621, + "principal_after": 509.0, + "principal_before": 0.0, + "principal_data": 509.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13660059922", + "id": 2799218823022341, + "account_data": 386.0, + "after": 386.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210238428933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218822924037, + "tenant_member_id": 2799210239444741, + "principal_after": 386.0, + "principal_before": 0.0, + "principal_data": 386.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13660059922", + "id": 2799218817468165, + "account_data": 124.0, + "after": 124.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210238428933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218817369861, + "tenant_member_id": 2799210239444741, + "principal_after": 124.0, + "principal_before": 0.0, + "principal_data": 124.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘文浩", + "memberMobile": "18122747919", + "id": 2799218803083013, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210231613189, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218802968325, + "tenant_member_id": 2799210232563461, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13926475708", + "id": 2799218793809669, + "account_data": 18.0, + "after": 18.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210228418309, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218793711365, + "tenant_member_id": 2799210229384965, + "principal_after": 18.0, + "principal_before": 0.0, + "principal_data": 18.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2799218783504133, + "account_data": 71.0, + "after": 71.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218783405829, + "tenant_member_id": 2799207359858437, + "principal_after": 71.0, + "principal_before": 0.0, + "principal_data": 71.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2799218773133061, + "account_data": 814.0, + "after": 814.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218773034757, + "tenant_member_id": 2799209806071557, + "principal_after": 814.0, + "principal_before": 0.0, + "principal_data": 814.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "15812467207", + "id": 2799218738710277, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210215032581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218738611973, + "tenant_member_id": 2799210216032005, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "卢女士", + "memberMobile": "13826111663", + "id": 2799218733942533, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210211739397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218733844229, + "tenant_member_id": 2799210212755205, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13129853032", + "id": 2799218717935365, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210200975109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218717837061, + "tenant_member_id": 2799210201974533, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生(该会员已注销)", + "memberMobile": "13724039514(1)", + "id": 2799218687133445, + "account_data": 115.0, + "after": 115.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210186573573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218687035141, + "tenant_member_id": 2799210187654917, + "principal_after": 115.0, + "principal_before": 0.0, + "principal_data": 115.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生(该会员已注销)", + "memberMobile": "13724039514(1)", + "id": 2799218682316549, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210186573573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218682201861, + "tenant_member_id": 2799210187654917, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王总", + "memberMobile": "15510107335", + "id": 2799218672486149, + "account_data": 5770.0, + "after": 5770.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207427376901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218672387845, + "tenant_member_id": 2799207428409093, + "principal_after": 5770.0, + "principal_before": 0.0, + "principal_data": 5770.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莫", + "memberMobile": "13827141959", + "id": 2799218660017925, + "account_data": 11.0, + "after": 11.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210183280389, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218659903237, + "tenant_member_id": 2799210184230661, + "principal_after": 11.0, + "principal_before": 0.0, + "principal_data": 11.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾先生", + "memberMobile": "13316091235", + "id": 2799218655168261, + "account_data": 558.0, + "after": 558.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2729912915068485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218655053573, + "tenant_member_id": 2799210181019397, + "principal_after": 558.0, + "principal_before": 0.0, + "principal_data": 558.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何先生", + "memberMobile": "15915828843", + "id": 2799218640291589, + "account_data": 589.03, + "after": 589.03, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210173564677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218640176901, + "tenant_member_id": 2799210174564101, + "principal_after": 589.03, + "principal_before": 0.0, + "principal_data": 589.03 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何先生", + "memberMobile": "15915828843", + "id": 2799218635278085, + "account_data": 486.0, + "after": 486.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210173564677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218635163397, + "tenant_member_id": 2799210174564101, + "principal_after": 486.0, + "principal_before": 0.0, + "principal_data": 486.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13926117295(1)", + "id": 2799218630412037, + "account_data": 166.0, + "after": 166.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210169681669, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218630313733, + "tenant_member_id": 2799210171156229, + "principal_after": 166.0, + "principal_before": 0.0, + "principal_data": 166.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "秦(该会员已注销)", + "memberMobile": "13924118066(1)", + "id": 2799218625382149, + "account_data": 1666.0, + "after": 1666.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210166142725, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218625283845, + "tenant_member_id": 2799210167289605, + "principal_after": 1666.0, + "principal_before": 0.0, + "principal_data": 1666.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "秦(该会员已注销)", + "memberMobile": "13924118066(1)", + "id": 2799218620598021, + "account_data": 482.0, + "after": 482.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210166142725, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218620483333, + "tenant_member_id": 2799210167289605, + "principal_after": 482.0, + "principal_before": 0.0, + "principal_data": 482.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨先生", + "memberMobile": "13826414423", + "id": 2799218615813893, + "account_data": 6.0, + "after": 6.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210162423557, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218615617285, + "tenant_member_id": 2799210163455749, + "principal_after": 6.0, + "principal_before": 0.0, + "principal_data": 6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大大", + "memberMobile": "17620992453", + "id": 2799218605115141, + "account_data": 1.95, + "after": 1.95, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210155689733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218605000453, + "tenant_member_id": 2799210156705541, + "principal_after": 1.95, + "principal_before": 0.0, + "principal_data": 1.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2799218599511813, + "account_data": 623.0, + "after": 623.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 623.0, + "principal_before": 0.0, + "principal_data": 623.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邱先生", + "memberMobile": "13660627468", + "id": 2799218593629957, + "account_data": 29.99, + "after": 29.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2664627772525381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218593515269, + "tenant_member_id": 2799210149791493, + "principal_after": 29.99, + "principal_before": 0.0, + "principal_data": 29.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邱先生", + "memberMobile": "13660627468", + "id": 2799218586978053, + "account_data": 67.0, + "after": 67.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2664627772525381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218586879749, + "tenant_member_id": 2799210149791493, + "principal_after": 67.0, + "principal_before": 0.0, + "principal_data": 67.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "18926202282", + "id": 2799218580096773, + "account_data": 220.0, + "after": 220.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210144040709, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218579998469, + "tenant_member_id": 2799210145351429, + "principal_after": 220.0, + "principal_before": 0.0, + "principal_data": 220.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "13711656172", + "id": 2799218558519045, + "account_data": 298.0, + "after": 298.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210135602949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218558420741, + "tenant_member_id": 2799210136798981, + "principal_after": 298.0, + "principal_before": 0.0, + "principal_data": 298.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2799218552948485, + "account_data": 83.0, + "after": 83.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 83.0, + "principal_before": 0.0, + "principal_data": 83.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生(该会员已注销)", + "memberMobile": "13824473185(1)", + "id": 2799218435950341, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210131179269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218435835653, + "tenant_member_id": 2799210132571909, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13580403100", + "id": 2799218431100677, + "account_data": 228.0, + "after": 228.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210119825157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218431002373, + "tenant_member_id": 2799210120791813, + "principal_after": 228.0, + "principal_before": 0.0, + "principal_data": 228.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王伟东", + "memberMobile": "13715858131", + "id": 2799218425464581, + "account_data": 300.0, + "after": 300.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210126984965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218425267973, + "tenant_member_id": 2799210128115461, + "principal_after": 300.0, + "principal_before": 0.0, + "principal_data": 300.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "18688881606", + "id": 2799218420664069, + "account_data": 432.0, + "after": 432.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210123085573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218420565765, + "tenant_member_id": 2799210124101381, + "principal_after": 432.0, + "principal_before": 0.0, + "principal_data": 432.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13580403100", + "id": 2799218415798021, + "account_data": 425.0, + "after": 425.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210119825157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218415683333, + "tenant_member_id": 2799210120791813, + "principal_after": 425.0, + "principal_before": 0.0, + "principal_data": 425.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莫先生", + "memberMobile": "13922662728", + "id": 2799218410784517, + "account_data": 1045.0, + "after": 1045.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210116466437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218410686213, + "tenant_member_id": 2799210117531397, + "principal_after": 1045.0, + "principal_before": 0.0, + "principal_data": 1045.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生(该会员已注销)", + "memberMobile": "15018499467(1)", + "id": 2799218390566661, + "account_data": 117.0, + "after": 117.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210105784069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218390468357, + "tenant_member_id": 2799210106767109, + "principal_after": 117.0, + "principal_before": 0.0, + "principal_data": 117.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑先生(该会员已注销)", + "memberMobile": "15018499467(1)", + "id": 2799218385684229, + "account_data": 69.0, + "after": 69.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210105784069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218385569541, + "tenant_member_id": 2799210106767109, + "principal_after": 69.0, + "principal_before": 0.0, + "principal_data": 69.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13802778013", + "id": 2799218375214853, + "account_data": 924.0, + "after": 924.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210102376197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218375100165, + "tenant_member_id": 2799210103392005, + "principal_after": 924.0, + "principal_before": 0.0, + "principal_data": 924.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘哥", + "memberMobile": "13527860020", + "id": 2799218344478469, + "account_data": 479.0, + "after": 479.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210083469061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218344363781, + "tenant_member_id": 2799210084452101, + "principal_after": 479.0, + "principal_before": 0.0, + "principal_data": 479.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "莫先生", + "memberMobile": "13826193875", + "id": 2799218324047621, + "account_data": 87.0, + "after": 87.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210076817157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218323949317, + "tenant_member_id": 2799210077849349, + "principal_after": 87.0, + "principal_before": 0.0, + "principal_data": 87.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "18320635652", + "id": 2799218313103109, + "account_data": 107.0, + "after": 107.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210071492357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218313004805, + "tenant_member_id": 2799210073196293, + "principal_after": 107.0, + "principal_before": 0.0, + "principal_data": 107.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴", + "memberMobile": "13158103451", + "id": 2799218307139333, + "account_data": 138.0, + "after": 138.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210067609349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218307024645, + "tenant_member_id": 2799210068641541, + "principal_after": 138.0, + "principal_before": 0.0, + "principal_data": 138.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13560043337", + "id": 2799218294654725, + "account_data": 36.0, + "after": 36.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210020603653, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218294540037, + "tenant_member_id": 2799210021652229, + "principal_after": 36.0, + "principal_before": 0.0, + "principal_data": 36.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪先生", + "memberMobile": "13925126339", + "id": 2799218290001669, + "account_data": 247.0, + "after": 247.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207286507269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218289641221, + "tenant_member_id": 2799207287523077, + "principal_after": 247.0, + "principal_before": 0.0, + "principal_data": 247.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小爱", + "memberMobile": "15274655571", + "id": 2799218264835845, + "account_data": 1854.0, + "after": 1854.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207293699845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218264721157, + "tenant_member_id": 2799207294666501, + "principal_after": 1854.0, + "principal_before": 0.0, + "principal_data": 1854.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小黑", + "memberMobile": "15013155789", + "id": 2799218247943941, + "account_data": 25.0, + "after": 25.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210045114117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218247747333, + "tenant_member_id": 2799210046146309, + "principal_after": 25.0, + "principal_before": 0.0, + "principal_data": 25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13922200419", + "id": 2799218243225349, + "account_data": 365.0, + "after": 365.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210048456453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218243110661, + "tenant_member_id": 2799210049521413, + "principal_after": 365.0, + "principal_before": 0.0, + "principal_data": 365.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小黑", + "memberMobile": "15013155789", + "id": 2799218238572293, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210045114117, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218238473989, + "tenant_member_id": 2799210046146309, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小鹿", + "memberMobile": "18270261147", + "id": 2799218229053189, + "account_data": 52.0, + "after": 52.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210041444101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218228938501, + "tenant_member_id": 2799210042443525, + "principal_after": 52.0, + "principal_before": 0.0, + "principal_data": 52.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13450297682", + "id": 2799218222810885, + "account_data": 802.0, + "after": 802.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207373571845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218222696197, + "tenant_member_id": 2799207374751493, + "principal_after": 802.0, + "principal_before": 0.0, + "principal_data": 802.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 2799218218043141, + "account_data": 2840.0, + "after": 2840.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218217944837, + "tenant_member_id": 2799207192626949, + "principal_after": 2840.0, + "principal_before": 0.0, + "principal_data": 2840.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑女士", + "memberMobile": "13556155767", + "id": 2799218194302725, + "account_data": 240.0, + "after": 240.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210028107525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218194188037, + "tenant_member_id": 2799210029057797, + "principal_after": 240.0, + "principal_before": 0.0, + "principal_data": 240.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "欣欣", + "memberMobile": "15113501901", + "id": 2799218189698821, + "account_data": 217.0, + "after": 217.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:52:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210031302405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218189584133, + "tenant_member_id": 2799210032301829, + "principal_after": 217.0, + "principal_before": 0.0, + "principal_data": 217.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郑女士", + "memberMobile": "13556155767", + "id": 2799218184865541, + "account_data": 55.0, + "after": 55.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210028107525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218184767237, + "tenant_member_id": 2799210029057797, + "principal_after": 55.0, + "principal_before": 0.0, + "principal_data": 55.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13450297682", + "id": 2799218180065029, + "account_data": 7571.0, + "after": 7571.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207373571845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218179966725, + "tenant_member_id": 2799207374751493, + "principal_after": 7571.0, + "principal_before": 0.0, + "principal_data": 7571.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13560043337", + "id": 2799218157864709, + "account_data": 44.0, + "after": 44.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:52:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210020603653, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218157750021, + "tenant_member_id": 2799210021652229, + "principal_after": 44.0, + "principal_before": 0.0, + "principal_data": 44.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18826220332(1)", + "id": 2799218153047813, + "account_data": 4133.99, + "after": 4133.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218152933125, + "tenant_member_id": 2799210018309893, + "principal_after": 4133.99, + "principal_before": 0.0, + "principal_data": 4133.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生(该会员已注销)", + "memberMobile": "18826220332(1)", + "id": 2799218148067077, + "account_data": 682.0, + "after": 682.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218147968773, + "tenant_member_id": 2799210018309893, + "principal_after": 682.0, + "principal_before": 0.0, + "principal_data": 682.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13829723760", + "id": 2799218137007877, + "account_data": 6017.0, + "after": 6905.0, + "before": 888.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2445488539160133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217284204293, + "tenant_member_id": 2799209690990341, + "principal_after": 6905.0, + "principal_before": 888.0, + "principal_data": 6017.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程允立", + "memberMobile": "13503045590", + "id": 2799218134468357, + "account_data": 2027.0, + "after": 2027.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210010199813, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218134370053, + "tenant_member_id": 2799210011215621, + "principal_after": 2027.0, + "principal_before": 0.0, + "principal_data": 2027.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蓝总", + "memberMobile": "13249633733", + "id": 2799218129028869, + "account_data": 63.0, + "after": 63.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2445255494684677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218128930565, + "tenant_member_id": 2799210007807749, + "principal_after": 63.0, + "principal_before": 0.0, + "principal_data": 63.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "18680547501", + "id": 2799218124195589, + "account_data": 63.0, + "after": 63.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210003547909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218124080901, + "tenant_member_id": 2799210004514565, + "principal_after": 63.0, + "principal_before": 0.0, + "principal_data": 63.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "18488883192", + "id": 2799218104944389, + "account_data": 48.0, + "after": 48.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209994929925, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218104846085, + "tenant_member_id": 2799209996142341, + "principal_after": 48.0, + "principal_before": 0.0, + "principal_data": 48.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13360823241", + "id": 2799218100127493, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209990981381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218100029189, + "tenant_member_id": 2799209991964421, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "17665447126", + "id": 2799218090460933, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209983608581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218090362629, + "tenant_member_id": 2799209985263365, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "O先生", + "memberMobile": "19527352790", + "id": 2799218084218629, + "account_data": 61.0, + "after": 61.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209979184901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218084120325, + "tenant_member_id": 2799209980151557, + "principal_after": 61.0, + "principal_before": 0.0, + "principal_data": 61.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2799218079467269, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13727648145", + "id": 2799218073831173, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209972254469, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218073732869, + "tenant_member_id": 2799209973221125, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "温文彬(该会员已注销)", + "memberMobile": "17827954175(1)", + "id": 2799218068358917, + "account_data": 131.0, + "after": 131.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209968830213, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218068260613, + "tenant_member_id": 2799209969829637, + "principal_after": 131.0, + "principal_before": 0.0, + "principal_data": 131.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "徐先生(该会员已注销)", + "memberMobile": "13922330793(1)", + "id": 2799218050615045, + "account_data": 74.99, + "after": 74.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209906374405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218050500357, + "tenant_member_id": 2799209907373829, + "principal_after": 74.99, + "principal_before": 0.0, + "principal_data": 74.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "倩倩", + "memberMobile": "13246456143", + "id": 2799218045519621, + "account_data": 0.08, + "after": 0.08, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209959016197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218033575685, + "tenant_member_id": 2799209959966469, + "principal_after": 0.08, + "principal_before": 0.0, + "principal_data": 0.08 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生(该会员已注销)", + "memberMobile": "13580354091(1)", + "id": 2799218019190533, + "account_data": 90.98, + "after": 90.98, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207587202821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217213589253, + "tenant_member_id": 2799207588464389, + "principal_after": 90.98, + "principal_before": 0.0, + "principal_data": 90.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13826263744", + "id": 2799218016765701, + "account_data": 256.0, + "after": 256.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209955182341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218016651013, + "tenant_member_id": 2799209956755205, + "principal_after": 256.0, + "principal_before": 0.0, + "principal_data": 256.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13826263744", + "id": 2799218012145413, + "account_data": 1322.0, + "after": 1322.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209955182341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218012030725, + "tenant_member_id": 2799209956755205, + "principal_after": 1322.0, + "principal_before": 0.0, + "principal_data": 1322.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "15810968799", + "id": 2799218007148293, + "account_data": 349.09, + "after": 349.09, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209951069957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218007049989, + "tenant_member_id": 2799209952069381, + "principal_after": 349.09, + "principal_before": 0.0, + "principal_data": 349.09 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹", + "memberMobile": "18211536023", + "id": 2799218002069253, + "account_data": 10507.0, + "after": 10507.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207348340485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218001889029, + "tenant_member_id": 2799207349438213, + "principal_after": 10507.0, + "principal_before": 0.0, + "principal_data": 10507.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "15810968799", + "id": 2799217996629765, + "account_data": 93.0, + "after": 93.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209951069957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217996531461, + "tenant_member_id": 2799209952069381, + "principal_after": 93.0, + "principal_before": 0.0, + "principal_data": 93.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "18666026169", + "id": 2799217976674053, + "account_data": 110.0, + "after": 110.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209944205061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217976559365, + "tenant_member_id": 2799209945171717, + "principal_after": 110.0, + "principal_before": 0.0, + "principal_data": 110.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "云朵", + "memberMobile": "13480796244", + "id": 2799217971889925, + "account_data": 1.95, + "after": 1.95, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209847097093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217971791621, + "tenant_member_id": 2799209848096517, + "principal_after": 1.95, + "principal_before": 0.0, + "principal_data": 1.95 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "乔西", + "memberMobile": "15213282732", + "id": 2799217966827269, + "account_data": 324.0, + "after": 324.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207248660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217966728965, + "tenant_member_id": 2799207249676037, + "principal_after": 324.0, + "principal_before": 0.0, + "principal_data": 324.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林振国", + "memberMobile": "15622190471", + "id": 2799217956996869, + "account_data": 0.09, + "after": 0.09, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209937307397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217956800261, + "tenant_member_id": 2799209938274053, + "principal_after": 0.09, + "principal_before": 0.0, + "principal_data": 0.09 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "楚楚(该会员已注销)", + "memberMobile": "13278656529(1)", + "id": 2799217947313925, + "account_data": 221.0, + "after": 221.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209932359429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217947215621, + "tenant_member_id": 2799209933833989, + "principal_after": 221.0, + "principal_before": 0.0, + "principal_data": 221.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "楚楚(该会员已注销)", + "memberMobile": "13278656529(1)", + "id": 2799217942595333, + "account_data": 22.0, + "after": 22.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209932359429, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217942497029, + "tenant_member_id": 2799209933833989, + "principal_after": 22.0, + "principal_before": 0.0, + "principal_data": 22.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郝小姐(该会员已注销)", + "memberMobile": "15989292955(1)", + "id": 2799217937630981, + "account_data": 69.0, + "after": 69.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209927952133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217937516293, + "tenant_member_id": 2799209928935173, + "principal_after": 69.0, + "principal_before": 0.0, + "principal_data": 69.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郝小姐(该会员已注销)", + "memberMobile": "15989292955(1)", + "id": 2799217931077381, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209927952133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217930979077, + "tenant_member_id": 2799209928935173, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "朱先生", + "memberMobile": "18202074772", + "id": 2799217913612037, + "account_data": 13.0, + "after": 13.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209921480453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217913513733, + "tenant_member_id": 2799209922447109, + "principal_after": 13.0, + "principal_before": 0.0, + "principal_data": 13.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贾先生(该会员已注销)", + "memberMobile": "18321567023(1)", + "id": 2799217908811525, + "account_data": 111.0, + "after": 111.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209917155077, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217908713221, + "tenant_member_id": 2799209918301957, + "principal_after": 111.0, + "principal_before": 0.0, + "principal_data": 111.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙先生", + "memberMobile": "13560463191", + "id": 2799217903945477, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209913583365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217903847173, + "tenant_member_id": 2799209914730245, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小路", + "memberMobile": "13070208730", + "id": 2799217898915589, + "account_data": 124.0, + "after": 124.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209909896965, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217898817285, + "tenant_member_id": 2799209910880005, + "principal_after": 124.0, + "principal_before": 0.0, + "principal_data": 124.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "18682013524", + "id": 2799217889036037, + "account_data": 59.0, + "after": 59.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209902016261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217888937733, + "tenant_member_id": 2799209902950149, + "principal_after": 59.0, + "principal_before": 0.0, + "principal_data": 59.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "18682013524", + "id": 2799217883563781, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209902016261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217883465477, + "tenant_member_id": 2799209902950149, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴总", + "memberMobile": "13926078509", + "id": 2799217866327813, + "account_data": 54.0, + "after": 54.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209882420997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217866229509, + "tenant_member_id": 2799209883354885, + "principal_after": 54.0, + "principal_before": 0.0, + "principal_data": 54.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "喜乐", + "memberMobile": "18529180326", + "id": 2799217861412613, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209890006789, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217861314309, + "tenant_member_id": 2799209891464965, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13570346200", + "id": 2799217856415493, + "account_data": 340.0, + "after": 340.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209885599493, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217856300805, + "tenant_member_id": 2799209886631685, + "principal_after": 340.0, + "principal_before": 0.0, + "principal_data": 340.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴总", + "memberMobile": "13926078509", + "id": 2799217851401989, + "account_data": 14.0, + "after": 14.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209882420997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217851188997, + "tenant_member_id": 2799209883354885, + "principal_after": 14.0, + "principal_before": 0.0, + "principal_data": 14.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生", + "memberMobile": "13570370785", + "id": 2799217841604357, + "account_data": 1613.0, + "after": 1613.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209734866693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217841506053, + "tenant_member_id": 2799209735866117, + "principal_after": 1613.0, + "principal_before": 0.0, + "principal_data": 1613.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13535453668", + "id": 2799217834837765, + "account_data": 1.96, + "after": 1.96, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209878079237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217834739461, + "tenant_member_id": 2799209879062277, + "principal_after": 1.96, + "principal_before": 0.0, + "principal_data": 1.96 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13535453668", + "id": 2799217829725957, + "account_data": 81.0, + "after": 81.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209878079237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217829611269, + "tenant_member_id": 2799209879062277, + "principal_after": 81.0, + "principal_before": 0.0, + "principal_data": 81.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吕信宇(该会员已注销)", + "memberMobile": "18928836088(1)", + "id": 2799217815013125, + "account_data": 133.0, + "after": 133.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209869510405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217814914821, + "tenant_member_id": 2799209870984965, + "principal_after": 133.0, + "principal_before": 0.0, + "principal_data": 133.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吕信宇(该会员已注销)", + "memberMobile": "18928836088(1)", + "id": 2799217809803013, + "account_data": 78.0, + "after": 78.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209869510405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217809704709, + "tenant_member_id": 2799209870984965, + "principal_after": 78.0, + "principal_before": 0.0, + "principal_data": 78.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13528306151", + "id": 2799217804084997, + "account_data": 0.99, + "after": 0.99, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209862874885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217803986693, + "tenant_member_id": 2799209863939845, + "principal_after": 0.99, + "principal_before": 0.0, + "principal_data": 0.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "15915850120", + "id": 2799217788176133, + "account_data": 225.0, + "after": 225.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209859254021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217788077829, + "tenant_member_id": 2799209860286213, + "principal_after": 225.0, + "principal_before": 0.0, + "principal_data": 225.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "15915850120", + "id": 2799217781868293, + "account_data": 78.0, + "after": 78.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:37", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209859254021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217781753605, + "tenant_member_id": 2799209860286213, + "principal_after": 78.0, + "principal_before": 0.0, + "principal_data": 78.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18666009266", + "id": 2799217771185925, + "account_data": 7941.0, + "after": 7941.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207312836357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217771071237, + "tenant_member_id": 2799207313884933, + "principal_after": 7941.0, + "principal_before": 0.0, + "principal_data": 7941.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "云朵", + "memberMobile": "13480796244", + "id": 2799217750951685, + "account_data": 79.0, + "after": 79.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209847097093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217750853381, + "tenant_member_id": 2799209848096517, + "principal_after": 79.0, + "principal_before": 0.0, + "principal_data": 79.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "金先生", + "memberMobile": "18993439609", + "id": 2799217746282245, + "account_data": 5099.0, + "after": 5099.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:35", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207195559685, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217746167557, + "tenant_member_id": 2799207196690181, + "principal_after": 5099.0, + "principal_before": 0.0, + "principal_data": 5099.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "13288667755", + "id": 2799217741629189, + "account_data": 710.0, + "after": 710.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209843607301, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217741530885, + "tenant_member_id": 2799209844590341, + "principal_after": 710.0, + "principal_before": 0.0, + "principal_data": 710.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨堃", + "memberMobile": "19588871606", + "id": 2799217729505029, + "account_data": 105.0, + "after": 105.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:34", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209840363269, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217729406725, + "tenant_member_id": 2799209841329925, + "principal_after": 105.0, + "principal_before": 0.0, + "principal_data": 105.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘家乐", + "memberMobile": "17817181630", + "id": 2799217718281989, + "account_data": 6.0, + "after": 6.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209836988165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217718183685, + "tenant_member_id": 2799209838053125, + "principal_after": 6.0, + "principal_before": 0.0, + "principal_data": 6.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13622246825(1)", + "id": 2799217713317637, + "account_data": 160.0, + "after": 160.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209833744133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217713121029, + "tenant_member_id": 2799209834727173, + "principal_after": 160.0, + "principal_before": 0.0, + "principal_data": 160.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "付先生", + "memberMobile": "18823879010", + "id": 2799217708205829, + "account_data": 0.97, + "after": 0.97, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209830008581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217708091141, + "tenant_member_id": 2799209831008005, + "principal_after": 0.97, + "principal_before": 0.0, + "principal_data": 0.97 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "付先生", + "memberMobile": "18823879010", + "id": 2799217703356165, + "account_data": 117.0, + "after": 117.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:32", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209830008581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217703257861, + "tenant_member_id": 2799209831008005, + "principal_after": 117.0, + "principal_before": 0.0, + "principal_data": 117.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "马先生", + "memberMobile": "15550898201", + "id": 2799217690969861, + "account_data": 102.0, + "after": 102.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:31", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209826748165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217690707717, + "tenant_member_id": 2799209827731205, + "principal_after": 102.0, + "principal_before": 0.0, + "principal_data": 102.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "19924725082", + "id": 2799217675060997, + "account_data": 326.0, + "after": 326.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:30", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209819850501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217674962693, + "tenant_member_id": 2799209821177605, + "principal_after": 326.0, + "principal_before": 0.0, + "principal_data": 326.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周总", + "memberMobile": "13922409767", + "id": 2799217572398853, + "account_data": 541.0, + "after": 541.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209816131333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217572300549, + "tenant_member_id": 2799209817212677, + "principal_after": 541.0, + "principal_before": 0.0, + "principal_data": 541.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周总", + "memberMobile": "13922409767", + "id": 2799217566926597, + "account_data": 63.0, + "after": 63.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209816131333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217564911365, + "tenant_member_id": 2799209817212677, + "principal_after": 63.0, + "principal_before": 0.0, + "principal_data": 63.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李圣凯", + "memberMobile": "18507565597", + "id": 2799217556915973, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209812199173, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217556801285, + "tenant_member_id": 2799209813706501, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "咔总", + "memberMobile": "15140422155", + "id": 2799217551984389, + "account_data": 1291.0, + "after": 1291.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209808709381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217551886085, + "tenant_member_id": 2799209809741573, + "principal_after": 1291.0, + "principal_before": 0.0, + "principal_data": 1291.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈德韩", + "memberMobile": "13431017864", + "id": 2799217540499205, + "account_data": 95.0, + "after": 95.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209804416773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217540400901, + "tenant_member_id": 2799209806071557, + "principal_after": 95.0, + "principal_before": 0.0, + "principal_data": 95.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "汪总", + "memberMobile": "18988799728", + "id": 2799217535633157, + "account_data": 1955.0, + "after": 1955.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209801156357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217535502085, + "tenant_member_id": 2799209802123013, + "principal_after": 1955.0, + "principal_before": 0.0, + "principal_data": 1955.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2799217522296581, + "account_data": 510.0, + "after": 510.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217522181893, + "tenant_member_id": 2799209794651909, + "principal_after": 510.0, + "principal_before": 0.0, + "principal_data": 510.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "魏先生", + "memberMobile": "13726266862", + "id": 2799217517037317, + "account_data": 793.0, + "after": 793.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209793701637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217516922629, + "tenant_member_id": 2799209794651909, + "principal_after": 793.0, + "principal_before": 0.0, + "principal_data": 793.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "乔西", + "memberMobile": "15213282732", + "id": 2799217505896197, + "account_data": 1501.0, + "after": 1501.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207248660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217505781509, + "tenant_member_id": 2799207249676037, + "principal_after": 1501.0, + "principal_before": 0.0, + "principal_data": 1501.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "18826454705", + "id": 2799217500948229, + "account_data": 300.0, + "after": 300.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209785853701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217500849925, + "tenant_member_id": 2799209786836741, + "principal_after": 300.0, + "principal_before": 0.0, + "principal_data": 300.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗顺安", + "memberMobile": "15625382653", + "id": 2799217486890757, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209779267333, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217486776069, + "tenant_member_id": 2799209780266757, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13922289222", + "id": 2799217471178501, + "account_data": 1687.0, + "after": 1687.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209767814917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217471063813, + "tenant_member_id": 2799209768765189, + "principal_after": 1687.0, + "principal_before": 0.0, + "principal_data": 1687.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "哈哈", + "memberMobile": "19042713952", + "id": 2799217466197765, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209763768069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217466083077, + "tenant_member_id": 2799209765291781, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "哈哈", + "memberMobile": "19042713952", + "id": 2799217460643589, + "account_data": 3161.0, + "after": 3161.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209763768069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217460528901, + "tenant_member_id": 2799209765291781, + "principal_after": 3161.0, + "principal_before": 0.0, + "principal_data": 3161.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "哈哈", + "memberMobile": "19042713952", + "id": 2799217455924997, + "account_data": 1.98, + "after": 1.98, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:51:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209763768069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217455826693, + "tenant_member_id": 2799209765291781, + "principal_after": 1.98, + "principal_before": 0.0, + "principal_data": 1.98 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2799217445029637, + "account_data": 8370.0, + "after": 8370.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8370.0, + "principal_before": 0.0, + "principal_data": 8370.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2799217438394117, + "account_data": 15000.0, + "after": 15000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217438295813, + "tenant_member_id": 2799207522600709, + "principal_after": 15000.0, + "principal_before": 0.0, + "principal_data": 15000.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄江涛", + "memberMobile": "13632205228", + "id": 2799217433528069, + "account_data": 316.0, + "after": 316.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209756313349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217433413381, + "tenant_member_id": 2799209757722373, + "principal_after": 316.0, + "principal_before": 0.0, + "principal_data": 316.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 2799217427597061, + "account_data": 0.98, + "after": 0.98, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217427498757, + "tenant_member_id": 2799209753708293, + "principal_after": 0.98, + "principal_before": 0.0, + "principal_data": 0.98 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡总", + "memberMobile": "13385143091", + "id": 2799217421027077, + "account_data": 1148.0, + "after": 1148.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209752512261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217420912389, + "tenant_member_id": 2799209753708293, + "principal_after": 1148.0, + "principal_before": 0.0, + "principal_data": 1148.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王姐", + "memberMobile": "15814888819", + "id": 2799217411606277, + "account_data": 25.0, + "after": 25.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209746269957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217411491589, + "tenant_member_id": 2799209749939973, + "principal_after": 25.0, + "principal_before": 0.0, + "principal_data": 25.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小梁", + "memberMobile": "15768062364", + "id": 2799217406740229, + "account_data": 105.0, + "after": 105.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209742255877, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217406625541, + "tenant_member_id": 2799209743402757, + "principal_after": 105.0, + "principal_before": 0.0, + "principal_data": 105.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2799217400301317, + "account_data": 3090.0, + "after": 3090.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217400186629, + "tenant_member_id": 2799209739667205, + "principal_after": 3090.0, + "principal_before": 0.0, + "principal_data": 3090.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2799217394763525, + "account_data": 4772.0, + "after": 4772.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217394665221, + "tenant_member_id": 2799209739667205, + "principal_after": 4772.0, + "principal_before": 0.0, + "principal_data": 4772.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赵总(该会员已注销)", + "memberMobile": "18902257510(1)", + "id": 2799217389864709, + "account_data": 750.0, + "after": 750.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:51:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209738258181, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217389733637, + "tenant_member_id": 2799209739667205, + "principal_after": 750.0, + "principal_before": 0.0, + "principal_data": 750.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "唐先生", + "memberMobile": "13570370785", + "id": 2799217383147269, + "account_data": 416.98, + "after": 416.98, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:51:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209734866693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217383048965, + "tenant_member_id": 2799209735866117, + "principal_after": 416.98, + "principal_before": 0.0, + "principal_data": 416.98 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗辉", + "memberMobile": "15710888579", + "id": 2799217376511749, + "account_data": 10.0, + "after": 10.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209731458821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217376397061, + "tenant_member_id": 2799209732425477, + "principal_after": 10.0, + "principal_before": 0.0, + "principal_data": 10.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹总", + "memberMobile": "13113992014", + "id": 2799217362323205, + "account_data": 53.0, + "after": 53.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2652161043613957, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217362208517, + "tenant_member_id": 2799209728313093, + "principal_after": 53.0, + "principal_before": 0.0, + "principal_data": 53.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "G", + "memberMobile": "13413936879", + "id": 2799217357178629, + "account_data": 7383.0, + "after": 7383.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207503218437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217357080325, + "tenant_member_id": 2799207504381701, + "principal_after": 7383.0, + "principal_before": 0.0, + "principal_data": 7383.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13893350921", + "id": 2799217345513221, + "account_data": 86.0, + "after": 86.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2698977562052101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217345398533, + "tenant_member_id": 2799209721169669, + "principal_after": 86.0, + "principal_before": 0.0, + "principal_data": 86.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13538663026", + "id": 2799217340581637, + "account_data": 576.0, + "after": 976.0, + "before": 400.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209712518917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217328768773, + "tenant_member_id": 2799209713501957, + "principal_after": 976.0, + "principal_before": 400.0, + "principal_data": 576.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15019187372", + "id": 2799217338255109, + "account_data": 200.0, + "after": 222.0, + "before": 22.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207481001733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216982263557, + "tenant_member_id": 2799207482017541, + "principal_after": 222.0, + "principal_before": 22.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "许先生", + "memberMobile": "18023941277", + "id": 2799217335682821, + "account_data": 97.0, + "after": 97.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209716434693, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217335584517, + "tenant_member_id": 2799209717794565, + "principal_after": 97.0, + "principal_before": 0.0, + "principal_data": 97.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生", + "memberMobile": "13538663026", + "id": 2799217328899845, + "account_data": 400.0, + "after": 400.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209712518917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217328768773, + "tenant_member_id": 2799209713501957, + "principal_after": 400.0, + "principal_before": 0.0, + "principal_data": 400.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何", + "memberMobile": "17787075546", + "id": 2799217323099909, + "account_data": 87.0, + "after": 87.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209707996933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217323001605, + "tenant_member_id": 2799209709405957, + "principal_after": 87.0, + "principal_before": 0.0, + "principal_data": 87.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨", + "memberMobile": "18680285859", + "id": 2799217316857605, + "account_data": 7.0, + "after": 7.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209704113925, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217316742917, + "tenant_member_id": 2799209705309957, + "principal_after": 7.0, + "principal_before": 0.0, + "principal_data": 7.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚先生", + "memberMobile": "13922222259", + "id": 2799217312040709, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209700574981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217311926021, + "tenant_member_id": 2799209701574405, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "晖哥", + "memberMobile": "18565007999", + "id": 2799217307191045, + "account_data": 4.0, + "after": 4.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209696790277, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217307027205, + "tenant_member_id": 2799209698232069, + "principal_after": 4.0, + "principal_before": 0.0, + "principal_data": 4.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "晖哥", + "memberMobile": "18565007999", + "id": 2799217301538565, + "account_data": 442.0, + "after": 442.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209696790277, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217301440261, + "tenant_member_id": 2799209698232069, + "principal_after": 442.0, + "principal_before": 0.0, + "principal_data": 442.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "晖哥", + "memberMobile": "18565007999", + "id": 2799217295574789, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:51:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209696790277, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217295460101, + "tenant_member_id": 2799209698232069, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "易先生", + "memberMobile": "18689418682", + "id": 2799217290675973, + "account_data": 1162.0, + "after": 1162.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209693349637, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217290577669, + "tenant_member_id": 2799209694299909, + "principal_after": 1162.0, + "principal_before": 0.0, + "principal_data": 1162.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "胡先生", + "memberMobile": "13829723760", + "id": 2799217284302597, + "account_data": 888.0, + "after": 888.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2445488539160133, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217284204293, + "tenant_member_id": 2799209690990341, + "principal_after": 888.0, + "principal_before": 0.0, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生", + "memberMobile": "13670938812", + "id": 2799217278420741, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209686484741, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217278322437, + "tenant_member_id": 2799209687779077, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2799217260791557, + "account_data": 64.0, + "after": 64.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 64.0, + "principal_before": 0.0, + "principal_data": 64.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2799217255974661, + "account_data": 1901.0, + "after": 1901.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217255859973, + "tenant_member_id": 2799207599212293, + "principal_after": 1901.0, + "principal_before": 0.0, + "principal_data": 1901.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "闪先生", + "memberMobile": "15692016776", + "id": 2799217243080453, + "account_data": 1323.0, + "after": 1323.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207594739461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217242965765, + "tenant_member_id": 2799207595755269, + "principal_after": 1323.0, + "principal_before": 0.0, + "principal_data": 1323.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "闪先生", + "memberMobile": "15692016776", + "id": 2799217236805381, + "account_data": 41.0, + "after": 41.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:51:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207594739461, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217236690693, + "tenant_member_id": 2799207595755269, + "principal_after": 41.0, + "principal_before": 0.0, + "principal_data": 41.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2799217232021253, + "account_data": 8291.0, + "after": 8291.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217231906565, + "tenant_member_id": 2799207406946053, + "principal_after": 8291.0, + "principal_before": 0.0, + "principal_data": 8291.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "18898608626", + "id": 2799217227155205, + "account_data": 440.0, + "after": 440.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207590971141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217227024133, + "tenant_member_id": 2799207592363781, + "principal_after": 440.0, + "principal_before": 0.0, + "principal_data": 440.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2799217220962053, + "account_data": 22928.0, + "after": 22928.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217220863749, + "tenant_member_id": 2799207406946053, + "principal_after": 22928.0, + "principal_before": 0.0, + "principal_data": 22928.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2799217216227077, + "account_data": 29.0, + "after": 1892.0, + "before": 1863.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217202251525, + "tenant_member_id": 2799207378798341, + "principal_after": 1892.0, + "principal_before": 1863.0, + "principal_data": 29.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生(该会员已注销)", + "memberMobile": "13580354091(1)", + "id": 2799217209001733, + "account_data": 9.0, + "after": 9.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207587202821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217208887045, + "tenant_member_id": 2799207588464389, + "principal_after": 9.0, + "principal_before": 0.0, + "principal_data": 9.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2799217202366213, + "account_data": 1863.0, + "after": 1863.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217202251525, + "tenant_member_id": 2799207378798341, + "principal_after": 1863.0, + "principal_before": 0.0, + "principal_data": 1863.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "廖先生", + "memberMobile": "18826059660", + "id": 2799217192781573, + "account_data": 411.0, + "after": 411.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:51:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207583401733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217192666885, + "tenant_member_id": 2799207584679685, + "principal_after": 411.0, + "principal_before": 0.0, + "principal_data": 411.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "廖先生", + "memberMobile": "18826059660", + "id": 2799217187522309, + "account_data": 676.0, + "after": 676.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207583401733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217187407621, + "tenant_member_id": 2799207584679685, + "principal_after": 676.0, + "principal_before": 0.0, + "principal_data": 676.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎哥", + "memberMobile": "13360016449", + "id": 2799217176299269, + "account_data": 4743.0, + "after": 4743.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:51:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2497622861369797, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217176200965, + "tenant_member_id": 2799207421495045, + "principal_after": 4743.0, + "principal_before": 0.0, + "principal_data": 4743.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13418054500(1)", + "id": 2799217160128261, + "account_data": 806.0, + "after": 806.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207566558981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217160013573, + "tenant_member_id": 2799207567984389, + "principal_after": 806.0, + "principal_before": 0.0, + "principal_data": 806.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生(该会员已注销)", + "memberMobile": "13418054500(1)", + "id": 2799217155360517, + "account_data": 640.0, + "after": 640.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207566558981, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217155245829, + "tenant_member_id": 2799207567984389, + "principal_after": 640.0, + "principal_before": 0.0, + "principal_data": 640.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杜先生", + "memberMobile": "15603052038", + "id": 2799217148806917, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207563314949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217148675845, + "tenant_member_id": 2799207564281605, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13060905531", + "id": 2799217143973637, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207559579397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217143875333, + "tenant_member_id": 2799207561070341, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "13060905531", + "id": 2799217139222277, + "account_data": 6.0, + "after": 6.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207559579397, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217139107589, + "tenant_member_id": 2799207561070341, + "principal_after": 6.0, + "principal_before": 0.0, + "principal_data": 6.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2799217134274309, + "account_data": 1860.0, + "after": 1860.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217134159621, + "tenant_member_id": 2799207256426245, + "principal_after": 1860.0, + "principal_before": 0.0, + "principal_data": 1860.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "聂先生", + "memberMobile": "13168500060", + "id": 2799217127720709, + "account_data": 7.0, + "after": 7.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207555499781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217127622405, + "tenant_member_id": 2799207556597509, + "principal_after": 7.0, + "principal_before": 0.0, + "principal_data": 7.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "聂先生", + "memberMobile": "13168500060", + "id": 2799217122739973, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207555499781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217122641669, + "tenant_member_id": 2799207556597509, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "孙启明", + "memberMobile": "13794306325", + "id": 2799217117005573, + "account_data": 826.0, + "after": 826.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207551502085, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217116792581, + "tenant_member_id": 2799207553025797, + "principal_after": 826.0, + "principal_before": 0.0, + "principal_data": 826.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "15002007141", + "id": 2799217112123141, + "account_data": 330.0, + "after": 330.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207548077829, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217111779077, + "tenant_member_id": 2799207549110021, + "principal_after": 330.0, + "principal_before": 0.0, + "principal_data": 330.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2799217107257093, + "account_data": 109.0, + "after": 109.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 109.0, + "principal_before": 0.0, + "principal_data": 109.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘璇", + "memberMobile": "15202059471", + "id": 2799217097443077, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207535757061, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217097312005, + "tenant_member_id": 2799207536920325, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "大G", + "memberMobile": "18680114598", + "id": 2799217086646021, + "account_data": 1521.0, + "after": 1521.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207532316421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217086531333, + "tenant_member_id": 2799207533332229, + "principal_after": 1521.0, + "principal_before": 0.0, + "principal_data": 1521.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "向生(该会员已注销)", + "memberMobile": "13751700258(1)", + "id": 2799217081911045, + "account_data": 534.0, + "after": 534.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207528236805, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217081796357, + "tenant_member_id": 2799207529236229, + "principal_after": 534.0, + "principal_before": 0.0, + "principal_data": 534.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冼先生(该会员已注销)", + "memberMobile": "18688226877(1)", + "id": 2799217069868805, + "account_data": 361.0, + "after": 361.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207524927237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217069754117, + "tenant_member_id": 2799207525926661, + "principal_after": 361.0, + "principal_before": 0.0, + "principal_data": 361.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冼先生(该会员已注销)", + "memberMobile": "18688226877(1)", + "id": 2799217065133829, + "account_data": 904.0, + "after": 904.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207524927237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217065035525, + "tenant_member_id": 2799207525926661, + "principal_after": 904.0, + "principal_before": 0.0, + "principal_data": 904.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2799217060333317, + "account_data": 16.0, + "after": 16.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217060235013, + "tenant_member_id": 2799207522600709, + "principal_after": 16.0, + "principal_before": 0.0, + "principal_data": 16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2799217053878021, + "account_data": 377.0, + "after": 377.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217053779717, + "tenant_member_id": 2799207515637509, + "principal_after": 377.0, + "principal_before": 0.0, + "principal_data": 377.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2799217048962821, + "account_data": 199.0, + "after": 199.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 199.0, + "principal_before": 0.0, + "principal_data": 199.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "揭阳名嘴", + "memberMobile": "15089122222", + "id": 2799217043408645, + "account_data": 145.0, + "after": 145.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207514621701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217043293957, + "tenant_member_id": 2799207515637509, + "principal_after": 145.0, + "principal_before": 0.0, + "principal_data": 145.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王浩", + "memberMobile": "15016522288", + "id": 2799217038608133, + "account_data": 314.0, + "after": 314.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207462684421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217038493445, + "tenant_member_id": 2799207463683845, + "principal_after": 314.0, + "principal_before": 0.0, + "principal_data": 314.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈", + "memberMobile": "18026382150", + "id": 2799217033545477, + "account_data": 286.0, + "after": 286.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207510443781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217033447173, + "tenant_member_id": 2799207511639813, + "principal_after": 286.0, + "principal_before": 0.0, + "principal_data": 286.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15975407202", + "id": 2799217028826885, + "account_data": 68.0, + "after": 68.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207506773765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217028728581, + "tenant_member_id": 2799207508018949, + "principal_after": 68.0, + "principal_before": 0.0, + "principal_data": 68.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宪", + "memberMobile": "15013075696", + "id": 2799217019373317, + "account_data": 183.0, + "after": 183.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207499433733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217019258629, + "tenant_member_id": 2799207500564229, + "principal_after": 183.0, + "principal_before": 0.0, + "principal_data": 183.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陆友", + "memberMobile": "13425359418", + "id": 2799217013573381, + "account_data": 432.0, + "after": 432.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2446961238853253, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217013458693, + "tenant_member_id": 2799207496320773, + "principal_after": 432.0, + "principal_before": 0.0, + "principal_data": 432.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小陶", + "memberMobile": "19898559848", + "id": 2799217007200005, + "account_data": 54.0, + "after": 54.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207491536645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217007085317, + "tenant_member_id": 2799207492650757, + "principal_after": 54.0, + "principal_before": 0.0, + "principal_data": 54.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "13826167578", + "id": 2799216993142533, + "account_data": 76.0, + "after": 76.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207484294917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216993044229, + "tenant_member_id": 2799207485687557, + "principal_after": 76.0, + "principal_before": 0.0, + "principal_data": 76.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "15019187372", + "id": 2799216982378245, + "account_data": 22.0, + "after": 22.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207481001733, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216982263557, + "tenant_member_id": 2799207482017541, + "principal_after": 22.0, + "principal_before": 0.0, + "principal_data": 22.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纯纯", + "memberMobile": "18934877417", + "id": 2799216977561349, + "account_data": 88.0, + "after": 88.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207477561093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216977463045, + "tenant_member_id": 2799207478544133, + "principal_after": 88.0, + "principal_before": 0.0, + "principal_data": 88.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "都先生(该会员已注销)", + "memberMobile": "13811127796(1)", + "id": 2799216971040517, + "account_data": 314.0, + "after": 314.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216970942213, + "tenant_member_id": 2799207475218181, + "principal_after": 314.0, + "principal_before": 0.0, + "principal_data": 314.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "都先生(该会员已注销)", + "memberMobile": "13811127796(1)", + "id": 2799216964601605, + "account_data": 119.0, + "after": 119.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207474251525, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216964503301, + "tenant_member_id": 2799207475218181, + "principal_after": 119.0, + "principal_before": 0.0, + "principal_data": 119.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赖先生", + "memberMobile": "15916836735", + "id": 2799216959997701, + "account_data": 16.0, + "after": 99.0, + "before": 83.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207172458245, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216074540805, + "tenant_member_id": 2799207173424901, + "principal_after": 99.0, + "principal_before": 83.0, + "principal_data": 16.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2799216956671749, + "account_data": 3037.0, + "after": 3037.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216956540677, + "tenant_member_id": 2799207338198789, + "principal_after": 3037.0, + "principal_before": 0.0, + "principal_data": 3037.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2799216951166725, + "account_data": 11837.0, + "after": 11837.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216951052037, + "tenant_member_id": 2799207338198789, + "principal_after": 11837.0, + "principal_before": 0.0, + "principal_data": 11837.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17724510026", + "id": 2799216946497285, + "account_data": 230.0, + "after": 230.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207470434053, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216946382597, + "tenant_member_id": 2799207471433477, + "principal_after": 230.0, + "principal_before": 0.0, + "principal_data": 230.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18825868576", + "id": 2799216936847109, + "account_data": 512.0, + "after": 512.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207466075909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216936748805, + "tenant_member_id": 2799207467042565, + "principal_after": 512.0, + "principal_before": 0.0, + "principal_data": 512.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "16670190937", + "id": 2799216922494725, + "account_data": 1298.0, + "after": 1298.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207459456773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216922380037, + "tenant_member_id": 2799207460439813, + "principal_after": 1298.0, + "principal_before": 0.0, + "principal_data": 1298.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "老周", + "memberMobile": "13828475627", + "id": 2799216917366533, + "account_data": 94.0, + "after": 94.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207455704837, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216917104389, + "tenant_member_id": 2799207456835333, + "principal_after": 94.0, + "principal_before": 0.0, + "principal_data": 94.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2799216912533253, + "account_data": 3679.0, + "after": 3679.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216912434949, + "tenant_member_id": 2799207266748165, + "principal_after": 3679.0, + "principal_before": 0.0, + "principal_data": 3679.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "盛先生", + "memberMobile": "13822271640", + "id": 2799216901736197, + "account_data": 164.0, + "after": 164.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207446300421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216901621509, + "tenant_member_id": 2799207447447301, + "principal_after": 164.0, + "principal_before": 0.0, + "principal_data": 164.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "司志栋", + "memberMobile": "17615685579", + "id": 2799216896886533, + "account_data": 67.0, + "after": 67.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207442482949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216896788229, + "tenant_member_id": 2799207443662597, + "principal_after": 67.0, + "principal_before": 0.0, + "principal_data": 67.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2799216891053829, + "account_data": 1971.97, + "after": 1971.97, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216890955525, + "tenant_member_id": 2799207406946053, + "principal_after": 1971.97, + "principal_before": 0.0, + "principal_data": 1971.97 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程先生", + "memberMobile": "18898004382", + "id": 2799216870999813, + "account_data": 3937.0, + "after": 3937.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207392642821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216870885125, + "tenant_member_id": 2799207393625861, + "principal_after": 3937.0, + "principal_before": 0.0, + "principal_data": 3937.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "游", + "memberMobile": "17267866666", + "id": 2799216866199301, + "account_data": 51.99, + "after": 51.99, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207434372869, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216866100997, + "tenant_member_id": 2799207435323141, + "principal_after": 51.99, + "principal_before": 0.0, + "principal_data": 51.99 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生(该会员已注销)", + "memberMobile": "18927551908(1)", + "id": 2799216861202181, + "account_data": 573.0, + "after": 573.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216861103877, + "tenant_member_id": 2799207431980805, + "principal_after": 573.0, + "principal_before": 0.0, + "principal_data": 573.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "彭先生(该会员已注销)", + "memberMobile": "18927551908(1)", + "id": 2799216856254213, + "account_data": 910.0, + "after": 910.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2048629413694661, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216856123141, + "tenant_member_id": 2799207431980805, + "principal_after": 910.0, + "principal_before": 0.0, + "principal_data": 910.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "朱先生", + "memberMobile": "13250339315", + "id": 2799216840705797, + "account_data": 1685.0, + "after": 1685.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:39", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207423870725, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216840607493, + "tenant_member_id": 2799207424886533, + "principal_after": 1685.0, + "principal_before": 0.0, + "principal_data": 1685.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蒋先生", + "memberMobile": "13924099766", + "id": 2799216825566981, + "account_data": 551.0, + "after": 551.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207415564037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216825403141, + "tenant_member_id": 2799207417038597, + "principal_after": 551.0, + "principal_before": 0.0, + "principal_data": 551.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "江先生", + "memberMobile": "15119391111", + "id": 2799216815818501, + "account_data": 908.0, + "after": 908.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:38", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207412352773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216815687429, + "tenant_member_id": 2799207413319429, + "principal_after": 908.0, + "principal_before": 0.0, + "principal_data": 908.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924012996", + "id": 2799216783853317, + "account_data": 2541.0, + "after": 2541.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:36", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207399196421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216783722245, + "tenant_member_id": 2799207400195845, + "principal_after": 2541.0, + "principal_before": 0.0, + "principal_data": 2541.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924012996", + "id": 2799216672130821, + "account_data": 72.0, + "after": 72.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:29", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207399196421, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216672032517, + "tenant_member_id": 2799207400195845, + "principal_after": 72.0, + "principal_before": 0.0, + "principal_data": 72.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "程先生", + "memberMobile": "18898004382", + "id": 2799216656549637, + "account_data": 103.0, + "after": 103.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207392642821, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216656451333, + "tenant_member_id": 2799207393625861, + "principal_after": 103.0, + "principal_before": 0.0, + "principal_data": 103.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "朱兵", + "memberMobile": "18898323736", + "id": 2799216644671237, + "account_data": 200.0, + "after": 200.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207385122565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216644556549, + "tenant_member_id": 2799207386515205, + "principal_after": 200.0, + "principal_before": 0.0, + "principal_data": 200.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2799216638166789, + "account_data": 5618.0, + "after": 5618.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 5618.0, + "principal_before": 0.0, + "principal_data": 5618.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2799216633431813, + "account_data": 833.0, + "after": 833.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:27", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216633317125, + "tenant_member_id": 2799207382173445, + "principal_after": 833.0, + "principal_before": 0.0, + "principal_data": 833.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2799216626878213, + "account_data": 4329.0, + "after": 4329.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216626763525, + "tenant_member_id": 2799207382173445, + "principal_after": 4329.0, + "principal_before": 0.0, + "principal_data": 4329.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢先生(该会员已注销)", + "memberMobile": "13686180006(1)", + "id": 2799216620439301, + "account_data": 322.0, + "after": 322.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:26", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207381174021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216620340997, + "tenant_member_id": 2799207382173445, + "principal_after": 322.0, + "principal_before": 0.0, + "principal_data": 322.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2799216610690821, + "account_data": 178.0, + "after": 178.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 178.0, + "principal_before": 0.0, + "principal_data": 178.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "梁先生", + "memberMobile": "13450297682", + "id": 2799216605660933, + "account_data": 1043.0, + "after": 1043.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207373571845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216605546245, + "tenant_member_id": 2799207374751493, + "principal_after": 1043.0, + "principal_before": 0.0, + "principal_data": 1043.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2799216599516933, + "account_data": 1392.0, + "after": 1392.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:25", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216599402245, + "tenant_member_id": 2799207370163973, + "principal_after": 1392.0, + "principal_before": 0.0, + "principal_data": 1392.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "文哥", + "memberMobile": "15914324871", + "id": 2799216587736837, + "account_data": 600.0, + "after": 600.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207365920517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216587638533, + "tenant_member_id": 2799207366919941, + "principal_after": 600.0, + "principal_before": 0.0, + "principal_data": 600.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2799216582936325, + "account_data": 231.0, + "after": 231.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:24", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216582838021, + "tenant_member_id": 2799207334774533, + "principal_after": 231.0, + "principal_before": 0.0, + "principal_data": 231.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2799216578037509, + "account_data": 4877.0, + "after": 4877.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216577922821, + "tenant_member_id": 2799207334774533, + "principal_after": 4877.0, + "principal_before": 0.0, + "principal_data": 4877.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2799216572909317, + "account_data": 2220.0, + "after": 2220.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216572794629, + "tenant_member_id": 2799207363643141, + "principal_after": 2220.0, + "principal_before": 0.0, + "principal_data": 2220.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2799216568026885, + "account_data": 7400.0, + "after": 7400.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:23", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216567928581, + "tenant_member_id": 2799207363643141, + "principal_after": 7400.0, + "principal_before": 0.0, + "principal_data": 7400.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "葛先生", + "memberMobile": "13811638071", + "id": 2799216561571589, + "account_data": 57.0, + "after": 57.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2485293902352645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216561473285, + "tenant_member_id": 2799207363643141, + "principal_after": 57.0, + "principal_before": 0.0, + "principal_data": 57.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2799216556607237, + "account_data": 704.0, + "after": 704.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216556492549, + "tenant_member_id": 2799207229441797, + "principal_after": 704.0, + "principal_before": 0.0, + "principal_data": 704.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2799216550086405, + "account_data": 5957.0, + "after": 5957.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216549955333, + "tenant_member_id": 2799207229441797, + "principal_after": 5957.0, + "principal_before": 0.0, + "principal_data": 5957.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴生", + "memberMobile": "13600453341", + "id": 2799216538928901, + "account_data": 643.0, + "after": 643.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:21", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207355336453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216538830597, + "tenant_member_id": 2799207356434181, + "principal_after": 643.0, + "principal_before": 0.0, + "principal_data": 643.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹", + "memberMobile": "18211536023", + "id": 2799216526280453, + "account_data": 17.99, + "after": 17.99, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:20", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207348340485, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216526083845, + "tenant_member_id": 2799207349438213, + "principal_after": 17.99, + "principal_before": 0.0, + "principal_data": 17.99 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "柯先生", + "memberMobile": "18718213941", + "id": 2799216516581125, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1722160959426757, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216516466437, + "tenant_member_id": 2799207346013957, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗超杰", + "memberMobile": "13711268012", + "id": 2799216505341701, + "account_data": 11.0, + "after": 11.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207337199365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216505227013, + "tenant_member_id": 2799207338198789, + "principal_after": 11.0, + "principal_before": 0.0, + "principal_data": 11.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "潘先生", + "memberMobile": "17665007964", + "id": 2799216500524805, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:19", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207333824261, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216500426501, + "tenant_member_id": 2799207334774533, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "周先生", + "memberMobile": "13826290429", + "id": 2799216495101701, + "account_data": 122.0, + "after": 122.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207330596613, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216495003397, + "tenant_member_id": 2799207331546885, + "principal_after": 122.0, + "principal_before": 0.0, + "principal_data": 122.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄俊杰", + "memberMobile": "18813918683", + "id": 2799216489826053, + "account_data": 32.0, + "after": 32.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:18", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207238469381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216489711365, + "tenant_member_id": 2799207239993093, + "principal_after": 32.0, + "principal_before": 0.0, + "principal_data": 32.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "湛", + "memberMobile": "15111450638", + "id": 2799216472524549, + "account_data": 432.0, + "after": 432.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:17", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207320241925, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216472409861, + "tenant_member_id": 2799207321339653, + "principal_after": 432.0, + "principal_before": 0.0, + "principal_data": 432.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13802623964", + "id": 2799216461629189, + "account_data": 5915.0, + "after": 5915.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1823736961667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216461530885, + "tenant_member_id": 2799207146407685, + "principal_after": 5915.0, + "principal_before": 0.0, + "principal_data": 5915.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2799216455960325, + "account_data": 373.0, + "after": 373.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:16", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216455010053, + "tenant_member_id": 2799207317735173, + "principal_after": 373.0, + "principal_before": 0.0, + "principal_data": 373.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2799216448833285, + "account_data": 2919.0, + "after": 2919.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216448734981, + "tenant_member_id": 2799207317735173, + "principal_after": 2919.0, + "principal_before": 0.0, + "principal_data": 2919.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "15156924648", + "id": 2799216443262725, + "account_data": 219.0, + "after": 219.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207316276997, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216443164421, + "tenant_member_id": 2799207317735173, + "principal_after": 219.0, + "principal_before": 0.0, + "principal_data": 219.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "18666009266", + "id": 2799216438511365, + "account_data": 1.0, + "after": 1.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207312836357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216438396677, + "tenant_member_id": 2799207313884933, + "principal_after": 1.0, + "principal_before": 0.0, + "principal_data": 1.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "于天", + "memberMobile": "13359486795", + "id": 2799216432449285, + "account_data": 468.0, + "after": 468.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207308478213, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216432334597, + "tenant_member_id": 2799207309985541, + "principal_after": 468.0, + "principal_before": 0.0, + "principal_data": 468.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2799216426927877, + "account_data": 7.0, + "after": 7.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216426813189, + "tenant_member_id": 2799207305578245, + "principal_after": 7.0, + "principal_before": 0.0, + "principal_data": 7.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄国磊", + "memberMobile": "13119553045", + "id": 2799216421881605, + "account_data": 1103.0, + "after": 1103.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:14", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207304136453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216421766917, + "tenant_member_id": 2799207305578245, + "principal_after": 1103.0, + "principal_before": 0.0, + "principal_data": 1103.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谭先生", + "memberMobile": "13268389381", + "id": 2799216406906629, + "account_data": 912.0, + "after": 912.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207297074949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216406775557, + "tenant_member_id": 2799207298025221, + "principal_after": 912.0, + "principal_before": 0.0, + "principal_data": 912.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小爱", + "memberMobile": "15274655571", + "id": 2799216402138885, + "account_data": 32.0, + "after": 32.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:13", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207293699845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216402024197, + "tenant_member_id": 2799207294666501, + "principal_after": 32.0, + "principal_before": 0.0, + "principal_data": 32.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2799216397338373, + "account_data": 132.0, + "after": 132.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216397240069, + "tenant_member_id": 2799207290996485, + "principal_after": 132.0, + "principal_before": 0.0, + "principal_data": 132.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "15915782829", + "id": 2799216392455941, + "account_data": 971.0, + "after": 971.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:12", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207289947909, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216392357637, + "tenant_member_id": 2799207290996485, + "principal_after": 971.0, + "principal_before": 0.0, + "principal_data": 971.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "左先生", + "memberMobile": "13711411714", + "id": 2799216381724421, + "account_data": 343.0, + "after": 343.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207283132165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216381609733, + "tenant_member_id": 2799207284131589, + "principal_after": 343.0, + "principal_before": 0.0, + "principal_data": 343.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "左先生", + "memberMobile": "13711411714", + "id": 2799216377022213, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207283132165, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216376923909, + "tenant_member_id": 2799207284131589, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐(该会员已注销)", + "memberMobile": "13710386038(1)", + "id": 2799216372352773, + "account_data": 719.0, + "after": 719.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:11", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216372238085, + "tenant_member_id": 2799207280871173, + "principal_after": 719.0, + "principal_before": 0.0, + "principal_data": 719.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "翁小姐(该会员已注销)", + "memberMobile": "13710386038(1)", + "id": 2799216367355653, + "account_data": 813.0, + "after": 813.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207279560453, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216367240965, + "tenant_member_id": 2799207280871173, + "principal_after": 813.0, + "principal_before": 0.0, + "principal_data": 813.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13560151933", + "id": 2799216353019653, + "account_data": 668.0, + "after": 668.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:10", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207272400645, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216352921349, + "tenant_member_id": 2799207273400069, + "principal_after": 668.0, + "principal_before": 0.0, + "principal_data": 668.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "18520426868", + "id": 2799216346990341, + "account_data": 8.0, + "after": 8.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207269025541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216346892037, + "tenant_member_id": 2799207270024965, + "principal_after": 8.0, + "principal_before": 0.0, + "principal_data": 8.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "18520426868", + "id": 2799216341288709, + "account_data": 2508.0, + "after": 2508.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:09", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207269025541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216341157637, + "tenant_member_id": 2799207270024965, + "principal_after": 2508.0, + "principal_before": 0.0, + "principal_data": 2508.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "查先生", + "memberMobile": "18520426868", + "id": 2799216336455429, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207269025541, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216336357125, + "tenant_member_id": 2799207270024965, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈泽斌", + "memberMobile": "13247516060", + "id": 2799216331654917, + "account_data": 5.0, + "after": 5.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207265781509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216331540229, + "tenant_member_id": 2799207266748165, + "principal_after": 5.0, + "principal_before": 0.0, + "principal_data": 5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月(该会员已注销)", + "memberMobile": "19802010700(1)", + "id": 2799216325445381, + "account_data": 272.0, + "after": 272.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:08", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216325347077, + "tenant_member_id": 2799207263405829, + "principal_after": 272.0, + "principal_before": 0.0, + "principal_data": 272.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张瀚月(该会员已注销)", + "memberMobile": "19802010700(1)", + "id": 2799216318891781, + "account_data": 478.0, + "after": 478.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207262406405, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216318596869, + "tenant_member_id": 2799207263405829, + "principal_after": 478.0, + "principal_before": 0.0, + "principal_data": 478.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2799216313222917, + "account_data": 1854.0, + "after": 1854.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216313124613, + "tenant_member_id": 2799207259735813, + "principal_after": 1854.0, + "principal_before": 0.0, + "principal_data": 1854.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2799216308045573, + "account_data": 1983.0, + "after": 1983.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:07", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216307930885, + "tenant_member_id": 2799207259735813, + "principal_after": 1983.0, + "principal_before": 0.0, + "principal_data": 1983.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘女士(该会员已注销)", + "memberMobile": "17727637538(1)", + "id": 2799216302966533, + "account_data": 451.0, + "after": 451.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207258769157, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216302851845, + "tenant_member_id": 2799207259735813, + "principal_after": 451.0, + "principal_before": 0.0, + "principal_data": 451.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林总", + "memberMobile": "13808881180", + "id": 2799216295708421, + "account_data": 20915.0, + "after": 20915.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:06", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207255443205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216295593733, + "tenant_member_id": 2799207256426245, + "principal_after": 20915.0, + "principal_before": 0.0, + "principal_data": 20915.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "文", + "memberMobile": "13902222501", + "id": 2799216283420421, + "account_data": 561.0, + "after": 561.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207252150021, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216283322117, + "tenant_member_id": 2799207253165829, + "principal_after": 561.0, + "principal_before": 0.0, + "principal_data": 561.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "乔西", + "memberMobile": "15213282732", + "id": 2799216277292805, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207248660229, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216277194501, + "tenant_member_id": 2799207249676037, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "军哥", + "memberMobile": "13710000102", + "id": 2799216271476485, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:05", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207245416197, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216271378181, + "tenant_member_id": 2799207246382853, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢锐鹏", + "memberMobile": "13632631270", + "id": 2799216265561861, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207242237701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216265447173, + "tenant_member_id": 2799207243204357, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢锐鹏", + "memberMobile": "13632631270", + "id": 2799216260794117, + "account_data": 2450.0, + "after": 2450.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207242237701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216260679429, + "tenant_member_id": 2799207243204357, + "principal_after": 2450.0, + "principal_before": 0.0, + "principal_data": 2450.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "谢锐鹏", + "memberMobile": "13632631270", + "id": 2799216256042757, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:04", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207242237701, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216255944453, + "tenant_member_id": 2799207243204357, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波(该会员已注销)", + "memberMobile": "13718998990(1)", + "id": 2799216245327621, + "account_data": 398.0, + "after": 398.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216245212933, + "tenant_member_id": 2799207236192005, + "principal_after": 398.0, + "principal_before": 0.0, + "principal_data": 398.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "何波(该会员已注销)", + "memberMobile": "13718998990(1)", + "id": 2799216239494917, + "account_data": 530.0, + "after": 530.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:03", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207235225349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216239396613, + "tenant_member_id": 2799207236192005, + "principal_after": 530.0, + "principal_before": 0.0, + "principal_data": 530.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "姚", + "memberMobile": "13265055571", + "id": 2799216232154885, + "account_data": 15.0, + "after": 15.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207231801093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216232040197, + "tenant_member_id": 2799207232816901, + "principal_after": 15.0, + "principal_before": 0.0, + "principal_data": 15.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈世", + "memberMobile": "13430271938", + "id": 2799216227206917, + "account_data": 130.0, + "after": 130.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:50:02", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207228278533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216227092229, + "tenant_member_id": 2799207229441797, + "principal_after": 130.0, + "principal_before": 0.0, + "principal_data": 130.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈俊圻", + "memberMobile": "19350811726", + "id": 2799216213739269, + "account_data": 426.0, + "after": 426.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207224198917, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216213624581, + "tenant_member_id": 2799207225132805, + "principal_after": 426.0, + "principal_before": 0.0, + "principal_data": 426.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 2799216208791301, + "account_data": 862.0, + "after": 862.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:01", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216208660229, + "tenant_member_id": 2799207117129477, + "principal_after": 862.0, + "principal_before": 0.0, + "principal_data": 862.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2799216203941637, + "account_data": 879.0, + "after": 879.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:50:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216203843333, + "tenant_member_id": 2799207221888773, + "principal_after": 879.0, + "principal_before": 0.0, + "principal_data": 879.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "纪先生", + "memberMobile": "15915852614", + "id": 2799216197748485, + "account_data": 590.0, + "after": 590.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207220938501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216197633797, + "tenant_member_id": 2799207221888773, + "principal_after": 590.0, + "principal_before": 0.0, + "principal_data": 590.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "金涛", + "memberMobile": "15626125885", + "id": 2799216192833285, + "account_data": 97.0, + "after": 97.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:50:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207217710853, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216192734981, + "tenant_member_id": 2799207218693893, + "principal_after": 97.0, + "principal_before": 0.0, + "principal_data": 97.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李生(该会员已注销)", + "memberMobile": "13352813215(1)", + "id": 2799216187918085, + "account_data": 764.0, + "after": 764.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207214532357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216187803397, + "tenant_member_id": 2799207215482629, + "principal_after": 764.0, + "principal_before": 0.0, + "principal_data": 764.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李生(该会员已注销)", + "memberMobile": "13352813215(1)", + "id": 2799216183019269, + "account_data": 800.0, + "after": 800.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:59", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207214532357, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216182904581, + "tenant_member_id": 2799207215482629, + "principal_after": 800.0, + "principal_before": 0.0, + "principal_data": 800.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "18630801324", + "id": 2799216170944261, + "account_data": 191.0, + "after": 191.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207210862341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216170829573, + "tenant_member_id": 2799207212304133, + "principal_after": 191.0, + "principal_before": 0.0, + "principal_data": 191.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄一洋", + "memberMobile": "13927802382", + "id": 2799216164505349, + "account_data": 1412.0, + "after": 1412.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207207225093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216164390661, + "tenant_member_id": 2799207208208133, + "principal_after": 1412.0, + "principal_before": 0.0, + "principal_data": 1412.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "刘先生", + "memberMobile": "13725252930", + "id": 2799216159557381, + "account_data": 414.0, + "after": 414.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:58", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207203849989, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216159459077, + "tenant_member_id": 2799207204882181, + "principal_after": 414.0, + "principal_before": 0.0, + "principal_data": 414.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴先生", + "memberMobile": "18122400048", + "id": 2799216152938245, + "account_data": 167.0, + "after": 167.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207199491845, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216152626949, + "tenant_member_id": 2799207200540421, + "principal_after": 167.0, + "principal_before": 0.0, + "principal_data": 167.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "金先生", + "memberMobile": "18993439609", + "id": 2799216147203845, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207195559685, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216147089157, + "tenant_member_id": 2799207196690181, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "17666555124", + "id": 2799216142288645, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:57", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207191365381, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216142190341, + "tenant_member_id": 2799207192626949, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2799216137307909, + "account_data": 1057.0, + "after": 1057.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216137193221, + "tenant_member_id": 2799207188170501, + "principal_after": 1057.0, + "principal_before": 0.0, + "principal_data": 1057.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2799216132376325, + "account_data": 2517.0, + "after": 2517.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216132245253, + "tenant_member_id": 2799207188170501, + "principal_after": 2517.0, + "principal_before": 0.0, + "principal_data": 2517.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林志铭", + "memberMobile": "13570304233", + "id": 2799216127264517, + "account_data": 38.0, + "after": 38.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:56", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207187023621, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216127166213, + "tenant_member_id": 2799207188170501, + "principal_after": 38.0, + "principal_before": 0.0, + "principal_data": 38.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "古", + "memberMobile": "15918888767", + "id": 2799216114992901, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2480896136515013, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216114616069, + "tenant_member_id": 2799207184582405, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2799216108095237, + "account_data": 1835.0, + "after": 1835.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:55", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216107980549, + "tenant_member_id": 2799207159990021, + "principal_after": 1835.0, + "principal_before": 0.0, + "principal_data": 1835.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "杨洋", + "memberMobile": "18126782693", + "id": 2799216101951237, + "account_data": 128.0, + "after": 128.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2026068177520773, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216101852933, + "tenant_member_id": 2799207180060421, + "principal_after": 128.0, + "principal_before": 0.0, + "principal_data": 128.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2799216094988037, + "account_data": 54.0, + "after": 54.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:54", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216094873349, + "tenant_member_id": 2799207176636165, + "principal_after": 54.0, + "principal_before": 0.0, + "principal_data": 54.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张丹逸", + "memberMobile": "13609066637", + "id": 2799216088614661, + "account_data": 2022.0, + "after": 2022.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207175685893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216088516357, + "tenant_member_id": 2799207176636165, + "principal_after": 2022.0, + "principal_before": 0.0, + "principal_data": 2022.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "赖先生", + "memberMobile": "15916836735", + "id": 2799216074655493, + "account_data": 83.0, + "after": 83.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:53", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207172458245, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216074540805, + "tenant_member_id": 2799207173424901, + "principal_after": 83.0, + "principal_before": 0.0, + "principal_data": 83.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "吴广镇", + "memberMobile": "19854834848", + "id": 2799216068462341, + "account_data": 60.0, + "after": 60.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207169148677, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216068364037, + "tenant_member_id": 2799207170164485, + "principal_after": 60.0, + "principal_before": 0.0, + "principal_data": 60.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王先生", + "memberMobile": "13261610255", + "id": 2799216058877701, + "account_data": 869.0, + "after": 869.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:52", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207165708037, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216058763013, + "tenant_member_id": 2799207166772997, + "principal_after": 869.0, + "principal_before": 0.0, + "principal_data": 869.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "邓飛", + "memberMobile": "13600009597", + "id": 2799216049407749, + "account_data": 231.0, + "after": 231.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207159023365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216049293061, + "tenant_member_id": 2799207159990021, + "principal_after": 231.0, + "principal_before": 0.0, + "principal_data": 231.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2799216044197637, + "account_data": 2776.0, + "after": 2776.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:51", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216044099333, + "tenant_member_id": 2799207109379845, + "principal_after": 2776.0, + "principal_before": 0.0, + "principal_data": 2776.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "宫月生", + "memberMobile": "18986946409", + "id": 2799216038725381, + "account_data": 11.0, + "after": 11.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207155762949, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216038610693, + "tenant_member_id": 2799207156713221, + "principal_after": 11.0, + "principal_before": 0.0, + "principal_data": 11.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "关先生", + "memberMobile": "13249649995", + "id": 2799216032253701, + "account_data": 25.0, + "after": 25.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207152240389, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216032155397, + "tenant_member_id": 2799207153403653, + "principal_after": 25.0, + "principal_before": 0.0, + "principal_data": 25.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "尧先生", + "memberMobile": "13763306599", + "id": 2799216027518725, + "account_data": 135.0, + "after": 135.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:50", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207148799749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216027404037, + "tenant_member_id": 2799207149766405, + "principal_after": 135.0, + "principal_before": 0.0, + "principal_data": 135.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "尧先生", + "memberMobile": "13763306599", + "id": 2799216021325573, + "account_data": 683.0, + "after": 683.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207148799749, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216021210885, + "tenant_member_id": 2799207149766405, + "principal_after": 683.0, + "principal_before": 0.0, + "principal_data": 683.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13802623964", + "id": 2799216016459525, + "account_data": 3.0, + "after": 3.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 1823736961667205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216016361221, + "tenant_member_id": 2799207146407685, + "principal_after": 3.0, + "principal_before": 0.0, + "principal_data": 3.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈生", + "memberMobile": "13902205497", + "id": 2799216011609861, + "account_data": 171.0, + "after": 171.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:49", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207140591365, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216011511557, + "tenant_member_id": 2799207141623557, + "principal_after": 171.0, + "principal_before": 0.0, + "principal_data": 171.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "苏先生", + "memberMobile": "18320101461", + "id": 2799216005465861, + "account_data": 37.0, + "after": 37.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207136102149, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216005367557, + "tenant_member_id": 2799207137642245, + "principal_after": 37.0, + "principal_before": 0.0, + "principal_data": 37.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2799216000763653, + "account_data": 143.0, + "after": 143.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215983609605, + "tenant_member_id": 2799207124305669, + "principal_after": 143.0, + "principal_before": 0.0, + "principal_data": 143.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "13423644783", + "id": 2799215993669381, + "account_data": 71.0, + "after": 71.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207126894341, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215993554693, + "tenant_member_id": 2799207128008453, + "principal_after": 71.0, + "principal_before": 0.0, + "principal_data": 71.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2799215978874629, + "account_data": 354.0, + "after": 354.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:47", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215978317573, + "tenant_member_id": 2799207120815877, + "principal_after": 354.0, + "principal_before": 0.0, + "principal_data": 354.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2799215973566213, + "account_data": 4432.0, + "after": 4432.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-07-20 20:49:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215973451525, + "tenant_member_id": 2799207120815877, + "principal_after": 4432.0, + "principal_before": 0.0, + "principal_data": 4432.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈淑涛", + "memberMobile": "13286525485", + "id": 2799215967602437, + "account_data": 2.0, + "after": 2.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207119800069, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215967487749, + "tenant_member_id": 2799207120815877, + "principal_after": 2.0, + "principal_before": 0.0, + "principal_data": 2.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "王龙", + "memberMobile": "18620708011", + "id": 2799215962654469, + "account_data": 378.0, + "after": 378.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:46", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207116146437, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215962556165, + "tenant_member_id": 2799207117129477, + "principal_after": 378.0, + "principal_before": 0.0, + "principal_data": 378.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2799215950874373, + "account_data": 716.0, + "after": 716.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215950759685, + "tenant_member_id": 2799207109379845, + "principal_after": 716.0, + "principal_before": 0.0, + "principal_data": 716.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生(该会员已注销)", + "memberMobile": "13189179882(1)", + "id": 2799215946188549, + "account_data": 19.0, + "after": 19.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207107888901, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215946073861, + "tenant_member_id": 2799207109379845, + "principal_after": 19.0, + "principal_before": 0.0, + "principal_data": 19.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "龙先生(该会员已注销)", + "memberMobile": "13822281419(1)", + "id": 2799215939749637, + "account_data": 204.0, + "after": 204.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207103350533, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215939651333, + "tenant_member_id": 2799207104726789, + "principal_after": 204.0, + "principal_before": 0.0, + "principal_data": 204.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "念念", + "memberMobile": "15200839655", + "id": 2799215934801669, + "account_data": 207.0, + "after": 207.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207100024581, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215934686981, + "tenant_member_id": 2799207100974853, + "principal_after": 207.0, + "principal_before": 0.0, + "principal_data": 207.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2799215929149189, + "account_data": 68.0, + "after": 68.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:44", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215929050885, + "tenant_member_id": 2799207097812741, + "principal_after": 68.0, + "principal_before": 0.0, + "principal_data": 68.0 + }, + { + "memberCardTypeName": "酒水卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黎先生(该会员已注销)", + "memberMobile": "13318830983(1)", + "id": 2799215923676933, + "account_data": 407.0, + "after": 407.0, + "before": 0.0, + "card_type_id": 2794699703437125, + "create_time": "2025-07-20 20:49:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207096796933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215923578629, + "tenant_member_id": 2799207097812741, + "principal_after": 407.0, + "principal_before": 0.0, + "principal_data": 407.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "钟先生(该会员已注销)", + "memberMobile": "13265933438(1)", + "id": 2799215918647045, + "account_data": 441.0, + "after": 441.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207093290757, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215918532357, + "tenant_member_id": 2799207094322949, + "principal_after": 441.0, + "principal_before": 0.0, + "principal_data": 441.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "蔡先生", + "memberMobile": "18664519898", + "id": 2799215912929029, + "account_data": 518.0, + "after": 518.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:43", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207089997573, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215912814341, + "tenant_member_id": 2799207090996997, + "principal_after": 518.0, + "principal_before": 0.0, + "principal_data": 518.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15726865555", + "id": 2799215906555653, + "account_data": 488.0, + "after": 488.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:42", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207086114565, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215906440965, + "tenant_member_id": 2799207087163141, + "principal_after": 488.0, + "principal_before": 0.0, + "principal_data": 488.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "果", + "memberMobile": "13902203836", + "id": 2799215892514565, + "account_data": 679.0, + "after": 679.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:41", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207074645765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215892219653, + "tenant_member_id": 2799207075874565, + "principal_after": 679.0, + "principal_before": 0.0, + "principal_data": 679.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曹先生", + "memberMobile": "15147275706", + "id": 2799215867414277, + "account_data": 1415.0, + "after": 1415.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-07-20 20:49:40", + "from_type": 4, + "is_delete": 0, + "operator_id": 2367364371122885, + "operator_name": "平台运维:", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207054903045, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215867168517, + "tenant_member_id": 2799207056279301, + "principal_after": 1415.0, + "principal_before": 0.0, + "principal_data": 1415.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946589987212101, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 23:26:22", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2801914336446661, + "tenant_member_id": 2799207599212293, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946589251569669, + "account_data": -883.16, + "after": 116.84, + "before": 1000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 23:25:37", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946589177235525, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 116.84, + "principal_before": 1000.0, + "principal_data": -883.16 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小熊", + "memberMobile": "13927020145", + "id": 2946587843233925, + "account_data": 1000.0, + "after": 1000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 23:24:11", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946587840219269, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207598180101, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217260676869, + "tenant_member_id": 2799207599212293, + "principal_after": 1000.0, + "principal_before": 0.0, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "郭先生", + "memberMobile": "15622365001", + "id": 2946543956969541, + "account_data": -233.22, + "after": 2.57, + "before": 235.79, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 22:39:33", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946543905867909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2847747355905029, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2847747357248517, + "tenant_member_id": 2847747357002757, + "principal_after": 2.57, + "principal_before": 235.79, + "principal_data": -233.22 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2946537024112773, + "account_data": -260.0, + "after": 438.98, + "before": 698.98, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 22:32:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946536979024005, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 438.98, + "principal_before": 698.98, + "principal_data": -260.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2946469799315461, + "account_data": -161.19, + "after": 1373.02, + "before": 1534.21, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 21:24:07", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946469752620997, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1373.02, + "principal_before": 1534.21, + "principal_data": -161.19 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2946467793618885, + "account_data": -306.06, + "after": 1050.44, + "before": 1356.5, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 21:22:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946467660236933, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1050.44, + "principal_before": 1356.5, + "principal_data": -306.06 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946412546295941, + "account_data": -416.4, + "after": 3269.31, + "before": 3685.71, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 20:25:52", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946412380817349, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 3269.31, + "principal_before": 3685.71, + "principal_data": -416.4 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2946389953677317, + "account_data": -8.0, + "after": 1595.6, + "before": 1603.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 20:02:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946389877688389, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1595.6, + "principal_before": 1603.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2946287497496517, + "account_data": -8.0, + "after": 1603.6, + "before": 1611.6, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 18:18:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946287410694277, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1603.6, + "principal_before": 1611.6, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946226856773637, + "account_data": -5.0, + "after": 27.0, + "before": 32.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:16:59", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946226813569029, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 27.0, + "principal_before": 32.0, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946222556235781, + "account_data": -447.29, + "after": 3685.71, + "before": 4133.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:12:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946222439712837, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 3685.71, + "principal_before": 4133.0, + "principal_data": -447.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946221352716293, + "account_data": -26.0, + "after": 32.0, + "before": 58.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:11:23", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946221296879557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 32.0, + "principal_before": 58.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2946212603512901, + "account_data": -18.0, + "after": 58.0, + "before": 76.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 17:02:29", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2946212555311109, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 58.0, + "principal_before": 76.0, + "principal_data": -18.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2946148690134917, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 15:57:28", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945598955374725, + "tenant_member_id": 2799207545685765, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946076427979461, + "account_data": 682.0, + "after": 682.0, + "before": 0.0, + "card_type_id": 2791990152417157, + "create_time": "2025-11-01 14:43:57", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946072298784837, + "tenant_member_id": 2946070922169029, + "principal_after": 682.0, + "principal_before": 0.0, + "principal_data": 682.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "", + "registerSiteName": "朗朗桌球", + "memberName": "林先生", + "memberMobile": "18826220332", + "id": 2946072097704645, + "account_data": 4133.0, + "after": 4133.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 14:39:33", + "from_type": 9, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "管理员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 0, + "system_member_id": 2799210017343237, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2946071339616325, + "tenant_member_id": 2946070922169029, + "principal_after": 4133.0, + "principal_before": 0.0, + "principal_data": 4133.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2945604894541829, + "account_data": -1109.49, + "after": 1999.51, + "before": 3109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 06:44:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945604565108677, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 1999.51, + "principal_before": 3109.0, + "principal_data": -1109.49 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "李先生", + "memberMobile": "13128264000", + "id": 2945598744348741, + "account_data": 3000.0, + "after": 3109.0, + "before": 109.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 06:38:02", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945598741858373, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207544473349, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217107142405, + "tenant_member_id": 2799207545685765, + "principal_after": 3109.0, + "principal_before": 109.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945530356942853, + "account_data": -4728.86, + "after": 3637.95, + "before": 8366.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 05:28:28", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945530267174853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3637.95, + "principal_before": 8366.81, + "principal_data": -4728.86 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945530355337221, + "account_data": -1226.57, + "after": 0.0, + "before": 1226.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 05:28:27", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945530267174853, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 1226.57, + "principal_data": -1226.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945513936848709, + "account_data": 888.0, + "after": 1226.57, + "before": 338.57, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 05:11:45", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 1226.57, + "principal_before": 338.57, + "principal_data": 888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2945466619004997, + "account_data": 5000.0, + "after": 8366.81, + "before": 3366.81, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 04:23:37", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945466615924805, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 8366.81, + "principal_before": 3366.81, + "principal_data": 5000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2945415966165125, + "account_data": -0.69, + "after": 0.0, + "before": 0.69, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 03:32:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945415909034053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 0.69, + "principal_data": -0.69 + }, + { + "memberCardTypeName": "台费卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2945415966017669, + "account_data": -163.27, + "after": 4044.61, + "before": 4207.88, + "card_type_id": 2791990152417157, + "create_time": "2025-11-01 03:32:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945415909034053, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216638068485, + "tenant_member_id": 2799207342704389, + "principal_after": 4044.61, + "principal_before": 4207.88, + "principal_data": -163.27 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2945412152477829, + "account_data": -145.67, + "after": 857.17, + "before": 1002.84, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 03:28:13", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945411975759941, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 857.17, + "principal_before": 1002.84, + "principal_data": -145.67 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945366526560069, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 02:41:48", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687633313029, + "operator_name": "店长:蒋雨轩", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945300519405509, + "tenant_member_id": 2945299652708293, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2945355732174917, + "account_data": -215.73, + "after": 1611.6, + "before": 1827.33, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 02:30:49", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945355592828869, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1611.6, + "principal_before": 1827.33, + "principal_data": -215.73 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945303652304965, + "account_data": -2090.0, + "after": 910.0, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 01:37:51", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945303614408709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945299653003205, + "tenant_member_id": 2945299652708293, + "principal_after": 910.0, + "principal_before": 3000.0, + "principal_data": -2090.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "万先生", + "memberMobile": "13560399646", + "id": 2945300263389189, + "account_data": 3000.0, + "after": 3000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 01:34:24", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945300260718597, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2945299651266501, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2945299653003205, + "tenant_member_id": 2945299652708293, + "principal_after": 3000.0, + "principal_before": 0.0, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "冯先生", + "memberMobile": "15588690348", + "id": 2945238235514821, + "account_data": -144.84, + "after": 13.16, + "before": 158.0, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:31:18", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945238116894661, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212806997765, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219904759557, + "tenant_member_id": 2799212808029957, + "principal_after": 13.16, + "principal_before": 158.0, + "principal_data": -144.84 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945224213809221, + "account_data": -5.0, + "after": 2366.44, + "before": 2371.44, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:17:02", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945224149633157, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2366.44, + "principal_before": 2371.44, + "principal_data": -5.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945219529656389, + "account_data": -761.57, + "after": 2371.44, + "before": 3133.01, + "card_type_id": 2793249295533893, + "create_time": "2025-11-01 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945219455403973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2371.44, + "principal_before": 3133.01, + "principal_data": -761.57 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945219529508933, + "account_data": -100.0, + "after": 0.0, + "before": 100.0, + "card_type_id": 2793266846533445, + "create_time": "2025-11-01 00:12:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945219455403973, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 0.0, + "principal_before": 100.0, + "principal_data": -100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "曾丹烨", + "memberMobile": "13922213242", + "id": 2945152813811653, + "account_data": -96.0, + "after": 1534.21, + "before": 1630.21, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 23:04:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945152643549189, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799212844549893, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799219999295237, + "tenant_member_id": 2799212845565701, + "principal_after": 1534.21, + "principal_before": 1630.21, + "principal_data": -96.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945087788582789, + "account_data": 100.0, + "after": 100.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 21:58:15", + "from_type": 4, + "is_delete": 0, + "operator_id": 2800459869441029, + "operator_name": "店长:谢晓洪", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807912860717893, + "tenant_member_id": 2799207124305669, + "principal_after": 100.0, + "principal_before": 0.0, + "principal_data": 100.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945086925244357, + "account_data": 1000.0, + "after": 3133.01, + "before": 2133.01, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 21:57:23", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945086921656261, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 3133.01, + "principal_before": 2133.01, + "principal_data": 1000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2945085405333445, + "account_data": -121.67, + "after": 2133.01, + "before": 2254.68, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 21:55:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945085344237701, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2133.01, + "principal_before": 2254.68, + "principal_data": -121.67 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "amy", + "memberMobile": "13763328221", + "id": 2945069052725381, + "account_data": -28.0, + "after": 55.32, + "before": 83.32, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 21:39:12", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2945068993906629, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799209975514885, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218079368965, + "tenant_member_id": 2799209976481541, + "principal_after": 55.32, + "principal_before": 83.32, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2944995522856965, + "account_data": -146.31, + "after": 1356.5, + "before": 1502.81, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 20:24:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944994976942021, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1356.5, + "principal_before": 1502.81, + "principal_data": -146.31 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2944979148638277, + "account_data": -161.43, + "after": 338.57, + "before": 500.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 20:07:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944979053381765, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 338.57, + "principal_before": 500.0, + "principal_data": -161.43 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2944978180081797, + "account_data": -137.44, + "after": 1827.33, + "before": 1964.77, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 20:06:45", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944978096490565, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1827.33, + "principal_before": 1964.77, + "principal_data": -137.44 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2944770030585989, + "account_data": -8.0, + "after": 1964.77, + "before": 1972.77, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:35:01", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944769995933637, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1964.77, + "principal_before": 1972.77, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944745574107077, + "account_data": -2982.11, + "after": 1017.89, + "before": 4000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:10:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944745466824709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 1017.89, + "principal_before": 4000.0, + "principal_data": -2982.11 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944745573943237, + "account_data": -600.0, + "after": 0.0, + "before": 600.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 16:10:08", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944745466824709, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 600.0, + "principal_data": -600.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944745002288965, + "account_data": 600.0, + "after": 600.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 16:09:33", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2803524297313413, + "tenant_member_id": 2799207378798341, + "principal_after": 600.0, + "principal_before": 0.0, + "principal_data": 600.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944744612055045, + "account_data": 4000.0, + "after": 4000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:09:10", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944744609302533, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 4000.0, + "principal_before": 0.0, + "principal_data": 4000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944743811713093, + "account_data": -44000.0, + "after": 0.0, + "before": 44000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:08:21", + "from_type": 7, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944743805700165, + "remark": "充值退款", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 0.0, + "principal_before": 44000.0, + "principal_data": -44000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "羊", + "memberMobile": "18785445094", + "id": 2944743415613573, + "account_data": 44000.0, + "after": 44000.0, + "before": 0.0, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:07:57", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944743412713605, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2272349995387141, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216615507717, + "tenant_member_id": 2799207378798341, + "principal_after": 44000.0, + "principal_before": 0.0, + "principal_data": 44000.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2944740130064517, + "account_data": -26.0, + "after": 76.0, + "before": 102.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 16:04:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944740091365445, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 76.0, + "principal_before": 102.0, + "principal_data": -26.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2944738646493253, + "account_data": -120.0, + "after": 0.69, + "before": 120.69, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:03:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944738588903557, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 0.69, + "principal_before": 120.69, + "principal_data": -120.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2944736426018949, + "account_data": -264.1, + "after": 120.69, + "before": 384.79, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 16:00:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944736295290885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799216610576133, + "tenant_member_id": 2799207342704389, + "principal_after": 120.69, + "principal_before": 384.79, + "principal_data": -264.1 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "叶先生", + "memberMobile": "13826479539", + "id": 2944736425838725, + "account_data": -864.0, + "after": 0.0, + "before": 864.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 16:00:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944736295290885, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207341557509, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2806860029593285, + "tenant_member_id": 2799207342704389, + "principal_after": 0.0, + "principal_before": 864.0, + "principal_data": -864.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "夏", + "memberMobile": "19120942851", + "id": 2944688094793093, + "account_data": -8.0, + "after": 698.98, + "before": 706.98, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 15:11:40", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944688057568645, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207518095109, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217048848133, + "tenant_member_id": 2799207519176453, + "principal_after": 698.98, + "principal_before": 706.98, + "principal_data": -8.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2944435789105093, + "account_data": 500.0, + "after": 500.0, + "before": 0.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 10:55:00", + "from_type": 4, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "店长:郑丽珊", + "payment_method": 3, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 0, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 500.0, + "principal_before": 0.0, + "principal_data": 500.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2944055922954309, + "account_data": 3000.0, + "after": 3366.81, + "before": 366.81, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 04:28:35", + "from_type": 3, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 4, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944055920218181, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 3366.81, + "principal_before": 366.81, + "principal_data": 3000.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2944044325261189, + "account_data": -1121.57, + "after": 366.81, + "before": 1488.38, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 04:16:47", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2944044193746821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 366.81, + "principal_before": 1488.38, + "principal_data": -1121.57 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "黄先生", + "memberMobile": "15818822109", + "id": 2943941265739845, + "account_data": -148.13, + "after": 1002.84, + "before": 1150.97, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 02:31:57", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943941222059909, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2846153188363205, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2846153189837765, + "tenant_member_id": 2846153189592005, + "principal_after": 1002.84, + "principal_before": 1150.97, + "principal_data": -148.13 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2943831912648581, + "account_data": -19.62, + "after": 1972.77, + "before": 1992.39, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 00:40:43", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943831815425925, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1972.77, + "principal_before": 1992.39, + "principal_data": -19.62 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2943820471717765, + "account_data": -1007.61, + "after": 1992.39, + "before": 3000.0, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 00:29:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943820398301253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218552833797, + "tenant_member_id": 2799207359858437, + "principal_after": 1992.39, + "principal_before": 3000.0, + "principal_data": -1007.61 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2943820471570309, + "account_data": -24.29, + "after": 0.0, + "before": 24.29, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 00:29:04", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943820398301253, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 0.0, + "principal_before": 24.29, + "principal_data": -24.29 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "罗先生", + "memberMobile": "13924036996", + "id": 2943820228005701, + "account_data": -95.71, + "after": 24.29, + "before": 120.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 00:28:50", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943820143742789, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207358777093, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800824360437893, + "tenant_member_id": 2799207359858437, + "principal_after": 24.29, + "principal_before": 120.0, + "principal_data": -95.71 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2943802960154693, + "account_data": -368.93, + "after": 1488.38, + "before": 1857.31, + "card_type_id": 2793249295533893, + "create_time": "2025-10-31 00:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943802859933573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799217444914949, + "tenant_member_id": 2799207522600709, + "principal_after": 1488.38, + "principal_before": 1857.31, + "principal_data": -368.93 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "轩哥", + "memberMobile": "18826267530", + "id": 2943802960007237, + "account_data": -888.0, + "after": 0.0, + "before": 888.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-31 00:11:16", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943802859933573, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207521568517, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2807890878272261, + "tenant_member_id": 2799207522600709, + "principal_after": 0.0, + "principal_before": 888.0, + "principal_data": -888.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "小宇", + "memberMobile": "18745728077", + "id": 2943701721108357, + "account_data": -27.0, + "after": 1093.07, + "before": 1120.07, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 22:28:17", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943701686751173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2746580425985221, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799220093585157, + "tenant_member_id": 2799212906235653, + "principal_after": 1093.07, + "principal_before": 1120.07, + "principal_data": -27.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "张先生", + "memberMobile": "13902258852", + "id": 2943654368366469, + "account_data": -262.65, + "after": 1502.81, + "before": 1765.46, + "card_type_id": 2793266846533445, + "create_time": "2025-10-30 21:40:06", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943654293852229, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207405995781, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2815108067970885, + "tenant_member_id": 2799207406946053, + "principal_after": 1502.81, + "principal_before": 1765.46, + "principal_data": -262.65 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2943640897376325, + "account_data": -169.06, + "after": 2254.68, + "before": 2423.74, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 21:26:24", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943640832479173, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2254.68, + "principal_before": 2423.74, + "principal_data": -169.06 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈先生", + "memberMobile": "13535220066", + "id": 2943603475795909, + "account_data": -17.0, + "after": 2081.69, + "before": 2098.69, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 20:48:20", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943603435720581, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799210152216325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799218599413509, + "tenant_member_id": 2799210153232133, + "principal_after": 2081.69, + "principal_before": 2098.69, + "principal_data": -17.0 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "歌神", + "memberMobile": "18819262164", + "id": 2943593815707461, + "account_data": -28.0, + "after": 102.0, + "before": 130.0, + "card_type_id": 2793266846533445, + "create_time": "2025-10-30 20:38:30", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943593762820037, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207369180933, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2800763636451333, + "tenant_member_id": 2799207370163973, + "principal_after": 102.0, + "principal_before": 130.0, + "principal_data": -28.0 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2943557809508421, + "account_data": -141.6, + "after": 2423.74, + "before": 2565.34, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 20:01:53", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943557747544133, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2423.74, + "principal_before": 2565.34, + "principal_data": -141.6 + }, + { + "memberCardTypeName": "活动抵用券", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "贺斌", + "memberMobile": "15017500885", + "id": 2943549053112261, + "account_data": -141.91, + "after": 97.0, + "before": 238.91, + "card_type_id": 2793266846533445, + "create_time": "2025-10-30 19:52:58", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943549009530821, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2938229626505413, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2938229629700293, + "tenant_member_id": 2938229628340421, + "principal_after": 97.0, + "principal_before": 238.91, + "principal_data": -141.91 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2943407124582213, + "account_data": -107.85, + "after": 2565.34, + "before": 2673.19, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 17:28:36", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943407082311622, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2565.34, + "principal_before": 2673.19, + "principal_data": -107.85 + }, + { + "memberCardTypeName": "储值卡", + "paySiteName": "朗朗桌球", + "registerSiteName": "朗朗桌球", + "memberName": "陈腾鑫", + "memberMobile": "17817318218", + "id": 2943272920272709, + "account_data": -8.0, + "after": 2673.19, + "before": 2681.19, + "card_type_id": 2793249295533893, + "create_time": "2025-10-30 15:12:05", + "from_type": 1, + "is_delete": 0, + "operator_id": 2790687322443013, + "operator_name": "收银员:郑丽珊", + "payment_method": 0, + "refund_amount": 0.0, + "register_site_id": 2790685415443269, + "relate_id": 2943272871940165, + "remark": "", + "site_id": 2790685415443269, + "system_member_id": 2799207123224325, + "tenant_id": 2790683160709957, + "tenant_member_card_id": 2799215988246277, + "tenant_member_id": 2799207124305669, + "principal_after": 2673.19, + "principal_before": 2681.19, + "principal_data": -8.0 + } + ] +} \ No newline at end of file diff --git a/tmp/query_missing_tables.py b/tmp/query_missing_tables.py new file mode 100644 index 0000000..6d8784c --- /dev/null +++ b/tmp/query_missing_tables.py @@ -0,0 +1,137 @@ +import psycopg2 +from decimal import Decimal +from datetime import datetime, date, time +import os + +dsn = 'postgresql://local-Python:Neo-local-1991125@100.64.0.4:5432/LLZQ-test' +conn = psycopg2.connect(dsn) +cur = conn.cursor() + +missing_tables = [ + 'dwd_assistant_trash_event', + 'dwd_assistant_trash_event_ex', + 'dwd_groupbuy_redemption', + 'dwd_groupbuy_redemption_ex', + 'dwd_platform_coupon_redemption', + 'dwd_platform_coupon_redemption_ex' +] + +output_dir = r'c:\dev\LLTQ\ETL\feiqiu-ETL\tmp\table_analysis' +os.makedirs(output_dir, exist_ok=True) + +def safe_str(val): + if val is None: + return 'NULL' + if isinstance(val, (Decimal, float)): + return f'{val:.2f}' if isinstance(val, Decimal) else str(val) + if isinstance(val, (datetime, date, time)): + return str(val) + return str(val) + +for table_name in missing_tables: + print(f"Processing {table_name}...") + output_file = os.path.join(output_dir, f'{table_name}.txt') + + with open(output_file, 'w', encoding='utf-8') as f: + f.write('='*80 + '\n') + f.write(f'Table: billiards_dwd.{table_name}\n') + + # Get primary key + cur.execute(""" + SELECT a.attname + FROM pg_index i + JOIN pg_attribute a ON a.attrelid = i.indrelid AND a.attnum = ANY(i.indkey) + WHERE i.indrelid = %s::regclass AND i.indisprimary + """, (f'billiards_dwd.{table_name}',)) + pk_cols = [row[0] for row in cur.fetchall()] + pk_str = ', '.join(pk_cols) if pk_cols else 'None' + f.write(f'Primary Key: {pk_str}\n') + f.write('='*80 + '\n\n') + + # Get columns + cur.execute(""" + SELECT column_name, data_type, is_nullable, + character_maximum_length, numeric_precision, numeric_scale + FROM information_schema.columns + WHERE table_schema = 'billiards_dwd' AND table_name = %s + ORDER BY ordinal_position + """, (table_name,)) + columns = cur.fetchall() + + f.write('## COLUMNS\n') + f.write('-'*80 + '\n') + for col in columns: + col_name, data_type, nullable, char_len, num_prec, num_scale = col + type_str = data_type + if char_len: + type_str = f'{data_type}({char_len})' + elif num_prec and num_scale: + type_str = f'{data_type}({num_prec},{num_scale})' + pk_mark = ' | PK' if col_name in pk_cols else '' + f.write(f'{col_name}: {type_str} | nullable={nullable}{pk_mark}\n') + + f.write('\n## VALUE ANALYSIS (for enum detection)\n') + f.write('-'*80 + '\n\n') + + # Get row count + cur.execute(f'SELECT COUNT(*) FROM billiards_dwd.{table_name}') + row_count = cur.fetchone()[0] + + col_names = [c[0] for c in columns] + col_types = [c[1] for c in columns] + + for col_name, col_type in zip(col_names, col_types): + f.write(f'{col_name}:\n') + + # Count total, non-null, distinct + cur.execute(f''' + SELECT COUNT(*), COUNT({col_name}), COUNT(DISTINCT {col_name}) + FROM billiards_dwd.{table_name} + ''') + total, non_null, distinct = cur.fetchone() + f.write(f' Total: {total}, Non-null: {non_null}, Distinct: {distinct}\n') + + # Flag likely enum + if distinct > 0 and distinct <= 15: + f.write(' *** LIKELY ENUM (distinct <= 15) ***\n') + + # Top 15 values + if col_type not in ('bytea', 'json', 'jsonb'): + try: + cur.execute(f''' + SELECT {col_name}, COUNT(*) as cnt + FROM billiards_dwd.{table_name} + WHERE {col_name} IS NOT NULL + GROUP BY {col_name} + ORDER BY cnt DESC + LIMIT 15 + ''') + top_vals = cur.fetchall() + f.write(' Top values:\n') + for val, cnt in top_vals: + f.write(f' {safe_str(val)}: {cnt}\n') + except Exception as e: + f.write(f' Error getting top values: {e}\n') + f.write('\n') + + # Sample data + f.write('## SAMPLE DATA (first 10 rows)\n') + f.write('-'*80 + '\n') + try: + cur.execute(f'SELECT * FROM billiards_dwd.{table_name} LIMIT 10') + sample_rows = cur.fetchall() + f.write(f'Columns: {col_names}\n\n') + for i, row in enumerate(sample_rows, 1): + f.write(f'Row {i}:\n') + for col_name, val in zip(col_names, row): + f.write(f' {col_name}: {safe_str(val)}\n') + f.write('\n') + if not sample_rows: + f.write('No sample data available.\n') + except Exception as e: + f.write(f'Error fetching samples: {e}\n') + + print(f" -> {output_file} (rows: {row_count})") + +conn.close() +print("\nDone!") diff --git a/tmp/query_schema_and_samples.py b/tmp/query_schema_and_samples.py new file mode 100644 index 0000000..31f184c --- /dev/null +++ b/tmp/query_schema_and_samples.py @@ -0,0 +1,155 @@ +import psycopg2 +import os +import json + +DSN = 'postgresql://local-Python:Neo-local-1991125@100.64.0.4:5432/LLZQ-test' + +conn = psycopg2.connect(DSN) +cur = conn.cursor() + +# 获取所有表 +cur.execute(""" + SELECT table_name + FROM information_schema.tables + WHERE table_schema = 'billiards_dwd' + ORDER BY table_name +""") +tables = [row[0] for row in cur.fetchall()] + +output_dir = r'c:\dev\LLTQ\ETL\feiqiu-ETL\tmp\table_analysis' +os.makedirs(output_dir, exist_ok=True) + +for table in tables: + print(f"Processing {table}...") + + # 1. 获取字段结构 + cur.execute(""" + SELECT + c.column_name, + c.data_type, + c.character_maximum_length, + c.numeric_precision, + c.numeric_scale, + c.is_nullable, + c.column_default + FROM information_schema.columns c + WHERE c.table_schema = 'billiards_dwd' AND c.table_name = %s + ORDER BY c.ordinal_position + """, (table,)) + columns = cur.fetchall() + + # 2. 获取主键信息 + cur.execute(""" + SELECT kcu.column_name + FROM information_schema.table_constraints tc + JOIN information_schema.key_column_usage kcu + ON tc.constraint_name = kcu.constraint_name + AND tc.table_schema = kcu.table_schema + WHERE tc.table_schema = 'billiards_dwd' + AND tc.table_name = %s + AND tc.constraint_type = 'PRIMARY KEY' + """, (table,)) + pk_cols = [row[0] for row in cur.fetchall()] + + # 3. 获取500行样本数据 + try: + cur.execute(f'SELECT * FROM billiards_dwd."{table}" LIMIT 500') + sample_rows = cur.fetchall() + col_names = [desc[0] for desc in cur.description] + except Exception as e: + sample_rows = [] + col_names = [] + print(f" Error fetching samples: {e}") + + # 4. 分析每个字段的值分布(用于识别枚举) + value_analysis = {} + for col_info in columns: + col_name = col_info[0] + data_type = col_info[1] + + # 只对整数、小整数、文本类型做枚举分析 + if data_type in ('integer', 'smallint', 'bigint', 'text', 'character varying', 'boolean'): + try: + cur.execute(f""" + SELECT "{col_name}", COUNT(*) as cnt + FROM billiards_dwd."{table}" + WHERE "{col_name}" IS NOT NULL + GROUP BY "{col_name}" + ORDER BY cnt DESC + LIMIT 20 + """) + distinct_values = cur.fetchall() + + # 获取总行数和非空数 + cur.execute(f""" + SELECT + COUNT(*) as total, + COUNT("{col_name}") as non_null, + COUNT(DISTINCT "{col_name}") as distinct_count + FROM billiards_dwd."{table}" + """) + stats = cur.fetchone() + + value_analysis[col_name] = { + 'total_rows': stats[0], + 'non_null': stats[1], + 'distinct_count': stats[2], + 'top_values': [(str(v[0])[:100] if v[0] is not None else 'NULL', v[1]) for v in distinct_values] + } + except Exception as e: + value_analysis[col_name] = {'error': str(e)} + + # 5. 写入分析文件 + with open(os.path.join(output_dir, f'{table}.txt'), 'w', encoding='utf-8') as f: + f.write(f"=" * 80 + "\n") + f.write(f"Table: billiards_dwd.{table}\n") + f.write(f"Primary Key: {', '.join(pk_cols) if pk_cols else 'None'}\n") + f.write(f"=" * 80 + "\n\n") + + f.write("## COLUMNS\n") + f.write("-" * 80 + "\n") + for col in columns: + col_name, data_type, char_len, num_prec, num_scale, nullable, default = col + type_str = data_type + if char_len: + type_str = f"{data_type}({char_len})" + elif num_prec and data_type == 'numeric': + type_str = f"numeric({num_prec},{num_scale or 0})" + + is_pk = "PK" if col_name in pk_cols else "" + f.write(f"{col_name}: {type_str} | nullable={nullable} | {is_pk}\n") + + f.write("\n## VALUE ANALYSIS (for enum detection)\n") + f.write("-" * 80 + "\n") + for col_name, analysis in value_analysis.items(): + if 'error' in analysis: + f.write(f"\n{col_name}: ERROR - {analysis['error']}\n") + continue + + f.write(f"\n{col_name}:\n") + f.write(f" Total: {analysis['total_rows']}, Non-null: {analysis['non_null']}, Distinct: {analysis['distinct_count']}\n") + + # 如果不同值少于15个,可能是枚举 + if analysis['distinct_count'] <= 15 and analysis['distinct_count'] > 0: + f.write(f" *** LIKELY ENUM (distinct <= 15) ***\n") + + f.write(f" Top values:\n") + for val, cnt in analysis['top_values'][:15]: + f.write(f" {val}: {cnt}\n") + + # 写入样本数据的前10行 + f.write("\n## SAMPLE DATA (first 10 rows)\n") + f.write("-" * 80 + "\n") + if sample_rows: + f.write(f"Columns: {col_names}\n\n") + for i, row in enumerate(sample_rows[:10]): + f.write(f"Row {i+1}:\n") + for j, val in enumerate(row): + val_str = str(val)[:200] if val is not None else 'NULL' + f.write(f" {col_names[j]}: {val_str}\n") + f.write("\n") + else: + f.write("No sample data available.\n") + +print(f"\nGenerated analysis files for {len(tables)} tables in {output_dir}") +conn.close() diff --git a/tmp/table_analysis/dim_assistant.txt b/tmp/table_analysis/dim_assistant.txt new file mode 100644 index 0000000..1ea62cb --- /dev/null +++ b/tmp/table_analysis/dim_assistant.txt @@ -0,0 +1,407 @@ +================================================================================ +Table: billiards_dwd.dim_assistant +Primary Key: assistant_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_id: bigint | nullable=NO | PK +user_id: bigint | nullable=YES | +assistant_no: text | nullable=YES | +real_name: text | nullable=YES | +nickname: text | nullable=YES | +mobile: text | nullable=YES | +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +team_id: bigint | nullable=YES | +team_name: text | nullable=YES | +level: integer | nullable=YES | +entry_time: timestamp with time zone | nullable=YES | +resign_time: timestamp with time zone | nullable=YES | +leave_status: integer | nullable=YES | +assistant_status: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_id: + Total: 69, Non-null: 69, Distinct: 69 + Top values: + 2793528386048069: 1 + 2967523548220229: 1 + 3021267412585413: 1 + 2907972756342981: 1 + 2793532503855173: 1 + 2981625091950725: 1 + 3058170108874053: 1 + 2859886363986821: 1 + 2795061580517445: 1 + 3021271397288901: 1 + 2964640248745157: 1 + 2907961535433285: 1 + 2968952636082757: 1 + 2946266869435205: 1 + 2793399247179845: 1 + +user_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +assistant_no: + Total: 69, Non-null: 69, Distinct: 42 + Top values: + 11: 4 + 10: 4 + 7: 4 + 22: 3 + 13: 3 + 38: 3 + 27: 3 + 3: 3 + 16: 2 + 28: 2 + 12: 2 + 30: 2 + 1: 2 + 8: 2 + 29: 2 + +real_name: + Total: 69, Non-null: 69, Distinct: 68 + Top values: + 梁婷婷: 2 + 覃咏欣: 1 + 向国锐: 1 + 郑美婷: 1 + 赵思源: 1 + 李楚欣: 1 + 杨小满: 1 + 吴丹妮: 1 + 黄月柳: 1 + 卢曼瑶: 1 + 宋家宇: 1 + 田茂楠: 1 + 王嘉琪: 1 + 李萍: 1 + 张芳梅: 1 + +nickname: + Total: 69, Non-null: 69, Distinct: 68 + Top values: + 柚子: 2 + Amy: 1 + 梦梦: 1 + 乔西: 1 + 一一: 1 + 菲菲: 1 + 布丁: 1 + 椰椰: 1 + 小唯: 1 + 饭团: 1 + 周周: 1 + 凤梨: 1 + 小向: 1 + 小崔: 1 + 甜甜: 1 + +mobile: + Total: 69, Non-null: 69, Distinct: 68 + Top values: + 17811423992: 2 + 15675487204: 1 + 13790128037: 1 + 13143526347: 1 + 15213282732: 1 + 18529341883: 1 + 13336435390: 1 + 19024752286: 1 + 15760674807: 1 + 15113501901: 1 + 13042004215: 1 + 13286525485: 1 + 13537431206: 1 + 19974234385: 1 + 15815080450: 1 + +tenant_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 69 + +site_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 69 + +team_id: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2792011585884037: 52 + 2959085810992645: 17 + +team_name: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1组: 52 + 2组: 17 + +level: + Total: 69, Non-null: 69, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 10: 32 + 20: 28 + 30: 4 + 40: 4 + 8: 1 + +leave_status: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 40 + 0: 29 + +assistant_status: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 64 + 2: 5 + +scd2_is_current: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +scd2_version: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['assistant_id', 'user_id', 'assistant_no', 'real_name', 'nickname', 'mobile', 'tenant_id', 'site_id', 'team_id', 'team_name', 'level', 'entry_time', 'resign_time', 'leave_status', 'assistant_status', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + assistant_id: 2946261384596293 + user_id: 0 + assistant_no: 7 + real_name: 梁婷婷 + nickname: 柚子 + mobile: 17811423992 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2959085810992645 + team_name: 2组 + level: 20 + entry_time: 2025-11-01 08:00:00+08:00 + resign_time: 2025-12-01 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + assistant_id: 2929246850797189 + user_id: 0 + assistant_no: 38 + real_name: 陈冰淼 + nickname: 希希 + mobile: 18172319817 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 10 + entry_time: 2025-10-20 08:00:00+08:00 + resign_time: 2025-11-10 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + assistant_id: 2920786464294661 + user_id: 0 + assistant_no: 16 + real_name: 周佳怡 + nickname: 周周 + mobile: 19874278725 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 10 + entry_time: 2025-10-14 08:00:00+08:00 + resign_time: 2225-10-14 17:57:40+08:00 + leave_status: 0 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + assistant_id: 2920799537645381 + user_id: 0 + assistant_no: 10 + real_name: 谭思燕 + nickname: 欣怡 + mobile: 13143526347 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 20 + entry_time: 2025-10-14 08:00:00+08:00 + resign_time: 2025-11-10 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + assistant_id: 2907961535433285 + user_id: 0 + assistant_no: 25 + real_name: 林雨琪 + nickname: 琪琪 + mobile: 18575917075 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 20 + entry_time: 2025-10-05 08:00:00+08:00 + resign_time: 2025-10-13 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + assistant_id: 2907972756342981 + user_id: 0 + assistant_no: 12 + real_name: 林梢熔 + nickname: 可可 + mobile: 15768442206 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 20 + entry_time: 2025-10-05 08:00:00+08:00 + resign_time: 2025-10-13 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + assistant_id: 2889708249270149 + user_id: 0 + assistant_no: 22 + real_name: 张代悦 + nickname: 悦悦 + mobile: 18582838005 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 10 + entry_time: 2025-09-22 08:00:00+08:00 + resign_time: 2025-10-19 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + assistant_id: 2866964303400005 + user_id: 0 + assistant_no: 10 + real_name: 王安琪 + nickname: 椰子 + mobile: 18026446974 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 20 + entry_time: 2025-09-06 08:00:00+08:00 + resign_time: 2025-09-13 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + assistant_id: 2866961022749829 + user_id: 0 + assistant_no: 39 + real_name: 肖紫月 + nickname: 毛毛 + mobile: 15815080450 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 20 + entry_time: 2025-09-06 08:00:00+08:00 + resign_time: 2025-09-13 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + assistant_id: 2866962315594885 + user_id: 0 + assistant_no: 11 + real_name: 田茂楠 + nickname: 甜甜 + mobile: 15329058634 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + team_id: 2792011585884037 + team_name: 1组 + level: 10 + entry_time: 2025-09-06 08:00:00+08:00 + resign_time: 2025-09-07 08:00:00+08:00 + leave_status: 1 + assistant_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_assistant_ex.txt b/tmp/table_analysis/dim_assistant_ex.txt new file mode 100644 index 0000000..be7ad64 --- /dev/null +++ b/tmp/table_analysis/dim_assistant_ex.txt @@ -0,0 +1,359 @@ +================================================================================ +Table: billiards_dwd.dim_assistant_ex +Primary Key: assistant_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_id: bigint | nullable=NO | PK +gender: integer | nullable=YES | +birth_date: timestamp with time zone | nullable=YES | +avatar: text | nullable=YES | +introduce: text | nullable=YES | +video_introduction_url: text | nullable=YES | +height: numeric(5,2) | nullable=YES | +weight: numeric(5,2) | nullable=YES | +shop_name: text | nullable=YES | +group_id: bigint | nullable=YES | +group_name: text | nullable=YES | +person_org_id: bigint | nullable=YES | +staff_id: bigint | nullable=YES | +staff_profile_id: bigint | nullable=YES | +assistant_grade: double precision | nullable=YES | +sum_grade: double precision | nullable=YES | +get_grade_times: integer | nullable=YES | +charge_way: integer | nullable=YES | +allow_cx: integer | nullable=YES | +is_guaranteed: integer | nullable=YES | +salary_grant_enabled: integer | nullable=YES | +entry_type: integer | nullable=YES | +entry_sign_status: integer | nullable=YES | +resign_sign_status: integer | nullable=YES | +work_status: integer | nullable=YES | +show_status: integer | nullable=YES | +show_sort: integer | nullable=YES | +online_status: integer | nullable=YES | +is_delete: integer | nullable=YES | +criticism_status: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +update_time: timestamp with time zone | nullable=YES | +start_time: timestamp with time zone | nullable=YES | +end_time: timestamp with time zone | nullable=YES | +last_table_id: bigint | nullable=YES | +last_table_name: text | nullable=YES | +last_update_name: text | nullable=YES | +order_trade_no: bigint | nullable=YES | +ding_talk_synced: integer | nullable=YES | +site_light_cfg_id: bigint | nullable=YES | +light_equipment_id: text | nullable=YES | +light_status: integer | nullable=YES | +is_team_leader: integer | nullable=YES | +serial_number: bigint | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_id: + Total: 69, Non-null: 69, Distinct: 69 + Top values: + 2793528386048069: 1 + 2967523548220229: 1 + 3021267412585413: 1 + 2907972756342981: 1 + 2793532503855173: 1 + 3058170108874053: 1 + 2981625091950725: 1 + 2859886363986821: 1 + 2795061580517445: 1 + 3021271397288901: 1 + 2964640248745157: 1 + 2907961535433285: 1 + 2968952636082757: 1 + 2946266869435205: 1 + 2859802158598981: 1 + +gender: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 59 + 2: 10 + +avatar: + Total: 69, Non-null: 68, Distinct: 57 + Top values: + https://oss.ficoo.vip/maUiImages/images/defaultAvatar.png: 12 + https://oss.ficoo.vip/cbb/userAvatar/1762251260838/1762251260838133.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1768822727212/1768822727212127.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1763146776673/176314677667349.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1753533232888/175353323288855.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1763165571712/1763165571712117.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1754143838136/175414383813612.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1753804301031/175380430103175.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1753096225412/1753096225412102.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1762790332657/1762790332657113.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1752666304375/1752666304375115.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1763115932997/17631159329978.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1753100896293/1753100896294133.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1753348656243/175334865624351.jpg: 1 + https://oss.ficoo.vip/cbb/userAvatar/1763116007316/176311600731657.jpg: 1 + +introduce: + Total: 69, Non-null: 0, Distinct: 0 + Top values: + +video_introduction_url: + Total: 69, Non-null: 2, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + https://oss.ficoo.vip/cbb/userVideo/1753096246308/175309624630830.mp4: 1 + https://oss.ficoo.vip/cbb/userVideo/1764149549870/176414954987064.mp4: 1 + +shop_name: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 69 + +group_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +group_name: + Total: 69, Non-null: 0, Distinct: 0 + Top values: + +person_org_id: + Total: 69, Non-null: 69, Distinct: 69 + Top values: + 2793537168330821: 1 + 3021271397190597: 1 + 2907961535334981: 1 + 2799135415094341: 1 + 2859802158500677: 1 + 2793532503756869: 1 + 2920786464212741: 1 + 2947562271215109: 1 + 2861304461265989: 1 + 2815988586941445: 1 + 2859776051497797: 1 + 2840060593587909: 1 + 3058170108775749: 1 + 3053834039609477: 1 + 2968952635984453: 1 + +staff_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +staff_profile_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +get_grade_times: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +charge_way: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 69 + +allow_cx: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +is_guaranteed: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +salary_grant_enabled: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 69 + +entry_type: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 68 + 3: 1 + +entry_sign_status: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +resign_sign_status: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +work_status: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 40 + 1: 29 + +show_status: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +show_sort: + Total: 69, Non-null: 69, Distinct: 41 + Top values: + 11: 4 + 10: 4 + 7: 4 + 13: 3 + 3: 3 + 27: 3 + 22: 3 + 38: 3 + 12: 2 + 8: 2 + 1: 2 + 5: 2 + 9: 2 + 30: 2 + 28: 2 + +online_status: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +is_delete: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +criticism_status: + Total: 69, Non-null: 69, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 68 + 2: 1 + +last_table_id: + Total: 69, Non-null: 69, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 64 + 2956248279567557: 3 + 2793017278451845: 1 + 2793018776735877: 1 + +last_table_name: + Total: 69, Non-null: 5, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 发财: 3 + C2: 1 + VIP包厢 VIP5: 1 + +last_update_name: + Total: 69, Non-null: 40, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 教练:周蒙: 24 + 管理员:郑丽珊: 7 + 教练:夏滋岸: 6 + 助教管理员:黄月柳: 3 + +order_trade_no: + Total: 69, Non-null: 69, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 64 + 3012902144839045: 3 + 3058292881704709: 1 + 3012777799994757: 1 + +ding_talk_synced: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +site_light_cfg_id: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +light_equipment_id: + Total: 69, Non-null: 0, Distinct: 0 + Top values: + +light_status: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 69 + +is_team_leader: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 69 + +serial_number: + Total: 69, Non-null: 69, Distinct: 61 + Top values: + 0: 9 + 4003: 1 + 4008: 1 + 1817: 1 + 443: 1 + 511: 1 + 1173: 1 + 3995: 1 + 3877: 1 + 3999: 1 + 1245: 1 + 4628: 1 + 1627: 1 + 3110: 1 + 3973: 1 + +scd2_is_current: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +scd2_version: + Total: 69, Non-null: 69, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 69 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +No sample data available. diff --git a/tmp/table_analysis/dim_goods_category.txt b/tmp/table_analysis/dim_goods_category.txt new file mode 100644 index 0000000..24d0409 --- /dev/null +++ b/tmp/table_analysis/dim_goods_category.txt @@ -0,0 +1,349 @@ +================================================================================ +Table: billiards_dwd.dim_goods_category +Primary Key: category_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +category_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +category_name: character varying(50) | nullable=YES | +alias_name: character varying(50) | nullable=YES | +parent_category_id: bigint | nullable=YES | +business_name: character varying(50) | nullable=YES | +tenant_goods_business_id: bigint | nullable=YES | +category_level: integer | nullable=YES | +is_leaf: integer | nullable=YES | +open_salesman: integer | nullable=YES | +sort_order: integer | nullable=YES | +is_warehousing: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +category_id: + Total: 26, Non-null: 26, Distinct: 26 + Top values: + 2792035069284229: 1 + 2790683528350540: 1 + 2790683528350545: 1 + 2792062778003333: 1 + 2790683528350542: 1 + 2790683528350536: 1 + 2790683528350539: 1 + 2793217944864581: 1 + 2790683528350538: 1 + 2793221283104581: 1 + 2793221553489733: 1 + 2793218343257925: 1 + 2792063209623429: 1 + 2793236829620037: 1 + 2791948300259205: 1 + +tenant_id: + Total: 26, Non-null: 26, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 26 + +category_name: + Total: 26, Non-null: 26, Distinct: 18 + Top values: + 零食: 2 + 酒水: 2 + 小吃: 2 + 雪糕: 2 + 果盘: 2 + 其他: 2 + 槟榔: 2 + 香烟: 2 + 其他2: 1 + 面: 1 + 饮料: 1 + 咖啡: 1 + 茶水: 1 + 皮头: 1 + 加料: 1 + +alias_name: + Total: 26, Non-null: 17, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + : 17 + +parent_category_id: + Total: 26, Non-null: 26, Distinct: 10 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 9 + 2790683528350539: 6 + 2790683528350535: 3 + 2791941988405125: 2 + 2790683528350545: 1 + 2790683528350533: 1 + 2793217944864581: 1 + 2792062778003333: 1 + 2793220945250117: 1 + 2791942087561093: 1 + +business_name: + Total: 26, Non-null: 26, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 酒水: 7 + 器材: 4 + 零食: 3 + 香烟: 2 + 小吃: 2 + 雪糕: 2 + 水果: 2 + 槟榔: 2 + 其他: 2 + +tenant_goods_business_id: + Total: 26, Non-null: 26, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528317768: 7 + 2790683528317767: 4 + 2791932037238661: 3 + 2793220268902213: 2 + 2791931866402693: 2 + 2793217599407941: 2 + 2790683528317765: 2 + 2790683528317769: 2 + 2790683528317766: 2 + +category_level: + Total: 26, Non-null: 26, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 17 + 1: 9 + +is_leaf: + Total: 26, Non-null: 26, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 17 + 0: 9 + +open_salesman: + Total: 26, Non-null: 26, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 26 + +sort_order: + Total: 26, Non-null: 26, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23 + 1: 3 + +is_warehousing: + Total: 26, Non-null: 26, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 26 + +scd2_is_current: + Total: 26, Non-null: 26, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 26 + +scd2_version: + Total: 26, Non-null: 26, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 26 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['category_id', 'tenant_id', 'category_name', 'alias_name', 'parent_category_id', 'business_name', 'tenant_goods_business_id', 'category_level', 'is_leaf', 'open_salesman', 'sort_order', 'is_warehousing', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + category_id: 2790683528350534 + tenant_id: 2790683160709957 + category_name: 槟榔 + alias_name: + parent_category_id: 2790683528350533 + business_name: 槟榔 + tenant_goods_business_id: 2790683528317766 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + category_id: 2790683528350536 + tenant_id: 2790683160709957 + category_name: 皮头 + alias_name: + parent_category_id: 2790683528350535 + business_name: 器材 + tenant_goods_business_id: 2790683528317767 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + category_id: 2790683528350537 + tenant_id: 2790683160709957 + category_name: 球杆 + alias_name: + parent_category_id: 2790683528350535 + business_name: 器材 + tenant_goods_business_id: 2790683528317767 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + category_id: 2790683528350538 + tenant_id: 2790683160709957 + category_name: 其他 + alias_name: + parent_category_id: 2790683528350535 + business_name: 器材 + tenant_goods_business_id: 2790683528317767 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + category_id: 2790683528350540 + tenant_id: 2790683160709957 + category_name: 饮料 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + category_id: 2790683528350541 + tenant_id: 2790683160709957 + category_name: 酒水 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + category_id: 2790683528350542 + tenant_id: 2790683160709957 + category_name: 茶水 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + category_id: 2790683528350543 + tenant_id: 2790683160709957 + category_name: 咖啡 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + category_id: 2790683528350544 + tenant_id: 2790683160709957 + category_name: 加料 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + category_id: 2793221553489733 + tenant_id: 2790683160709957 + category_name: 洋酒 + alias_name: + parent_category_id: 2790683528350539 + business_name: 酒水 + tenant_goods_business_id: 2790683528317768 + category_level: 2 + is_leaf: 1 + open_salesman: 2 + sort_order: 0 + is_warehousing: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_groupbuy_package.txt b/tmp/table_analysis/dim_groupbuy_package.txt new file mode 100644 index 0000000..0b35c46 --- /dev/null +++ b/tmp/table_analysis/dim_groupbuy_package.txt @@ -0,0 +1,386 @@ +================================================================================ +Table: billiards_dwd.dim_groupbuy_package +Primary Key: groupbuy_package_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +groupbuy_package_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +package_name: character varying(200) | nullable=YES | +package_template_id: bigint | nullable=YES | +selling_price: numeric(10,2) | nullable=YES | +coupon_face_value: numeric(10,2) | nullable=YES | +duration_seconds: integer | nullable=YES | +start_time: timestamp with time zone | nullable=YES | +end_time: timestamp with time zone | nullable=YES | +table_area_name: character varying(100) | nullable=YES | +is_enabled: integer | nullable=YES | +is_delete: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +tenant_table_area_id_list: character varying(512) | nullable=YES | +card_type_ids: character varying(255) | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +groupbuy_package_id: + Total: 34, Non-null: 34, Distinct: 34 + Top values: + 3048468851870085: 1 + 3030873639701573: 1 + 3030873437310021: 1 + 2801875268668357: 1 + 3030873263688773: 1 + 3031000036133445: 1 + 3035353129373509: 1 + 2798731703045189: 1 + 3030872859429829: 1 + 2798734170983493: 1 + 3030874907937861: 1 + 2861343275830405: 1 + 3029784419027909: 1 + 2798728823213061: 1 + 3035353102028549: 1 + +tenant_id: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 34 + +site_id: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 34 + +package_name: + Total: 34, Non-null: 34, Distinct: 18 + Top values: + 中八、斯诺克包厢两小时: 6 + 斯诺克两小时: 5 + 新人特惠A区中八一小时: 2 + 全天A区中八一小时: 2 + KTV欢唱四小时: 2 + 全天B区中八两小时: 2 + 全天斯诺克一小时: 2 + 助理教练竞技教学两小时: 2 + 全天A区中八两小时: 2 + 麻将 、掼蛋包厢四小时: 1 + 中八A区新人特惠一小时: 1 + 新人特惠一小时: 1 + 午夜一小时: 1 + 麻将包厢4小时: 1 + 早场特惠一小时: 1 + +package_template_id: + Total: 34, Non-null: 34, Distinct: 15 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1370841337: 3 + 1130443985: 3 + 1814707240811572: 3 + 1812429097416714: 3 + 1126976372: 3 + 1147633733: 2 + 1128411555: 2 + 1130465371: 2 + 1173128804: 2 + 1203035334: 2 + 1134269810: 2 + 1137882866: 2 + 1814983609169019: 2 + 1137872168: 2 + 1134850618: 1 + +duration_seconds: + Total: 34, Non-null: 34, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 7200: 17 + 3600: 13 + 14400: 4 + +table_area_name: + Total: 34, Non-null: 17, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + A区: 8 + VIP包厢: 3 + 斯诺克区: 2 + B区: 2 + 麻将房: 1 + 888: 1 + +is_enabled: + Total: 34, Non-null: 34, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 24 + 2: 10 + +is_delete: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 34 + +tenant_table_area_id_list: + Total: 34, Non-null: 17, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791960001957765: 8 + 2791961060364165: 3 + 2791960521691013: 2 + 2791961347968901: 2 + 2791962314215301: 1 + 2791961709907845: 1 + +card_type_ids: + Total: 34, Non-null: 31, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 31 + +scd2_is_current: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +scd2_version: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['groupbuy_package_id', 'tenant_id', 'site_id', 'package_name', 'package_template_id', 'selling_price', 'coupon_face_value', 'duration_seconds', 'start_time', 'end_time', 'table_area_name', 'is_enabled', 'is_delete', 'create_time', 'tenant_table_area_id_list', 'card_type_ids', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + groupbuy_package_id: 2798905767676933 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 中八、斯诺克包厢两小时 + package_template_id: 1812429097416714 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 7200 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: VIP包厢 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 15:34:13+08:00 + tenant_table_area_id_list: 2791961060364165 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + groupbuy_package_id: 2798901295615045 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 新人特惠A区中八一小时 + package_template_id: 1814707240811572 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 3600 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: A区 + is_enabled: 2 + is_delete: 0 + create_time: 2025-07-20 15:29:40+08:00 + tenant_table_area_id_list: 2791960001957765 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + groupbuy_package_id: 2798898826300485 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 斯诺克两小时 + package_template_id: 1814983609169019 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 7200 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: 斯诺克区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 15:27:09+08:00 + tenant_table_area_id_list: 2791961347968901 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + groupbuy_package_id: 2798734170983493 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 助理教练竞技教学两小时 + package_template_id: 1173128804 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 7200 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: A区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:39:39+08:00 + tenant_table_area_id_list: 2791960001957765 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + groupbuy_package_id: 2798732571167749 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 全天斯诺克一小时 + package_template_id: 1147633733 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 3600 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-30 00:00:00+08:00 + table_area_name: 斯诺克区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:38:02+08:00 + tenant_table_area_id_list: 2791961347968901 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + groupbuy_package_id: 2836713896429317 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 午夜一小时 + package_template_id: 1370841337 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 3600 + start_time: 2025-08-16 00:00:00+08:00 + end_time: 2026-08-17 00:00:00+08:00 + table_area_name: A区 + is_enabled: 2 + is_delete: 0 + create_time: 2025-08-16 08:34:38+08:00 + tenant_table_area_id_list: 2791960001957765 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + groupbuy_package_id: 2798731703045189 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: KTV欢唱四小时 + package_template_id: 1137882866 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 14400 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: 888 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:37:09+08:00 + tenant_table_area_id_list: 2791961709907845 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + groupbuy_package_id: 2798728823213061 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 全天B区中八两小时 + package_template_id: 1137872168 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 7200 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: B区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:34:13+08:00 + tenant_table_area_id_list: 2791960521691013 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + groupbuy_package_id: 2798727423528005 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 全天A区中八一小时 + package_template_id: 1128411555 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 3600 + start_time: 2025-07-21 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: A区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:32:48+08:00 + tenant_table_area_id_list: 2791960001957765 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + groupbuy_package_id: 2798723640069125 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + package_name: 中八A区新人特惠一小时 + package_template_id: 1203035334 + selling_price: 0.00 + coupon_face_value: 0.00 + duration_seconds: 3600 + start_time: 2025-07-20 00:00:00+08:00 + end_time: 2025-12-31 00:00:00+08:00 + table_area_name: A区 + is_enabled: 1 + is_delete: 0 + create_time: 2025-07-20 12:28:57+08:00 + tenant_table_area_id_list: 2791960001957765 + card_type_ids: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_groupbuy_package_ex.txt b/tmp/table_analysis/dim_groupbuy_package_ex.txt new file mode 100644 index 0000000..077b8c9 --- /dev/null +++ b/tmp/table_analysis/dim_groupbuy_package_ex.txt @@ -0,0 +1,453 @@ +================================================================================ +Table: billiards_dwd.dim_groupbuy_package_ex +Primary Key: groupbuy_package_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +groupbuy_package_id: bigint | nullable=NO | PK +site_name: character varying(100) | nullable=YES | +usable_count: integer | nullable=YES | +date_type: integer | nullable=YES | +usable_range: character varying(255) | nullable=YES | +date_info: character varying(255) | nullable=YES | +start_clock: character varying(16) | nullable=YES | +end_clock: character varying(16) | nullable=YES | +add_start_clock: character varying(16) | nullable=YES | +add_end_clock: character varying(16) | nullable=YES | +area_tag_type: integer | nullable=YES | +table_area_id: bigint | nullable=YES | +tenant_table_area_id: bigint | nullable=YES | +table_area_id_list: character varying(512) | nullable=YES | +group_type: integer | nullable=YES | +system_group_type: integer | nullable=YES | +package_type: integer | nullable=YES | +effective_status: integer | nullable=YES | +max_selectable_categories: integer | nullable=YES | +creator_name: character varying(100) | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +groupbuy_package_id: + Total: 34, Non-null: 34, Distinct: 34 + Top values: + 3048468851870085: 1 + 3030873639701573: 1 + 3030873437310021: 1 + 2801875268668357: 1 + 3030873263688773: 1 + 3031000036133445: 1 + 3035353129373509: 1 + 2798731703045189: 1 + 3030872859429829: 1 + 2798734170983493: 1 + 3030874907937861: 1 + 2861343275830405: 1 + 3029784419027909: 1 + 2798728823213061: 1 + 3035353102028549: 1 + +site_name: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 34 + +usable_count: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 34 + +date_type: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +usable_range: + Total: 34, Non-null: 0, Distinct: 0 + Top values: + +date_info: + Total: 34, Non-null: 4, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 4 + +start_clock: + Total: 34, Non-null: 34, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 00:00:00: 29 + 10:00:00: 4 + 23:00:00: 1 + +end_clock: + Total: 34, Non-null: 34, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1.00:00:00: 29 + 23:59:59: 3 + 1.02:00:00: 2 + +add_start_clock: + Total: 34, Non-null: 34, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 00:00:00: 27 + 10:00:00: 6 + 23:00:00: 1 + +add_end_clock: + Total: 34, Non-null: 34, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1.00:00:00: 27 + 23:59:59: 3 + 18:00:00: 2 + 23:59:00: 1 + 1.02:00:00: 1 + +area_tag_type: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +table_area_id: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 34 + +tenant_table_area_id: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 34 + +table_area_id_list: + Total: 34, Non-null: 0, Distinct: 0 + Top values: + +group_type: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +system_group_type: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +package_type: + Total: 34, Non-null: 34, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 26 + 2: 8 + +effective_status: + Total: 34, Non-null: 34, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 24 + 3: 10 + +max_selectable_categories: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 34 + +creator_name: + Total: 34, Non-null: 34, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 店长:郑丽珊: 32 + 管理员:郑丽珊: 2 + +scd2_is_current: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +scd2_version: + Total: 34, Non-null: 34, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 34 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['groupbuy_package_id', 'site_name', 'usable_count', 'date_type', 'usable_range', 'date_info', 'start_clock', 'end_clock', 'add_start_clock', 'add_end_clock', 'area_tag_type', 'table_area_id', 'tenant_table_area_id', 'table_area_id_list', 'group_type', 'system_group_type', 'package_type', 'effective_status', 'max_selectable_categories', 'creator_name', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + groupbuy_package_id: 2798905767676933 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 2 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + groupbuy_package_id: 2798901295615045 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 2 + effective_status: 3 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + groupbuy_package_id: 2798898826300485 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 2 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + groupbuy_package_id: 2798734170983493 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + groupbuy_package_id: 2798732571167749 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + groupbuy_package_id: 2836713896429317 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 3 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + groupbuy_package_id: 2798731703045189 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 10:00:00 + add_end_clock: 18:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + groupbuy_package_id: 2798728823213061 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + groupbuy_package_id: 2798727423528005 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + groupbuy_package_id: 2798723640069125 + site_name: 朗朗桌球 + usable_count: 0 + date_type: 1 + usable_range: NULL + date_info: NULL + start_clock: 00:00:00 + end_clock: 1.00:00:00 + add_start_clock: 00:00:00 + add_end_clock: 1.00:00:00 + area_tag_type: 1 + table_area_id: 0 + tenant_table_area_id: 0 + table_area_id_list: NULL + group_type: 1 + system_group_type: 1 + package_type: 1 + effective_status: 1 + max_selectable_categories: 0 + creator_name: 店长:郑丽珊 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_member.txt b/tmp/table_analysis/dim_member.txt new file mode 100644 index 0000000..744d702 --- /dev/null +++ b/tmp/table_analysis/dim_member.txt @@ -0,0 +1,309 @@ +================================================================================ +Table: billiards_dwd.dim_member +Primary Key: member_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +member_id: bigint | nullable=NO | PK +system_member_id: bigint | nullable=YES | +tenant_id: bigint | nullable=YES | +register_site_id: bigint | nullable=YES | +mobile: text | nullable=YES | +nickname: text | nullable=YES | +member_card_grade_code: bigint | nullable=YES | +member_card_grade_name: text | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +update_time: timestamp with time zone | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +member_id: + Total: 556, Non-null: 556, Distinct: 556 + Top values: + 2799210018309893: 1 + 2799207239993093: 1 + 2799207556597509: 1 + 2799212798150405: 1 + 2854163871024645: 1 + 2799207413319429: 1 + 2824666609323205: 1 + 2799210171156229: 1 + 2799207478544133: 1 + 2799209907373829: 1 + 2799212804736773: 1 + 2799212571199237: 1 + 2799212341905157: 1 + 2799212451677957: 1 + 2799212515231493: 1 + +system_member_id: + Total: 556, Non-null: 556, Distinct: 538 + Top values: + 2799212727961349: 3 + 2799207093290757: 2 + 2799207107888901: 2 + 2799207262406405: 2 + 2799207474251525: 2 + 2799207235225349: 2 + 2881216339331077: 2 + 2799207096796933: 2 + 2048629413694661: 2 + 2799212789827333: 2 + 2799212827379461: 2 + 2799207381174021: 2 + 2799207258769157: 2 + 2799212755666693: 2 + 2799210017343237: 2 + +tenant_id: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 556 + +register_site_id: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 556 + +mobile: + Total: 556, Non-null: 556, Distinct: 555 + Top values: + 17631643741(1): 2 + 15622365001: 1 + 13602790168: 1 + 15914518556(1): 1 + 13715858131: 1 + 13070208730: 1 + 15112158974: 1 + 18599199818: 1 + 18320635652: 1 + 18488883192: 1 + 18023941277: 1 + 18620117999: 1 + 15818822109: 1 + 13450297682: 1 + 13802623964: 1 + +nickname: + Total: 556, Non-null: 556, Distinct: 350 + Top values: + 陈先生: 19 + 张先生: 17 + 李先生: 16 + 刘先生: 14 + 黄先生: 13 + 王先生: 12 + 胡先生: 9 + 林先生: 8 + 杨先生: 6 + 谢先生: 6 + 郭先生: 6 + 周先生: 6 + 潘先生: 6 + 蔡先生: 5 + 吴先生: 5 + +member_card_grade_code: + Total: 556, Non-null: 556, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528022853: 272 + 2790683528022855: 263 + 2790683528022857: 7 + 2790683528022854: 7 + 2790683528022856: 7 + +member_card_grade_name: + Total: 556, Non-null: 556, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 储值卡: 272 + 台费卡: 263 + 年卡: 7 + 活动抵用券: 7 + 月卡: 7 + +scd2_is_current: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 556 + +scd2_version: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 556 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['member_id', 'system_member_id', 'tenant_id', 'register_site_id', 'mobile', 'nickname', 'member_card_grade_code', 'member_card_grade_name', 'create_time', 'update_time', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + member_id: 3043883848157381 + system_member_id: 3043883846568133 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 15146102616 + nickname: 吴先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-09 16:58:48+08:00 + update_time: NULL + scd2_start_time: 2026-01-12 03:54:18.599288+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + member_id: 3037269565082949 + system_member_id: 3037269563493701 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 13922740721 + nickname: 范先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-05 00:50:24+08:00 + update_time: NULL + scd2_start_time: 2026-01-12 03:54:18.599288+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + member_id: 3066773303512389 + system_member_id: 3066773300268357 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 17306741548 + nickname: 李 + member_card_grade_code: 2790683528022856 + member_card_grade_name: 活动抵用券 + create_time: 2026-01-25 21:03:10+08:00 + update_time: NULL + scd2_start_time: 2026-01-25 21:29:57.964136+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + member_id: 3048238811858693 + system_member_id: 3048238810220293 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 15815818028 + nickname: 胡先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-12 18:48:54+08:00 + update_time: NULL + scd2_start_time: 2026-01-15 07:26:48.803706+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + member_id: 3034509269552197 + system_member_id: 3034509267242053 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 13622766944 + nickname: 王 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-03 02:02:29+08:00 + update_time: NULL + scd2_start_time: 2026-01-12 03:54:18.599288+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + member_id: 3032780662360965 + system_member_id: 3032780660542341 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 18698422638 + nickname: 柳先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-01 20:44:04+08:00 + update_time: NULL + scd2_start_time: 2026-01-12 03:54:18.599288+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + member_id: 3025342944414469 + system_member_id: 2799212755666693 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 18038230815 + nickname: 王先生 + member_card_grade_code: 2790683528022856 + member_card_grade_name: 活动抵用券 + create_time: 2025-12-27 14:38:01+08:00 + update_time: NULL + scd2_start_time: 2026-01-12 03:54:18.599288+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + member_id: 3052749341853317 + system_member_id: 3052749336856197 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 13434273425 + nickname: 孙总 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-15 23:17:15+08:00 + update_time: NULL + scd2_start_time: 2026-01-15 23:34:17.712089+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + member_id: 3055176918828421 + system_member_id: 3055176917108101 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 18898887676 + nickname: 章先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-17 16:26:43+08:00 + update_time: NULL + scd2_start_time: 2026-01-19 17:03:03.008890+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + member_id: 3054195561631109 + system_member_id: 3054195559402885 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + mobile: 15902048888 + nickname: 公孙先生 + member_card_grade_code: 2790683528022853 + member_card_grade_name: 储值卡 + create_time: 2026-01-16 23:48:25+08:00 + update_time: NULL + scd2_start_time: 2026-01-19 17:03:03.008890+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_member_card_account.txt b/tmp/table_analysis/dim_member_card_account.txt new file mode 100644 index 0000000..8736686 --- /dev/null +++ b/tmp/table_analysis/dim_member_card_account.txt @@ -0,0 +1,442 @@ +================================================================================ +Table: billiards_dwd.dim_member_card_account +Primary Key: member_card_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +member_card_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +register_site_id: bigint | nullable=YES | +tenant_member_id: bigint | nullable=YES | +system_member_id: bigint | nullable=YES | +card_type_id: bigint | nullable=YES | +member_card_grade_code: bigint | nullable=YES | +member_card_grade_code_name: text | nullable=YES | +member_card_type_name: text | nullable=YES | +member_name: text | nullable=YES | +member_mobile: text | nullable=YES | +balance: numeric(18,2) | nullable=YES | +start_time: timestamp with time zone | nullable=YES | +end_time: timestamp with time zone | nullable=YES | +last_consume_time: timestamp with time zone | nullable=YES | +status: integer | nullable=YES | +is_delete: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +member_card_id: + Total: 945, Non-null: 945, Distinct: 945 + Top values: + 2793254697453573: 1 + 2793268303710149: 1 + 2793308329789317: 1 + 2799215867168517: 1 + 2799215872657157: 1 + 2799215877195525: 1 + 2799215882176261: 1 + 2799215886796549: 1 + 2799215892219653: 1 + 2799215897331461: 1 + 2799215901869829: 1 + 2799215906440965: 1 + 2799215912814341: 1 + 2799215918532357: 1 + 2799215923578629: 1 + +tenant_id: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 945 + +register_site_id: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 945 + +tenant_member_id: + Total: 945, Non-null: 945, Distinct: 491 + Top values: + 0: 102 + 2799207406946053: 5 + 2799207522600709: 5 + 2853881398644101: 4 + 2791994266390405: 4 + 2799207363643141: 4 + 2820625955784965: 4 + 2799207338198789: 4 + 2799207120815877: 4 + 2799209753708293: 4 + 2799207287523077: 4 + 2799207359858437: 4 + 2799207342704389: 4 + 2799207435323141: 4 + 2799207595755269: 3 + +system_member_id: + Total: 945, Non-null: 945, Distinct: 491 + Top values: + 0: 102 + 2799207521568517: 5 + 2799207405995781: 5 + 2820625954179333: 4 + 2799209752512261: 4 + 2799207434372869: 4 + 2799207341557509: 4 + 2799207286507269: 4 + 2799207258769157: 4 + 2485293902352645: 4 + 2799207358777093: 4 + 2791994265423749: 4 + 2799207119800069: 4 + 2799207337199365: 4 + 2799207269025541: 3 + +card_type_id: + Total: 945, Non-null: 945, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2793249295533893: 420 + 2791990152417157: 343 + 2793266846533445: 115 + 2794699703437125: 49 + 2793306611533637: 11 + 2791987095408517: 7 + +member_card_grade_code: + Total: 945, Non-null: 945, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528022853: 420 + 2790683528022855: 343 + 2790683528022856: 115 + 2790683528022858: 49 + 2790683528022857: 11 + 2790683528022854: 7 + +member_card_grade_code_name: + Total: 945, Non-null: 945, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 储值卡: 420 + 台费卡: 343 + 活动抵用券: 115 + 酒水卡: 49 + 月卡: 11 + 年卡: 7 + +member_card_type_name: + Total: 945, Non-null: 945, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 储值卡: 420 + 台费卡: 343 + 活动抵用券: 115 + 酒水卡: 49 + 月卡: 11 + 年卡: 7 + +member_name: + Total: 945, Non-null: 843, Distinct: 295 + Top values: + 陈先生: 29 + 李先生: 28 + 张先生: 28 + 黄先生: 19 + 刘先生: 18 + 胡先生: 17 + 林先生: 17 + 王先生: 15 + 罗先生: 12 + 周先生: 11 + 郭先生: 9 + 杨先生: 9 + 潘先生: 9 + 蔡先生: 9 + 江先生: 8 + +member_mobile: + Total: 945, Non-null: 843, Distinct: 490 + Top values: + 13902258852: 5 + 18826267530: 5 + 13385143091: 4 + 13924036996: 4 + 18320523495: 4 + 17267866666: 4 + 18819484838: 4 + 13826479539: 4 + 13711268012: 4 + 13811638071: 4 + 13286525485: 4 + 13925126339: 4 + 17727637538: 4 + 15550898201: 3 + 13450297682: 3 + +status: + Total: 945, Non-null: 945, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 935 + 4: 10 + +is_delete: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 945 + +scd2_is_current: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +scd2_version: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['member_card_id', 'tenant_id', 'register_site_id', 'tenant_member_id', 'system_member_id', 'card_type_id', 'member_card_grade_code', 'member_card_grade_code_name', 'member_card_type_name', 'member_name', 'member_mobile', 'balance', 'start_time', 'end_time', 'last_consume_time', 'status', 'is_delete', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + member_card_id: 3048239462909701 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3048238811858693 + system_member_id: 3048238810220293 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 胡先生 + member_mobile: 15815818028 + balance: 0.00 + start_time: 2026-01-12 18:49:34+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-12 18:50:23+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-15 07:26:51.246510+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + member_card_id: 3048238812202757 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3048238811858693 + system_member_id: 3048238810220293 + card_type_id: 2793249295533893 + member_card_grade_code: 2790683528022853 + member_card_grade_code_name: 储值卡 + member_card_type_name: 储值卡 + member_name: 胡先生 + member_mobile: 15815818028 + balance: 859.72 + start_time: 2026-01-12 18:48:54+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-13 21:31:41+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-15 07:26:51.246510+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + member_card_id: 3052750402162821 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3052749341853317 + system_member_id: 3052749336856197 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 孙总 + member_mobile: 13434273425 + balance: 1588.00 + start_time: 2026-01-15 23:18:20+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-15 23:18:42+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-15 23:34:17.712089+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + member_card_id: 3015999424284165 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 2799209753708293 + system_member_id: 2799209752512261 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 胡总 + member_mobile: 13385143091 + balance: 0.00 + start_time: 2025-12-21 00:13:18+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2025-12-21 00:14:03+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2025-12-26 08:02:56.102609+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + member_card_id: 3043884200789893 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3043883848157381 + system_member_id: 3043883846568133 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 吴先生 + member_mobile: 15146102616 + balance: 0.00 + start_time: 2026-01-09 16:59:10+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-11 15:01:55+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + member_card_id: 3043883848534213 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3043883848157381 + system_member_id: 3043883846568133 + card_type_id: 2793249295533893 + member_card_grade_code: 2790683528022853 + member_card_grade_code_name: 储值卡 + member_card_type_name: 储值卡 + member_name: 吴先生 + member_mobile: 15146102616 + balance: 1958.00 + start_time: 2026-01-09 16:58:48+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-11 15:01:55+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + member_card_id: 3039974286231365 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 2901526704180613 + system_member_id: 2901526703000965 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 张无忌 + member_mobile: 13686797215 + balance: 0.00 + start_time: 2026-01-06 22:41:48+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-07 00:10:09+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + member_card_id: 3037269815201093 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3037269565082949 + system_member_id: 3037269563493701 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 范先生 + member_mobile: 13922740721 + balance: 0.00 + start_time: 2026-01-05 00:50:40+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-05 00:51:08+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + member_card_id: 3037269565459781 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3037269565082949 + system_member_id: 3037269563493701 + card_type_id: 2793249295533893 + member_card_grade_code: 2790683528022853 + member_card_grade_code_name: 储值卡 + member_card_type_name: 储值卡 + member_name: 范先生 + member_mobile: 13922740721 + balance: 0.00 + start_time: 2026-01-05 00:50:25+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-07 03:22:38+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + member_card_id: 3034509687458885 + tenant_id: 2790683160709957 + register_site_id: 2790685415443269 + tenant_member_id: 3034509269552197 + system_member_id: 3034509267242053 + card_type_id: 2793266846533445 + member_card_grade_code: 2790683528022856 + member_card_grade_code_name: 活动抵用券 + member_card_type_name: 活动抵用券 + member_name: 王 + member_mobile: 13622766944 + balance: 288.00 + start_time: 2026-01-03 02:02:55+08:00 + end_time: 2225-01-01 00:00:00+08:00 + last_consume_time: 2026-01-03 02:48:43+08:00 + status: 1 + is_delete: 0 + scd2_start_time: 2026-01-12 03:54:39.947935+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_member_card_account_ex.txt b/tmp/table_analysis/dim_member_card_account_ex.txt new file mode 100644 index 0000000..8213d2c --- /dev/null +++ b/tmp/table_analysis/dim_member_card_account_ex.txt @@ -0,0 +1,213 @@ +================================================================================ +Table: billiards_dwd.dim_member_card_account_ex +Primary Key: member_card_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +member_card_id: bigint | nullable=NO | PK +site_name: text | nullable=YES | +tenant_name: character varying(64) | nullable=YES | +tenantavatar: text | nullable=YES | +effect_site_id: bigint | nullable=YES | +able_cross_site: integer | nullable=YES | +card_physics_type: integer | nullable=YES | +card_no: text | nullable=YES | +bind_password: text | nullable=YES | +use_scene: text | nullable=YES | +denomination: numeric(18,2) | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +disable_start_time: timestamp with time zone | nullable=YES | +disable_end_time: timestamp with time zone | nullable=YES | +is_allow_give: integer | nullable=YES | +is_allow_order_deduct: integer | nullable=YES | +sort: integer | nullable=YES | +table_discount: numeric(10,2) | nullable=YES | +goods_discount: numeric(10,2) | nullable=YES | +assistant_discount: numeric(10,2) | nullable=YES | +assistant_reward_discount: numeric(10,2) | nullable=YES | +table_service_discount: numeric(10,2) | nullable=YES | +goods_service_discount: numeric(10,2) | nullable=YES | +assistant_service_discount: numeric(10,2) | nullable=YES | +coupon_discount: numeric(10,2) | nullable=YES | +table_discount_sub_switch: integer | nullable=YES | +goods_discount_sub_switch: integer | nullable=YES | +assistant_discount_sub_switch: integer | nullable=YES | +assistant_reward_discount_sub_switch: integer | nullable=YES | +goods_discount_range_type: integer | nullable=YES | +table_deduct_radio: numeric(10,2) | nullable=YES | +goods_deduct_radio: numeric(10,2) | nullable=YES | +assistant_deduct_radio: numeric(10,2) | nullable=YES | +table_service_deduct_radio: numeric(10,2) | nullable=YES | +goods_service_deduct_radio: numeric(10,2) | nullable=YES | +assistant_service_deduct_radio: numeric(10,2) | nullable=YES | +assistant_reward_deduct_radio: numeric(10,2) | nullable=YES | +coupon_deduct_radio: numeric(10,2) | nullable=YES | +cardsettlededuct: numeric(18,2) | nullable=YES | +tablecarddeduct: numeric(18,2) | nullable=YES | +tableservicecarddeduct: numeric(18,2) | nullable=YES | +goodscardeduct: numeric(18,2) | nullable=YES | +goodsservicecarddeduct: numeric(18,2) | nullable=YES | +assistantcarddeduct: numeric(18,2) | nullable=YES | +assistantservicecarddeduct: numeric(18,2) | nullable=YES | +assistantrewardcarddeduct: numeric(18,2) | nullable=YES | +couponcarddeduct: numeric(18,2) | nullable=YES | +deliveryfeededuct: numeric(18,2) | nullable=YES | +tableareaid: text | nullable=YES | +goodscategoryid: text | nullable=YES | +pdassisnatlevel: text | nullable=YES | +cxassisnatlevel: text | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +member_card_id: + Total: 945, Non-null: 945, Distinct: 945 + Top values: + 2793254697453573: 1 + 2793268303710149: 1 + 2793308329789317: 1 + 2799215867168517: 1 + 2799215872657157: 1 + 2799215877195525: 1 + 2799215882176261: 1 + 2799215886796549: 1 + 2799215892219653: 1 + 2799215897331461: 1 + 2799215901869829: 1 + 2799215906440965: 1 + 2799215912814341: 1 + 2799215918532357: 1 + 2799215923578629: 1 + +site_name: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 945 + +tenant_name: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +tenantavatar: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +effect_site_id: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 945 + +able_cross_site: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +card_physics_type: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +card_no: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +bind_password: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +use_scene: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +is_allow_give: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 945 + +is_allow_order_deduct: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 945 + +sort: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +table_discount_sub_switch: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 945 + +goods_discount_sub_switch: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 945 + +assistant_discount_sub_switch: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 945 + +assistant_reward_discount_sub_switch: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 945 + +goods_discount_range_type: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +tableareaid: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +goodscategoryid: + Total: 945, Non-null: 0, Distinct: 0 + Top values: + +pdassisnatlevel: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + {}: 945 + +cxassisnatlevel: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + {}: 945 + +scd2_is_current: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +scd2_version: + Total: 945, Non-null: 945, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 945 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +No sample data available. diff --git a/tmp/table_analysis/dim_member_ex.txt b/tmp/table_analysis/dim_member_ex.txt new file mode 100644 index 0000000..00610e1 --- /dev/null +++ b/tmp/table_analysis/dim_member_ex.txt @@ -0,0 +1,212 @@ +================================================================================ +Table: billiards_dwd.dim_member_ex +Primary Key: member_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +member_id: bigint | nullable=NO | PK +referrer_member_id: bigint | nullable=YES | +point: numeric(18,2) | nullable=YES | +register_site_name: text | nullable=YES | +growth_value: numeric(18,2) | nullable=YES | +user_status: integer | nullable=YES | +status: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +member_id: + Total: 556, Non-null: 556, Distinct: 556 + Top values: + 2799210018309893: 1 + 2799207239993093: 1 + 2799207556597509: 1 + 2799212798150405: 1 + 2854163871024645: 1 + 2799207413319429: 1 + 2824666609323205: 1 + 2799210171156229: 1 + 2799207478544133: 1 + 2799209907373829: 1 + 2799212804736773: 1 + 2799212571199237: 1 + 2799212341905157: 1 + 2799212515231493: 1 + 2799212451677957: 1 + +referrer_member_id: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 556 + +register_site_name: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 556 + +user_status: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 556 + +status: + Total: 556, Non-null: 556, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 490 + 3: 66 + +scd2_is_current: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 556 + +scd2_version: + Total: 556, Non-null: 556, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 556 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['member_id', 'referrer_member_id', 'point', 'register_site_name', 'growth_value', 'user_status', 'status', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + member_id: 3043883848157381 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-12 03:54:27.979542+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + member_id: 3037269565082949 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-12 03:54:27.979542+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + member_id: 3034509269552197 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-12 03:54:27.979542+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + member_id: 3032780662360965 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-12 03:54:27.979542+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + member_id: 3025342944414469 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-12 03:54:27.979542+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + member_id: 3048238811858693 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-15 07:26:49.922955+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + member_id: 3052749341853317 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-15 23:34:17.712089+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + member_id: 3055176918828421 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-19 17:03:03.008890+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + member_id: 3054195561631109 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-19 17:03:03.008890+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + member_id: 3062388521698821 + referrer_member_id: 0 + point: 0.00 + register_site_name: 朗朗桌球 + growth_value: 0.00 + user_status: 1 + status: 1 + scd2_start_time: 2026-01-22 23:52:50.051956+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_site.txt b/tmp/table_analysis/dim_site.txt new file mode 100644 index 0000000..dcb5b0f --- /dev/null +++ b/tmp/table_analysis/dim_site.txt @@ -0,0 +1,129 @@ +================================================================================ +Table: billiards_dwd.dim_site +Primary Key: site_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +site_id: bigint | nullable=NO | PK +org_id: bigint | nullable=YES | +tenant_id: bigint | nullable=YES | +shop_name: text | nullable=YES | +site_label: text | nullable=YES | +full_address: text | nullable=YES | +address: text | nullable=YES | +longitude: numeric(10,6) | nullable=YES | +latitude: numeric(10,6) | nullable=YES | +tenant_site_region_id: bigint | nullable=YES | +business_tel: text | nullable=YES | +site_type: integer | nullable=YES | +shop_status: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +site_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 1 + +org_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790684179467077: 1 + +tenant_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 1 + +shop_name: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 1 + +site_label: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + A: 1 + +full_address: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 广东省广州市天河区丽阳街12号: 1 + +address: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 广东省广州市天河区天园街道朗朗桌球: 1 + +tenant_site_region_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 156440100: 1 + +business_tel: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 13316068642: 1 + +site_type: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +shop_status: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +scd2_is_current: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +scd2_version: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['site_id', 'org_id', 'tenant_id', 'shop_name', 'site_label', 'full_address', 'address', 'longitude', 'latitude', 'tenant_site_region_id', 'business_tel', 'site_type', 'shop_status', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + site_id: 2790685415443269 + org_id: 2790684179467077 + tenant_id: 2790683160709957 + shop_name: 朗朗桌球 + site_label: A + full_address: 广东省广州市天河区丽阳街12号 + address: 广东省广州市天河区天园街道朗朗桌球 + longitude: 113.360321 + latitude: 23.133629 + tenant_site_region_id: 156440100 + business_tel: 13316068642 + site_type: 1 + shop_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_site_ex.txt b/tmp/table_analysis/dim_site_ex.txt new file mode 100644 index 0000000..4a76698 --- /dev/null +++ b/tmp/table_analysis/dim_site_ex.txt @@ -0,0 +1,181 @@ +================================================================================ +Table: billiards_dwd.dim_site_ex +Primary Key: site_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +site_id: bigint | nullable=NO | PK +avatar: text | nullable=YES | +address: text | nullable=YES | +longitude: numeric(9,6) | nullable=YES | +latitude: numeric(9,6) | nullable=YES | +tenant_site_region_id: bigint | nullable=YES | +auto_light: integer | nullable=YES | +light_status: integer | nullable=YES | +light_type: integer | nullable=YES | +light_token: text | nullable=YES | +site_type: integer | nullable=YES | +site_label: text | nullable=YES | +attendance_enabled: integer | nullable=YES | +attendance_distance: integer | nullable=YES | +customer_service_qrcode: text | nullable=YES | +customer_service_wechat: text | nullable=YES | +fixed_pay_qrcode: text | nullable=YES | +prod_env: text | nullable=YES | +shop_status: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +update_time: timestamp with time zone | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +site_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 1 + +avatar: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + https://oss.ficoo.vip/admin/hXcE4E_1752495052016.jpg: 1 + +address: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 广东省广州市天河区天园街道朗朗桌球: 1 + +tenant_site_region_id: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 156440100: 1 + +auto_light: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +light_status: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +light_type: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 1 + +light_token: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + : 1 + +site_type: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +site_label: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + A: 1 + +attendance_enabled: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +attendance_distance: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 1 + +customer_service_qrcode: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + : 1 + +customer_service_wechat: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + : 1 + +fixed_pay_qrcode: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + : 1 + +prod_env: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +shop_status: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +scd2_is_current: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +scd2_version: + Total: 1, Non-null: 1, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 1 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['site_id', 'avatar', 'address', 'longitude', 'latitude', 'tenant_site_region_id', 'auto_light', 'light_status', 'light_type', 'light_token', 'site_type', 'site_label', 'attendance_enabled', 'attendance_distance', 'customer_service_qrcode', 'customer_service_wechat', 'fixed_pay_qrcode', 'prod_env', 'shop_status', 'create_time', 'update_time', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + site_id: 2790685415443269 + avatar: https://oss.ficoo.vip/admin/hXcE4E_1752495052016.jpg + address: 广东省广州市天河区天园街道朗朗桌球 + longitude: 113.360321 + latitude: 23.133629 + tenant_site_region_id: 156440100 + auto_light: 1 + light_status: 1 + light_type: 0 + light_token: + site_type: 1 + site_label: A + attendance_enabled: 1 + attendance_distance: 0 + customer_service_qrcode: + customer_service_wechat: + fixed_pay_qrcode: + prod_env: 1 + shop_status: 1 + create_time: NULL + update_time: NULL + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_store_goods.txt b/tmp/table_analysis/dim_store_goods.txt new file mode 100644 index 0000000..1f62be1 --- /dev/null +++ b/tmp/table_analysis/dim_store_goods.txt @@ -0,0 +1,528 @@ +================================================================================ +Table: billiards_dwd.dim_store_goods +Primary Key: site_goods_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +site_goods_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +tenant_goods_id: bigint | nullable=YES | +goods_name: text | nullable=YES | +goods_category_id: bigint | nullable=YES | +goods_second_category_id: bigint | nullable=YES | +category_level1_name: text | nullable=YES | +category_level2_name: text | nullable=YES | +batch_stock_qty: integer | nullable=YES | +sale_qty: integer | nullable=YES | +total_sales_qty: integer | nullable=YES | +sale_price: numeric(18,2) | nullable=YES | +created_at: timestamp with time zone | nullable=YES | +updated_at: timestamp with time zone | nullable=YES | +avg_monthly_sales: numeric(18,4) | nullable=YES | +goods_state: integer | nullable=YES | +enable_status: integer | nullable=YES | +send_state: integer | nullable=YES | +is_delete: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +site_goods_id: + Total: 170, Non-null: 170, Distinct: 170 + Top values: + 2793025844727877: 1 + 2793025844908101: 1 + 2793025845399621: 1 + 2793025845825605: 1 + 2793025845989445: 1 + 2793025846464581: 1 + 2793025846939717: 1 + 2793025847431237: 1 + 2793025847595077: 1 + 2793025848102981: 1 + 2793025848610885: 1 + 2793025849102405: 1 + 2793025849593925: 1 + 2793025850085445: 1 + 2793025850576965: 1 + +tenant_id: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 170 + +site_id: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 170 + +tenant_goods_id: + Total: 170, Non-null: 170, Distinct: 170 + Top values: + 2792140384243589: 1 + 2792122952519557: 1 + 2792067181399941: 1 + 2823319050914565: 1 + 2792045494685573: 1 + 2792114975313797: 1 + 2792112367603589: 1 + 2792277093207941: 1 + 2792275329290117: 1 + 2792173195546501: 1 + 2792229617586053: 1 + 2792286937681797: 1 + 2792213125140357: 1 + 2802003111103429: 1 + 2792292119728005: 1 + +goods_name: + Total: 170, Non-null: 170, Distinct: 170 + Top values: + QQ糖: 1 + 哇哈哈矿泉水: 1 + 哇哈哈AD钙奶: 1 + 卫龙魔芋爽: 1 + 奥利奥迷你可可: 1 + 卫龙大面筋: 1 + 香辣鱼皮: 1 + 科罗娜啤酒275ml: 1 + 旺旺碎冰冰: 1 + 黑松露苏打饼干: 1 + 皮尔力SY系列: 1 + 美汁源果粒橙: 1 + 软玉溪: 1 + 鱼豆腐: 1 + 营养快线: 1 + +goods_category_id: + Total: 170, Non-null: 170, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528350539: 49 + 2791941988405125: 49 + 2793217944864581: 18 + 2792062778003333: 17 + 2791942087561093: 14 + 2790683528350535: 11 + 2790683528350533: 6 + 2793220945250117: 4 + 2790683528350545: 2 + +goods_second_category_id: + Total: 170, Non-null: 170, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791948300259205: 46 + 2790683528350540: 38 + 2793218343257925: 18 + 2792063209623429: 17 + 2792035069284229: 14 + 2790683528350541: 9 + 2790683528350537: 8 + 2790683528350534: 6 + 2793221283104581: 4 + 2793236829620037: 3 + 2792050275864453: 2 + 2790683528350536: 2 + 2793221553489733: 2 + 2790683528350538: 1 + +category_level1_name: + Total: 170, Non-null: 170, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 零食: 49 + 酒水: 49 + 其他: 18 + 香烟: 17 + 雪糕: 14 + 器材: 11 + 槟榔: 6 + 小吃: 4 + 果盘: 2 + +category_level2_name: + Total: 170, Non-null: 170, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 零食: 46 + 饮料: 38 + 其他2: 18 + 香烟: 17 + 雪糕: 14 + 酒水: 9 + 球杆: 8 + 槟榔: 6 + 小吃: 4 + 面: 3 + 果盘: 2 + 洋酒: 2 + 皮头: 2 + 其他: 1 + +batch_stock_qty: + Total: 170, Non-null: 170, Distinct: 63 + Top values: + 0: 38 + 1: 9 + 2: 7 + 3: 7 + 7: 7 + 6: 6 + 8: 6 + 10: 6 + 4: 4 + 21: 4 + 18: 4 + 9: 4 + 5: 4 + 15: 3 + 20: 3 + +sale_qty: + Total: 170, Non-null: 170, Distinct: 109 + Top values: + 0: 18 + 1: 9 + 2: 4 + 63: 4 + 4: 4 + 10: 4 + 41: 3 + 31: 3 + 6: 3 + 78: 2 + 80: 2 + 45: 2 + 12: 2 + 55: 2 + 148: 2 + +total_sales_qty: + Total: 170, Non-null: 170, Distinct: 109 + Top values: + 0: 18 + 1: 9 + 2: 4 + 63: 4 + 4: 4 + 10: 4 + 41: 3 + 31: 3 + 6: 3 + 78: 2 + 80: 2 + 45: 2 + 12: 2 + 55: 2 + 148: 2 + +goods_state: + Total: 170, Non-null: 170, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 158 + 2: 12 + +enable_status: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +send_state: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +is_delete: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 170 + +scd2_is_current: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +scd2_version: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['site_goods_id', 'tenant_id', 'site_id', 'tenant_goods_id', 'goods_name', 'goods_category_id', 'goods_second_category_id', 'category_level1_name', 'category_level2_name', 'batch_stock_qty', 'sale_qty', 'total_sales_qty', 'sale_price', 'created_at', 'updated_at', 'avg_monthly_sales', 'goods_state', 'enable_status', 'send_state', 'is_delete', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + site_goods_id: 2906983124748485 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2906982633310085 + goods_name: 1000服务费 + goods_category_id: 2793217944864581 + goods_second_category_id: 2793218343257925 + category_level1_name: 其他 + category_level2_name: 其他2 + batch_stock_qty: 10 + sale_qty: 1 + total_sales_qty: 1 + sale_price: 1000.00 + created_at: 2025-10-04 23:56:11+08:00 + updated_at: 2025-12-13 04:46:00+08:00 + avg_monthly_sales: 0.0000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + site_goods_id: 2915208915865285 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2915207513196869 + goods_name: 普通茶位 + goods_category_id: 2793217944864581 + goods_second_category_id: 2793218343257925 + category_level1_name: 其他 + category_level2_name: 其他2 + batch_stock_qty: 87 + sale_qty: 13 + total_sales_qty: 13 + sale_price: 10.00 + created_at: 2025-10-10 19:23:54+08:00 + updated_at: 2025-12-16 23:43:49+08:00 + avg_monthly_sales: 0.1700 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + site_goods_id: 2940642871856901 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2940641058311237 + goods_name: 一次性湿巾 + goods_category_id: 2793217944864581 + goods_second_category_id: 2793218343257925 + category_level1_name: 其他 + category_level2_name: 其他2 + batch_stock_qty: 100 + sale_qty: 0 + total_sales_qty: 0 + sale_price: 2.00 + created_at: 2025-10-28 18:36:39+08:00 + updated_at: 2025-10-28 18:37:03+08:00 + avg_monthly_sales: 0.0000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + site_goods_id: 2959253027243589 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2959250949670277 + goods_name: 外卖代购 + goods_category_id: 2793217944864581 + goods_second_category_id: 2793218343257925 + category_level1_name: 其他 + category_level2_name: 其他2 + batch_stock_qty: 6 + sale_qty: 4 + total_sales_qty: 4 + sale_price: 88.00 + created_at: 2025-11-10 22:07:53+08:00 + updated_at: 2025-11-20 12:28:30+08:00 + avg_monthly_sales: 0.0000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-19 05:42:06.210959+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + site_goods_id: 2964704853035845 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2964701792325061 + goods_name: 咖啡代购 + goods_category_id: 2793217944864581 + goods_second_category_id: 2793218343257925 + category_level1_name: 其他 + category_level2_name: 其他2 + batch_stock_qty: 4 + sale_qty: 26 + total_sales_qty: 26 + sale_price: 15.00 + created_at: 2025-11-14 18:33:46+08:00 + updated_at: 2025-12-16 00:06:40+08:00 + avg_monthly_sales: 0.6300 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-19 05:42:06.210959+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + site_goods_id: 2793025860145221 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2792077012225925 + goods_name: 双中支中华 + goods_category_id: 2792062778003333 + goods_second_category_id: 2792063209623429 + category_level1_name: 香烟 + category_level2_name: 香烟 + batch_stock_qty: 0 + sale_qty: 94 + total_sales_qty: 94 + sale_price: 72.00 + created_at: 2025-07-16 11:52:51+08:00 + updated_at: 2025-12-16 23:20:02+08:00 + avg_monthly_sales: 1.6000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + site_goods_id: 2793025860636741 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2792079352434565 + goods_name: 炫赫门小南京 + goods_category_id: 2792062778003333 + goods_second_category_id: 2792063209623429 + category_level1_name: 香烟 + category_level2_name: 香烟 + batch_stock_qty: 30 + sale_qty: 110 + total_sales_qty: 110 + sale_price: 28.00 + created_at: 2025-07-16 11:52:51+08:00 + updated_at: 2025-12-17 05:17:22+08:00 + avg_monthly_sales: 1.0000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + site_goods_id: 2793025861128261 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2792081036562309 + goods_name: 细荷花 + goods_category_id: 2792062778003333 + goods_second_category_id: 2792063209623429 + category_level1_name: 香烟 + category_level2_name: 香烟 + batch_stock_qty: 0 + sale_qty: 184 + total_sales_qty: 184 + sale_price: 55.00 + created_at: 2025-07-16 11:52:51+08:00 + updated_at: 2025-12-12 02:43:14+08:00 + avg_monthly_sales: 1.3300 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + site_goods_id: 2793025861308485 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2792082388782981 + goods_name: 中支芙蓉王 + goods_category_id: 2792062778003333 + goods_second_category_id: 2792063209623429 + category_level1_name: 香烟 + category_level2_name: 香烟 + batch_stock_qty: 6 + sale_qty: 61 + total_sales_qty: 61 + sale_price: 38.00 + created_at: 2025-07-16 11:52:51+08:00 + updated_at: 2025-12-19 02:35:36+08:00 + avg_monthly_sales: 0.7300 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + site_goods_id: 2793025861505093 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + tenant_goods_id: 2792083824283525 + goods_name: 红利群 + goods_category_id: 2792062778003333 + goods_second_category_id: 2792063209623429 + category_level1_name: 香烟 + category_level2_name: 香烟 + batch_stock_qty: 5 + sale_qty: 151 + total_sales_qty: 151 + sale_price: 26.00 + created_at: 2025-07-16 11:52:51+08:00 + updated_at: 2025-12-18 23:52:11+08:00 + avg_monthly_sales: 0.8000 + goods_state: 1 + enable_status: 1 + send_state: 1 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_store_goods_ex.txt b/tmp/table_analysis/dim_store_goods_ex.txt new file mode 100644 index 0000000..b266236 --- /dev/null +++ b/tmp/table_analysis/dim_store_goods_ex.txt @@ -0,0 +1,582 @@ +================================================================================ +Table: billiards_dwd.dim_store_goods_ex +Primary Key: site_goods_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +site_goods_id: bigint | nullable=NO | PK +site_name: text | nullable=YES | +unit: text | nullable=YES | +goods_barcode: text | nullable=YES | +goods_cover_url: text | nullable=YES | +pinyin_initial: text | nullable=YES | +stock_qty: integer | nullable=YES | +stock_secondary_qty: integer | nullable=YES | +safety_stock_qty: integer | nullable=YES | +cost_price: numeric(18,4) | nullable=YES | +cost_price_type: integer | nullable=YES | +provisional_total_cost: numeric(18,2) | nullable=YES | +total_purchase_cost: numeric(18,2) | nullable=YES | +min_discount_price: numeric(18,2) | nullable=YES | +is_discountable: integer | nullable=YES | +days_on_shelf: integer | nullable=YES | +audit_status: integer | nullable=YES | +sale_channel: integer | nullable=YES | +is_warehousing: integer | nullable=YES | +freeze_status: integer | nullable=YES | +forbid_sell_status: integer | nullable=YES | +able_site_transfer: integer | nullable=YES | +custom_label_type: integer | nullable=YES | +option_required: integer | nullable=YES | +remark: text | nullable=YES | +sort_order: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +site_goods_id: + Total: 170, Non-null: 170, Distinct: 170 + Top values: + 2793025844727877: 1 + 2793025844908101: 1 + 2793025845399621: 1 + 2793025845825605: 1 + 2793025845989445: 1 + 2793025846464581: 1 + 2793025846939717: 1 + 2793025847431237: 1 + 2793025847595077: 1 + 2793025848102981: 1 + 2793025848610885: 1 + 2793025849102405: 1 + 2793025849593925: 1 + 2793025850085445: 1 + 2793025850576965: 1 + +site_name: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 170 + +unit: + Total: 170, Non-null: 170, Distinct: 13 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 包: 62 + 瓶: 49 + 个: 17 + 份: 14 + 根: 10 + 杯: 5 + 盒: 4 + 桶: 3 + 盘: 2 + 罐: 1 + 支: 1 + 双: 1 + 张: 1 + +goods_barcode: + Total: 170, Non-null: 0, Distinct: 0 + Top values: + +goods_cover_url: + Total: 170, Non-null: 170, Distinct: 130 + Top values: + https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg: 41 + https://oss.ficoo.vip/admin/GrDjXJ_1753204736744.jpg: 1 + https://oss.ficoo.vip/goods/501755142741105/175514274110534.jpg: 1 + https://oss.ficoo.vip/admin/nrDNCp_1765624656359.jpg: 1 + https://oss.ficoo.vip/admin/xHtt7E_1753203727919.jpg: 1 + https://oss.ficoo.vip/admin/yx3b8S_1753175562197.jpg: 1 + https://oss.ficoo.vip/admin/hWtAkK_1753175530886.jpg: 1 + https://oss.ficoo.vip/admin/21d4Y5_1754818991675.jpg: 1 + https://oss.ficoo.vip/admin/yzYj5B_1753203473330.jpg: 1 + https://oss.ficoo.vip/admin/5P1HjW_1753175040708.jpg: 1 + https://oss.ficoo.vip/admin/YXR86w_1753203657997.jpg: 1 + https://oss.ficoo.vip/admin/QC6hTw_1754818957205.jpg: 1 + https://oss.ficoo.vip/admin/nBPPG4_1753203441531.jpg: 1 + https://oss.ficoo.vip/admin/75yN2R_1721196107928.jpg: 1 + https://oss.ficoo.vip/admin/17r1dP_1721196142478.jpg: 1 + +pinyin_initial: + Total: 170, Non-null: 170, Distinct: 169 + Top values: + YD: 2 + KLN: 1 + HCTX·: 1 + PTPK: 1 + KY,KL: 1 + 50JQBL,50GQBL: 1 + KAD: 1 + PTCW: 1 + HSNRM,GSNRM: 1 + RYX: 1 + YDF: 1 + DFSY,DFSX: 1 + GXFJZJ: 1 + XLYP: 1 + SZSSKXG: 1 + +stock_qty: + Total: 170, Non-null: 170, Distinct: 63 + Top values: + 0: 38 + 1: 9 + 2: 7 + 3: 7 + 7: 7 + 6: 6 + 8: 6 + 10: 6 + 4: 4 + 21: 4 + 18: 4 + 9: 4 + 5: 4 + 15: 3 + 20: 3 + +stock_secondary_qty: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 170 + +safety_stock_qty: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 170 + +cost_price_type: + Total: 170, Non-null: 170, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 160 + 2: 10 + +is_discountable: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +days_on_shelf: + Total: 170, Non-null: 170, Distinct: 71 + Top values: + 0: 48 + 100: 5 + 5: 5 + 7: 5 + 10: 5 + 30: 4 + 14: 3 + 6: 3 + 33: 3 + 4: 3 + 3: 3 + 24: 3 + 45: 3 + 11: 3 + 21: 3 + +audit_status: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 170 + +sale_channel: + Total: 170, Non-null: 0, Distinct: 0 + Top values: + +is_warehousing: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +freeze_status: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 170 + +forbid_sell_status: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +able_site_transfer: + Total: 170, Non-null: 170, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 169 + 0: 1 + +custom_label_type: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 170 + +option_required: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +remark: + Total: 170, Non-null: 0, Distinct: 0 + Top values: + +sort_order: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 100: 170 + +scd2_is_current: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +scd2_version: + Total: 170, Non-null: 170, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 170 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['site_goods_id', 'site_name', 'unit', 'goods_barcode', 'goods_cover_url', 'pinyin_initial', 'stock_qty', 'stock_secondary_qty', 'safety_stock_qty', 'cost_price', 'cost_price_type', 'provisional_total_cost', 'total_purchase_cost', 'min_discount_price', 'is_discountable', 'days_on_shelf', 'audit_status', 'sale_channel', 'is_warehousing', 'freeze_status', 'forbid_sell_status', 'able_site_transfer', 'custom_label_type', 'option_required', 'remark', 'sort_order', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + site_goods_id: 2906983124748485 + site_name: 朗朗桌球 + unit: 个 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + pinyin_initial: 1000FWF + stock_qty: 10 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 2 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 333 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + site_goods_id: 2915208915865285 + site_name: 朗朗桌球 + unit: 份 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + pinyin_initial: PTCW + stock_qty: 87 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 2 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 511 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + site_goods_id: 2940642871856901 + site_name: 朗朗桌球 + unit: 张 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + pinyin_initial: YCXSJ + stock_qty: 100 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 2.0000 + cost_price_type: 2 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 0 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + site_goods_id: 2959253027243589 + site_name: 朗朗桌球 + unit: 份 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + pinyin_initial: WMDG + stock_qty: 6 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 2 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 85 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-19 05:42:06.210959+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + site_goods_id: 2964704853035845 + site_name: 朗朗桌球 + unit: 杯 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + pinyin_initial: KFDG,GFDG + stock_qty: 4 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 2 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 6 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-19 05:42:06.210959+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + site_goods_id: 2793025860145221 + site_name: 朗朗桌球 + unit: 包 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/SthyYw_1753194478117.jpg + pinyin_initial: SZZZH + stock_qty: 0 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 1 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 0 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + site_goods_id: 2793025860636741 + site_name: 朗朗桌球 + unit: 包 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/h2tQM3_1753194493216.jpg + pinyin_initial: XHMXNJ + stock_qty: 30 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 1 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 30 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + site_goods_id: 2793025861128261 + site_name: 朗朗桌球 + unit: 包 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/ScERzZ_1753194512694.jpg + pinyin_initial: XHH + stock_qty: 0 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 1 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 0 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + site_goods_id: 2793025861308485 + site_name: 朗朗桌球 + unit: 包 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/GBYMWe_1753194536507.jpg + pinyin_initial: ZZFRW + stock_qty: 6 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 1 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 15 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + site_goods_id: 2793025861505093 + site_name: 朗朗桌球 + unit: 包 + goods_barcode: NULL + goods_cover_url: https://oss.ficoo.vip/admin/ewj8Z1_1753194556566.jpg + pinyin_initial: HLQ,GLQ + stock_qty: 5 + stock_secondary_qty: 0 + safety_stock_qty: 0 + cost_price: 0.0000 + cost_price_type: 1 + provisional_total_cost: 0.00 + total_purchase_cost: 0.00 + min_discount_price: 0.00 + is_discountable: 1 + days_on_shelf: 7 + audit_status: 2 + sale_channel: NULL + is_warehousing: 1 + freeze_status: 0 + forbid_sell_status: 1 + able_site_transfer: 2 + custom_label_type: 2 + option_required: 1 + remark: NULL + sort_order: 100 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_table.txt b/tmp/table_analysis/dim_table.txt new file mode 100644 index 0000000..e0b3327 --- /dev/null +++ b/tmp/table_analysis/dim_table.txt @@ -0,0 +1,269 @@ +================================================================================ +Table: billiards_dwd.dim_table +Primary Key: table_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_id: bigint | nullable=NO | PK +site_id: bigint | nullable=YES | +table_name: text | nullable=YES | +site_table_area_id: bigint | nullable=YES | +site_table_area_name: text | nullable=YES | +tenant_table_area_id: bigint | nullable=YES | +table_price: numeric(18,2) | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_id: + Total: 74, Non-null: 74, Distinct: 74 + Top values: + 2793023960551493: 1 + 2793021451292741: 1 + 2942225950625541: 1 + 2793003618340933: 1 + 2793003243294789: 1 + 2793003420504133: 1 + 2793012902482053: 1 + 2956247996190021: 1 + 2944828464433029: 1 + 2802006434630661: 1 + 2793018776604805: 1 + 2793017278582917: 1 + 2793020259946565: 1 + 2793001695301765: 1 + 2793020955840645: 1 + +site_id: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 74 + +table_name: + Total: 74, Non-null: 74, Distinct: 74 + Top values: + A18: 1 + B9: 1 + 666: 1 + B14: 1 + VIP1: 1 + TV: 1 + 幸会(纯k): 1 + S1: 1 + M3: 1 + A16: 1 + B3: 1 + 补时长2: 1 + B6: 1 + B2: 1 + VIP5: 1 + +site_table_area_id: + Total: 74, Non-null: 74, Distinct: 16 + Top values: + 2791963794329671: 18 + 2791963807682693: 15 + 2802006170324037: 7 + 2791963816579205: 6 + 2791963887030341: 5 + 2791963825803397: 4 + 2791963855982661: 4 + 2791963836207173: 4 + 2791963848527941: 2 + 2942056024575749: 2 + 2944827794098053: 2 + 2956246442462533: 1 + 2994268117290757: 1 + 3004534627601285: 1 + 2791963864273029: 1 + +site_table_area_name: + Total: 74, Non-null: 74, Distinct: 16 + Top values: + A区: 18 + B区: 15 + 补时长: 7 + C区: 6 + 麻将房: 5 + K包: 4 + VIP包厢: 4 + 斯诺克区: 4 + 666: 2 + k包活动区: 2 + M7: 2 + 发财: 1 + TV台: 1 + M8: 1 + 虚拟台: 1 + +tenant_table_area_id: + Total: 74, Non-null: 74, Distinct: 16 + Top values: + 2791963794329671: 18 + 2791963807682693: 15 + 2802006170324037: 7 + 2791963816579205: 6 + 2791963887030341: 5 + 2791963825803397: 4 + 2791963855982661: 4 + 2791963836207173: 4 + 2791963848527941: 2 + 2942056024575749: 2 + 2944827794098053: 2 + 2956246442462533: 1 + 2994268117290757: 1 + 3004534627601285: 1 + 2791963864273029: 1 + +scd2_is_current: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 74 + +scd2_version: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 74 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_id', 'site_id', 'table_name', 'site_table_area_id', 'site_table_area_name', 'tenant_table_area_id', 'table_price', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + table_id: 2791964216463493 + site_id: 2790685415443269 + table_name: A1 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + table_id: 2792521437958213 + site_id: 2790685415443269 + table_name: A2 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + table_id: 2793001695301765 + site_id: 2790685415443269 + table_name: A3 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + table_id: 2793001904918661 + site_id: 2790685415443269 + table_name: A4 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + table_id: 2793002509209733 + site_id: 2790685415443269 + table_name: A5 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + table_id: 2793002673295493 + site_id: 2790685415443269 + table_name: A6 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + table_id: 2793003066429509 + site_id: 2790685415443269 + table_name: A10 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + table_id: 2793003159474245 + site_id: 2790685415443269 + table_name: A11 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + table_id: 2793003806953541 + site_id: 2790685415443269 + table_name: A18 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791963794329671 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + table_id: 2793010820206661 + site_id: 2790685415443269 + table_name: B1 + site_table_area_id: 2791963807682693 + site_table_area_name: B区 + tenant_table_area_id: 2791963807682693 + table_price: 0.00 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_table_ex.txt b/tmp/table_analysis/dim_table_ex.txt new file mode 100644 index 0000000..0d43d76 --- /dev/null +++ b/tmp/table_analysis/dim_table_ex.txt @@ -0,0 +1,208 @@ +================================================================================ +Table: billiards_dwd.dim_table_ex +Primary Key: table_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_id: bigint | nullable=NO | PK +show_status: integer | nullable=YES | +is_online_reservation: integer | nullable=YES | +table_cloth_use_time: integer | nullable=YES | +table_cloth_use_cycle: integer | nullable=YES | +table_status: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_id: + Total: 74, Non-null: 74, Distinct: 74 + Top values: + 2793023960551493: 1 + 2793021451292741: 1 + 2942225950625541: 1 + 2793003618340933: 1 + 2793003243294789: 1 + 2793012902482053: 1 + 2793003420504133: 1 + 2956247996190021: 1 + 2944828464433029: 1 + 2802006434630661: 1 + 2793018776604805: 1 + 2793017278582917: 1 + 2793020259946565: 1 + 2793001695301765: 1 + 2944828361639813: 1 + +show_status: + Total: 74, Non-null: 74, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 70 + 2: 4 + +is_online_reservation: + Total: 74, Non-null: 74, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 72 + 1: 2 + +table_cloth_use_time: + Total: 74, Non-null: 0, Distinct: 0 + Top values: + +table_cloth_use_cycle: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 74 + +table_status: + Total: 74, Non-null: 74, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 66 + 3: 7 + 2: 1 + +scd2_is_current: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 74 + +scd2_version: + Total: 74, Non-null: 74, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 74 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_id', 'show_status', 'is_online_reservation', 'table_cloth_use_time', 'table_cloth_use_cycle', 'table_status', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + table_id: 2791964216463493 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + table_id: 2792521437958213 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + table_id: 2793001695301765 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + table_id: 2793001904918661 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + table_id: 2793002509209733 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + table_id: 2793002673295493 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + table_id: 2793002808987781 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + table_id: 2793002896494725 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + table_id: 2793002980429893 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + table_id: 2793003066429509 + show_status: 1 + is_online_reservation: 2 + table_cloth_use_time: NULL + table_cloth_use_cycle: 0 + table_status: 1 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_tenant_goods.txt b/tmp/table_analysis/dim_tenant_goods.txt new file mode 100644 index 0000000..3903801 --- /dev/null +++ b/tmp/table_analysis/dim_tenant_goods.txt @@ -0,0 +1,397 @@ +================================================================================ +Table: billiards_dwd.dim_tenant_goods +Primary Key: tenant_goods_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +tenant_goods_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +supplier_id: bigint | nullable=YES | +category_name: character varying(64) | nullable=YES | +goods_category_id: bigint | nullable=YES | +goods_second_category_id: bigint | nullable=YES | +goods_name: character varying(128) | nullable=YES | +goods_number: character varying(64) | nullable=YES | +unit: character varying(16) | nullable=YES | +market_price: numeric(18,2) | nullable=YES | +goods_state: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +update_time: timestamp with time zone | nullable=YES | +is_delete: integer | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +tenant_goods_id: + Total: 171, Non-null: 171, Distinct: 171 + Top values: + 2792122952519557: 1 + 2792140384243589: 1 + 2792067181399941: 1 + 2823319050914565: 1 + 2792275329290117: 1 + 2792045494685573: 1 + 2792277093207941: 1 + 2792112367603589: 1 + 2792114975313797: 1 + 2792173195546501: 1 + 2792229617586053: 1 + 2792286937681797: 1 + 2792213125140357: 1 + 2802003111103429: 1 + 2792292119728005: 1 + +tenant_id: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 171 + +supplier_id: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 171 + +category_name: + Total: 171, Non-null: 171, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 零食: 47 + 饮料: 38 + 其他2: 18 + 香烟: 17 + 雪糕: 14 + 酒水: 9 + 球杆: 8 + 槟榔: 6 + 小吃: 4 + 面: 3 + 果盘: 2 + 洋酒: 2 + 皮头: 2 + 其他: 1 + +goods_category_id: + Total: 171, Non-null: 171, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791941988405125: 50 + 2790683528350539: 49 + 2793217944864581: 18 + 2792062778003333: 17 + 2791942087561093: 14 + 2790683528350535: 11 + 2790683528350533: 6 + 2793220945250117: 4 + 2790683528350545: 2 + +goods_second_category_id: + Total: 171, Non-null: 171, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791948300259205: 47 + 2790683528350540: 38 + 2793218343257925: 18 + 2792063209623429: 17 + 2792035069284229: 14 + 2790683528350541: 9 + 2790683528350537: 8 + 2790683528350534: 6 + 2793221283104581: 4 + 2793236829620037: 3 + 2792050275864453: 2 + 2790683528350536: 2 + 2793221553489733: 2 + 2790683528350538: 1 + +goods_name: + Total: 171, Non-null: 171, Distinct: 171 + Top values: + 鱼蛋: 1 + 哇哈哈矿泉水: 1 + 卫龙魔芋爽: 1 + 哇哈哈AD钙奶: 1 + 奥利奥迷你可可: 1 + 卫龙大面筋: 1 + 香辣鱼皮: 1 + 科罗娜啤酒275ml: 1 + 旺旺碎冰冰: 1 + 黑松露苏打饼干: 1 + 皮尔力SY系列: 1 + 美汁源果粒橙: 1 + 软玉溪: 1 + 鱼豆腐: 1 + 营养快线: 1 + +goods_number: + Total: 171, Non-null: 171, Distinct: 171 + Top values: + 118: 1 + 123: 1 + 8: 1 + 75: 1 + 96: 1 + 129: 1 + 13: 1 + 144: 1 + 121: 1 + 113: 1 + 93: 1 + 94: 1 + 95: 1 + 34: 1 + 115: 1 + +unit: + Total: 171, Non-null: 171, Distinct: 13 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 包: 63 + 瓶: 49 + 个: 17 + 份: 14 + 根: 10 + 杯: 5 + 盒: 4 + 桶: 3 + 盘: 2 + 罐: 1 + 支: 1 + 双: 1 + 张: 1 + +goods_state: + Total: 171, Non-null: 171, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 165 + 2: 6 + +is_delete: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 171 + +scd2_is_current: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +scd2_version: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['tenant_goods_id', 'tenant_id', 'supplier_id', 'category_name', 'goods_category_id', 'goods_second_category_id', 'goods_name', 'goods_number', 'unit', 'market_price', 'goods_state', 'create_time', 'update_time', 'is_delete', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + tenant_goods_id: 2792114975313797 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 海之言 + goods_number: 35 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:26:16+08:00 + update_time: 2025-11-10 18:35:33+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + tenant_goods_id: 2792120662675333 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 西梅多多饮品 + goods_number: 41 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:32:03+08:00 + update_time: 2025-11-10 18:38:16+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + tenant_goods_id: 2792123803078533 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 美汁源果粒橙 + goods_number: 43 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:35:15+08:00 + update_time: 2025-11-10 18:39:03+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + tenant_goods_id: 2792125002321797 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 三诺橙汁 + goods_number: 44 + unit: 瓶 + market_price: 18.00 + goods_state: 1 + create_time: 2025-07-15 20:36:28+08:00 + update_time: 2025-11-10 18:39:20+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + tenant_goods_id: 2792126153330565 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 营养快线 + goods_number: 45 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:37:38+08:00 + update_time: 2025-11-10 18:39:33+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + tenant_goods_id: 2792126853369733 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 东鹏特饮 + goods_number: 46 + unit: 瓶 + market_price: 7.00 + goods_state: 1 + create_time: 2025-07-15 20:38:21+08:00 + update_time: 2025-11-10 18:40:07+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + tenant_goods_id: 2792128158191493 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 农夫山泉苏打水 + goods_number: 47 + unit: 瓶 + market_price: 6.00 + goods_state: 1 + create_time: 2025-07-15 20:39:40+08:00 + update_time: 2025-11-10 18:41:52+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + tenant_goods_id: 2792128793546629 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 椰汁 + goods_number: 48 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:40:19+08:00 + update_time: 2025-11-10 18:42:13+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + tenant_goods_id: 2792129791594373 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 芬达 + goods_number: 49 + unit: 瓶 + market_price: 5.00 + goods_state: 1 + create_time: 2025-07-15 20:41:20+08:00 + update_time: 2025-11-10 18:42:31+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + tenant_goods_id: 2792130734133125 + tenant_id: 2790683160709957 + supplier_id: 0 + category_name: 饮料 + goods_category_id: 2790683528350539 + goods_second_category_id: 2790683528350540 + goods_name: 屈臣氏苏打水 + goods_number: 50 + unit: 瓶 + market_price: 8.00 + goods_state: 1 + create_time: 2025-07-15 20:42:18+08:00 + update_time: 2025-11-10 18:42:50+08:00 + is_delete: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dim_tenant_goods_ex.txt b/tmp/table_analysis/dim_tenant_goods_ex.txt new file mode 100644 index 0000000..cdc95e7 --- /dev/null +++ b/tmp/table_analysis/dim_tenant_goods_ex.txt @@ -0,0 +1,446 @@ +================================================================================ +Table: billiards_dwd.dim_tenant_goods_ex +Primary Key: tenant_goods_id, scd2_start_time +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +tenant_goods_id: bigint | nullable=NO | PK +remark_name: character varying(128) | nullable=YES | +pinyin_initial: character varying(128) | nullable=YES | +goods_cover: character varying(512) | nullable=YES | +goods_bar_code: character varying(64) | nullable=YES | +commodity_code: character varying(64) | nullable=YES | +commodity_code_list: character varying(256) | nullable=YES | +min_discount_price: numeric(18,2) | nullable=YES | +cost_price: numeric(18,2) | nullable=YES | +cost_price_type: integer | nullable=YES | +able_discount: integer | nullable=YES | +sale_channel: integer | nullable=YES | +is_warehousing: integer | nullable=YES | +is_in_site: boolean | nullable=YES | +able_site_transfer: integer | nullable=YES | +common_sale_royalty: integer | nullable=YES | +point_sale_royalty: integer | nullable=YES | +out_goods_id: bigint | nullable=YES | +scd2_start_time: timestamp with time zone | nullable=NO | PK +scd2_end_time: timestamp with time zone | nullable=YES | +scd2_is_current: integer | nullable=YES | +scd2_version: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +tenant_goods_id: + Total: 171, Non-null: 171, Distinct: 171 + Top values: + 2792037812375429: 1 + 2792038476746629: 1 + 2792039804047237: 1 + 2792044495523717: 1 + 2792045494685573: 1 + 2792056126328709: 1 + 2792067181399941: 1 + 2792070008164229: 1 + 2792072218644357: 1 + 2792077012225925: 1 + 2792079352434565: 1 + 2792081036562309: 1 + 2792082388782981: 1 + 2792083824283525: 1 + 2792091011796869: 1 + +remark_name: + Total: 171, Non-null: 0, Distinct: 0 + Top values: + +pinyin_initial: + Total: 171, Non-null: 171, Distinct: 170 + Top values: + YD: 2 + KLN: 1 + HCTX·: 1 + PTPK: 1 + KY,KL: 1 + 50JQBL,50GQBL: 1 + KAD: 1 + PTCW: 1 + HSNRM,GSNRM: 1 + RYX: 1 + YDF: 1 + DFSY,DFSX: 1 + GXFJZJ: 1 + XLYP: 1 + SZSSKXG: 1 + +goods_cover: + Total: 171, Non-null: 171, Distinct: 130 + Top values: + https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg: 42 + https://oss.ficoo.vip/admin/GrDjXJ_1753204736744.jpg: 1 + https://oss.ficoo.vip/goods/501755142741105/175514274110534.jpg: 1 + https://oss.ficoo.vip/admin/nrDNCp_1765624656359.jpg: 1 + https://oss.ficoo.vip/admin/xHtt7E_1753203727919.jpg: 1 + https://oss.ficoo.vip/admin/yx3b8S_1753175562197.jpg: 1 + https://oss.ficoo.vip/admin/hWtAkK_1753175530886.jpg: 1 + https://oss.ficoo.vip/admin/21d4Y5_1754818991675.jpg: 1 + https://oss.ficoo.vip/admin/yzYj5B_1753203473330.jpg: 1 + https://oss.ficoo.vip/admin/YXR86w_1753203657997.jpg: 1 + https://oss.ficoo.vip/admin/5P1HjW_1753175040708.jpg: 1 + https://oss.ficoo.vip/admin/QC6hTw_1754818957205.jpg: 1 + https://oss.ficoo.vip/admin/nBPPG4_1753203441531.jpg: 1 + https://oss.ficoo.vip/admin/75yN2R_1721196107928.jpg: 1 + https://oss.ficoo.vip/admin/17r1dP_1721196142478.jpg: 1 + +goods_bar_code: + Total: 171, Non-null: 0, Distinct: 0 + Top values: + +commodity_code: + Total: 171, Non-null: 171, Distinct: 131 + Top values: + 10000: 35 + 100000: 7 + 1000088: 1 + 1000013: 1 + 1234520: 1 + 1234536: 1 + 1000065: 1 + 1234554: 1 + 1234572: 1 + 1234549: 1 + 120000000: 1 + 10000000: 1 + 100008: 1 + 1234560: 1 + 10000019: 1 + +commodity_code_list: + Total: 171, Non-null: 171, Distinct: 131 + Top values: + 10000: 35 + 100000: 7 + 1000088: 1 + 1000013: 1 + 1234520: 1 + 1234536: 1 + 1000065: 1 + 1234554: 1 + 1234572: 1 + 1234549: 1 + 120000000: 1 + 10000000: 1 + 100008: 1 + 1234560: 1 + 10000019: 1 + +cost_price_type: + Total: 171, Non-null: 171, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 160 + 2: 11 + +able_discount: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +sale_channel: + Total: 171, Non-null: 0, Distinct: 0 + Top values: + +is_warehousing: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +is_in_site: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 171 + +able_site_transfer: + Total: 171, Non-null: 171, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 170 + 0: 1 + +common_sale_royalty: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 171 + +point_sale_royalty: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 171 + +out_goods_id: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 171 + +scd2_is_current: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +scd2_version: + Total: 171, Non-null: 171, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 171 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['tenant_goods_id', 'remark_name', 'pinyin_initial', 'goods_cover', 'goods_bar_code', 'commodity_code', 'commodity_code_list', 'min_discount_price', 'cost_price', 'cost_price_type', 'able_discount', 'sale_channel', 'is_warehousing', 'is_in_site', 'able_site_transfer', 'common_sale_royalty', 'point_sale_royalty', 'out_goods_id', 'scd2_start_time', 'scd2_end_time', 'scd2_is_current', 'scd2_version'] + +Row 1: + tenant_goods_id: 2792139566649221 + remark_name: NULL + pinyin_initial: ASM,ESM + goods_cover: https://oss.ficoo.vip/admin/JSFCjn_1753175365140.jpg + goods_bar_code: NULL + commodity_code: 1234527 + commodity_code_list: 1234527 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 2: + tenant_goods_id: 2792140384243589 + remark_name: NULL + pinyin_initial: WLJ + goods_cover: https://oss.ficoo.vip/admin/hWtAkK_1753175530886.jpg + goods_bar_code: NULL + commodity_code: 1234528 + commodity_code_list: 1234528 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 3: + tenant_goods_id: 2792141587451781 + remark_name: NULL + pinyin_initial: LC + goods_cover: https://oss.ficoo.vip/admin/DhTxrF_1753175546868.jpg + goods_bar_code: NULL + commodity_code: 1234529 + commodity_code_list: 1234529 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 4: + tenant_goods_id: 2792142450249605 + remark_name: NULL + pinyin_initial: HN,GN + goods_cover: https://oss.ficoo.vip/admin/yx3b8S_1753175562197.jpg + goods_bar_code: NULL + commodity_code: 1000010 + commodity_code_list: 1000010 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 5: + tenant_goods_id: 2792143182647173 + remark_name: NULL + pinyin_initial: WZNN + goods_cover: https://oss.ficoo.vip/admin/6E8k66_1753174928971.jpg + goods_bar_code: NULL + commodity_code: 1234530 + commodity_code_list: 1234530 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 6: + tenant_goods_id: 2792148060360581 + remark_name: NULL + pinyin_initial: BHC,BGC + goods_cover: https://oss.ficoo.vip/admin/f3b7e2_1753175389541.jpg + goods_bar_code: NULL + commodity_code: 1234531 + commodity_code_list: 1234531 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 7: + tenant_goods_id: 2792149415268229 + remark_name: NULL + pinyin_initial: SDL + goods_cover: https://oss.ficoo.vip/admin/BKaiCy_1753174915653.jpg + goods_bar_code: NULL + commodity_code: 1234532 + commodity_code_list: 1234532 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 8: + tenant_goods_id: 2792151077867397 + remark_name: NULL + pinyin_initial: QS,KS + goods_cover: https://oss.ficoo.vip/admin/yHGjQk_1753175402324.jpg + goods_bar_code: NULL + commodity_code: 1234533 + commodity_code_list: 1234533 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 9: + tenant_goods_id: 2792152201432965 + remark_name: NULL + pinyin_initial: YD + goods_cover: https://oss.ficoo.vip/admin/kiMwJG_1753195462903.jpg + goods_bar_code: NULL + commodity_code: 10002 + commodity_code_list: 10002 + min_discount_price: 0.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-14 21:20:28.731914+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + +Row 10: + tenant_goods_id: 2792152737648517 + remark_name: NULL + pinyin_initial: HD + goods_cover: https://oss.ficoo.vip/admin/RWW8bM_1710125368666.jpg + goods_bar_code: NULL + commodity_code: 10000 + commodity_code_list: 10000 + min_discount_price: 2.00 + cost_price: 0.00 + cost_price_type: 1 + able_discount: 1 + sale_channel: NULL + is_warehousing: 1 + is_in_site: False + able_site_transfer: 2 + common_sale_royalty: 0 + point_sale_royalty: 0 + out_goods_id: 0 + scd2_start_time: 2025-12-19 05:26:43.399836+08:00 + scd2_end_time: 9999-12-31 00:00:00+08:00 + scd2_is_current: 1 + scd2_version: 1 + diff --git a/tmp/table_analysis/dwd_assistant_service_log.txt b/tmp/table_analysis/dwd_assistant_service_log.txt new file mode 100644 index 0000000..a65d9ff --- /dev/null +++ b/tmp/table_analysis/dwd_assistant_service_log.txt @@ -0,0 +1,746 @@ +================================================================================ +Table: billiards_dwd.dwd_assistant_service_log +Primary Key: assistant_service_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_service_id: bigint | nullable=NO | PK +order_trade_no: bigint | nullable=YES | +order_settle_id: bigint | nullable=YES | +order_pay_id: bigint | nullable=YES | +order_assistant_id: bigint | nullable=YES | +order_assistant_type: integer | nullable=YES | +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +site_table_id: bigint | nullable=YES | +tenant_member_id: bigint | nullable=YES | +system_member_id: bigint | nullable=YES | +assistant_no: character varying(64) | nullable=YES | +nickname: character varying(64) | nullable=YES | +site_assistant_id: bigint | nullable=YES | +user_id: bigint | nullable=YES | +assistant_team_id: bigint | nullable=YES | +person_org_id: bigint | nullable=YES | +assistant_level: integer | nullable=YES | +level_name: character varying(64) | nullable=YES | +skill_id: bigint | nullable=YES | +skill_name: character varying(64) | nullable=YES | +ledger_unit_price: numeric(10,2) | nullable=YES | +ledger_amount: numeric(10,2) | nullable=YES | +projected_income: numeric(10,2) | nullable=YES | +coupon_deduct_money: numeric(10,2) | nullable=YES | +income_seconds: integer | nullable=YES | +real_use_seconds: integer | nullable=YES | +add_clock: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +start_use_time: timestamp with time zone | nullable=YES | +last_use_time: timestamp with time zone | nullable=YES | +is_delete: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_service_id: + Total: 5003, Non-null: 5003, Distinct: 5003 + Top values: + 3032992041225285: 1 + 2807763140514565: 1 + 2813495350102213: 1 + 2970598340873413: 1 + 2886802749753733: 1 + 2997570454391301: 1 + 2945303654697029: 1 + 3051266277197509: 1 + 3045664751453957: 1 + 2945022155688069: 1 + 2800772218849349: 1 + 3063091679972997: 1 + 3001775585283077: 1 + 2820758378661957: 1 + 2807425539770053: 1 + +order_trade_no: + Total: 5003, Non-null: 5003, Distinct: 3658 + Top values: + 2861729359482757: 10 + 2940718915358789: 9 + 2950627610183941: 8 + 2944889401395269: 8 + 2984638433856133: 7 + 2934966547269189: 7 + 3000355202664837: 7 + 2956250939576198: 6 + 2874168570629765: 6 + 2844591543274501: 6 + 2997535222647173: 6 + 2809175128066501: 6 + 2906718015440517: 6 + 2954869758986437: 6 + 2974729399292741: 6 + +order_settle_id: + Total: 5003, Non-null: 5003, Distinct: 3394 + Top values: + 2990834049419973: 12 + 2861795646623493: 12 + 2954937563646022: 9 + 2969416781466821: 9 + 2941370754092997: 9 + 3046093693290245: 9 + 3029225997715461: 8 + 2922802873075141: 8 + 2945530267174853: 8 + 3050243203696325: 8 + 2916522068413189: 8 + 2907420664120965: 8 + 2842013991014021: 8 + 3000523189570053: 7 + 2955208362444933: 7 + +order_pay_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +order_assistant_id: + Total: 5003, Non-null: 5003, Distinct: 4999 + Top values: + 3057189656331973: 2 + 3056740354852677: 2 + 3056793880594245: 2 + 3056793940723461: 2 + 2825243313294597: 1 + 2827416753818757: 1 + 3063912935885637: 1 + 2929727154587397: 1 + 2898236580448581: 1 + 2996161973850373: 1 + 2994599470108933: 1 + 2847451211418693: 1 + 2877004536514501: 1 + 2933668975478469: 1 + 2998576256633221: 1 + +order_assistant_type: + Total: 5003, Non-null: 5003, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 4402 + 2: 601 + +tenant_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 5003 + +site_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 5003 + +site_table_id: + Total: 5003, Non-null: 5003, Distinct: 74 + Top values: + 0: 502 + 2793022145302597: 347 + 2793022937911365: 278 + 2793018776735877: 241 + 2793020955840645: 218 + 2793016660660357: 208 + 2793018776604805: 189 + 2793020259897413: 186 + 2793023960551493: 163 + 2791964216463493: 136 + 2793023960682565: 116 + 2956248279567557: 113 + 2793018776703109: 105 + 2793023960633413: 98 + 2793021451292741: 89 + +tenant_member_id: + Total: 5003, Non-null: 5003, Distinct: 111 + Top values: + 0: 2530 + 2799207522600709: 369 + 2799207363643141: 253 + 2799207406946053: 210 + 2799207359858437: 193 + 2799207124305669: 136 + 2799212491392773: 133 + 2820625955784965: 108 + 2799209806071557: 64 + 2969257129938053: 62 + 2799212430657285: 56 + 2799207519176453: 53 + 2799207342704389: 44 + 2799207290996485: 33 + 2980065690831173: 33 + +system_member_id: + Total: 5003, Non-null: 5003, Distinct: 111 + Top values: + 0: 2530 + 2799207521568517: 369 + 2485293902352645: 253 + 2799207405995781: 210 + 2799207358777093: 193 + 2799207123224325: 136 + 2799212490426117: 133 + 2820625954179333: 108 + 2799209804416773: 64 + 2644610908900421: 62 + 2799212429444869: 56 + 2799207518095109: 53 + 2799207341557509: 44 + 2980065689078085: 33 + 2799207289947909: 33 + +assistant_no: + Total: 5003, Non-null: 5003, Distinct: 40 + Top values: + 2: 437 + 9: 330 + 23: 323 + 15: 319 + 4: 296 + 1: 279 + 6: 265 + 13: 254 + 18: 249 + 52: 215 + 20: 205 + 11: 204 + 16: 200 + 8: 195 + 37: 160 + +nickname: + Total: 5003, Non-null: 5003, Distinct: 61 + Top values: + 佳怡: 437 + 婉婉: 323 + 七七: 319 + 球球: 298 + 璇子: 296 + 乔西: 265 + 小燕: 264 + 涛涛: 249 + 小柔: 215 + 苏苏: 205 + 小敌: 184 + 周周: 169 + 阿清: 160 + 千千: 159 + 年糕: 142 + +site_assistant_id: + Total: 5003, Non-null: 5003, Distinct: 4999 + Top values: + 3057189656331973: 2 + 3056740354852677: 2 + 3056793880594245: 2 + 3056793940723461: 2 + 2825243313294597: 1 + 2827416753818757: 1 + 3063912935885637: 1 + 2929727154587397: 1 + 2898236580448581: 1 + 2996161973850373: 1 + 2994599470108933: 1 + 2847451211418693: 1 + 2877004536514501: 1 + 2933668975478469: 1 + 2998576256633221: 1 + +user_id: + Total: 5003, Non-null: 5003, Distinct: 61 + Top values: + 2793530479054917: 437 + 2808873057388613: 323 + 2793493698596997: 319 + 2840060593211077: 298 + 2793532503380037: 296 + 2793363001282629: 265 + 2643377426450373: 264 + 2793486361251973: 249 + 2799135414717509: 215 + 2793489356181637: 205 + 2793526116438085: 184 + 2920786463868677: 169 + 2964641017334597: 160 + 2964640248253637: 159 + 2861304460905541: 142 + +assistant_team_id: + Total: 5003, Non-null: 5003, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2792011585884037: 3848 + 2959085810992645: 1155 + +person_org_id: + Total: 5003, Non-null: 5003, Distinct: 62 + Top values: + 2793530479431749: 437 + 2808873057765445: 323 + 2793493698990213: 319 + 2840060593587909: 298 + 2793532503756869: 296 + 2793363001675845: 265 + 2964673443203909: 264 + 2793486361612421: 249 + 2799135415094341: 215 + 2793489356574853: 205 + 2793526116798533: 184 + 2920786464212741: 169 + 2964641017760581: 160 + 2964640248630469: 159 + 2861304461265989: 142 + +assistant_level: + Total: 5003, Non-null: 5003, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 20: 2429 + 10: 1610 + 40: 482 + 30: 414 + 8: 68 + +level_name: + Total: 5003, Non-null: 5003, Distinct: 5 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 中级: 2429 + 初级: 1610 + 星级: 482 + 高级: 414 + 助教管理: 68 + +skill_id: + Total: 5003, Non-null: 5003, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683529513797: 4369 + 2790683529513798: 601 + 3039912271463941: 33 + +skill_name: + Total: 5003, Non-null: 3379, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 基础课: 2993 + 附加课: 353 + 包厢课: 33 + +income_seconds: + Total: 5003, Non-null: 5003, Distinct: 514 + Top values: + 3600: 270 + 7200: 174 + 10800: 162 + 7140: 109 + 14400: 94 + 3540: 81 + 0: 79 + 3480: 38 + 3300: 34 + 6300: 27 + 2700: 26 + 4560: 26 + 10740: 26 + 7080: 25 + 6900: 24 + +real_use_seconds: + Total: 5003, Non-null: 5003, Distinct: 3676 + Top values: + 0: 680 + 3594: 10 + 3600: 10 + 7195: 9 + 3601: 8 + 7190: 8 + 7193: 8 + 7194: 8 + 3592: 7 + 3603: 7 + 7200: 6 + 7196: 6 + 3593: 6 + 3595: 6 + 3588: 5 + +add_clock: + Total: 5003, Non-null: 5003, Distinct: 60 + Top values: + 0: 4860 + 600: 17 + 3600: 8 + 1200: 7 + 1500: 6 + 900: 6 + 10800: 5 + 300: 5 + 180: 5 + 7200: 4 + 1800: 4 + 120: 3 + 240: 3 + 2640: 3 + 2700: 3 + +is_delete: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['assistant_service_id', 'order_trade_no', 'order_settle_id', 'order_pay_id', 'order_assistant_id', 'order_assistant_type', 'tenant_id', 'site_id', 'site_table_id', 'tenant_member_id', 'system_member_id', 'assistant_no', 'nickname', 'site_assistant_id', 'user_id', 'assistant_team_id', 'person_org_id', 'assistant_level', 'level_name', 'skill_id', 'skill_name', 'ledger_unit_price', 'ledger_amount', 'projected_income', 'coupon_deduct_money', 'income_seconds', 'real_use_seconds', 'add_clock', 'create_time', 'start_use_time', 'last_use_time', 'is_delete'] + +Row 1: + assistant_service_id: 2957913441292165 + order_trade_no: 2957784612605829 + order_settle_id: 2957913171693253 + order_pay_id: 0 + order_assistant_id: 2957788717240005 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793020259897413 + tenant_member_id: 0 + system_member_id: 0 + assistant_no: 27 + nickname: 泡芙 + site_assistant_id: 2957788717240005 + user_id: 2946266868976453 + assistant_team_id: 2792011585884037 + person_org_id: 2946266869336901 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 206.67 + projected_income: 168.00 + coupon_deduct_money: 0.00 + income_seconds: 7560 + real_use_seconds: 7592 + add_clock: 0 + create_time: 2025-11-09 23:25:11+08:00 + start_use_time: 2025-11-09 21:18:18+08:00 + last_use_time: 2025-11-09 23:24:50+08:00 + is_delete: 0 + +Row 2: + assistant_service_id: 2957902859292485 + order_trade_no: 2957733026106885 + order_settle_id: 2957900926045701 + order_pay_id: 0 + order_assistant_id: 2957782511161221 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793012902154373 + tenant_member_id: 0 + system_member_id: 0 + assistant_no: 3 + nickname: 素素 + site_assistant_id: 2957782511161221 + user_id: 2861303933095045 + assistant_team_id: 2792011585884037 + person_org_id: 2861303933471877 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 194.99 + projected_income: 158.67 + coupon_deduct_money: 0.00 + income_seconds: 7140 + real_use_seconds: 7163 + add_clock: 0 + create_time: 2025-11-09 23:14:25+08:00 + start_use_time: 2025-11-09 21:11:59+08:00 + last_use_time: 2025-11-09 23:12:26+08:00 + is_delete: 0 + +Row 3: + assistant_service_id: 2957853948464645 + order_trade_no: 2957728112840581 + order_settle_id: 2957853635792773 + order_pay_id: 0 + order_assistant_id: 2957796885352261 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793012902367365 + tenant_member_id: 0 + system_member_id: 0 + assistant_no: 23 + nickname: 婉婉 + site_assistant_id: 2957796885352261 + user_id: 2808873057388613 + assistant_team_id: 2792011585884037 + person_org_id: 2808873057765445 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 98.08 + projected_income: 80.00 + coupon_deduct_money: 0.00 + income_seconds: 3600 + real_use_seconds: 3603 + add_clock: 600 + create_time: 2025-11-09 22:24:40+08:00 + start_use_time: 2025-11-09 21:26:36+08:00 + last_use_time: 2025-11-09 22:16:39+08:00 + is_delete: 0 + +Row 4: + assistant_service_id: 2957814222769989 + order_trade_no: 2957792593448837 + order_settle_id: 2957813956382533 + order_pay_id: 0 + order_assistant_id: 2957757930852165 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793016660660357 + tenant_member_id: 2799207124305669 + system_member_id: 2799207123224325 + assistant_no: 9 + nickname: 球球 + site_assistant_id: 2957757930852165 + user_id: 2840060593211077 + assistant_team_id: 2792011585884037 + person_org_id: 2840060593587909 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 92.45 + projected_income: 74.67 + coupon_deduct_money: 0.00 + income_seconds: 3360 + real_use_seconds: 3396 + add_clock: 0 + create_time: 2025-11-09 21:44:15+08:00 + start_use_time: 2025-11-09 20:46:59+08:00 + last_use_time: 2025-11-09 21:43:35+08:00 + is_delete: 0 + +Row 5: + assistant_service_id: 2957799364398981 + order_trade_no: 2957798748491653 + order_settle_id: 2957798751063941 + order_pay_id: 0 + order_assistant_id: 2957798749785989 + order_assistant_type: 2 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 0 + tenant_member_id: 2799207519176453 + system_member_id: 2799207518095109 + assistant_no: 7 + nickname: 柚子 + site_assistant_id: 2957798749785989 + user_id: 2946261384137541 + assistant_team_id: 2792011585884037 + person_org_id: 2946261384514373 + assistant_level: 20 + level_name: 中级 + skill_id: 2790683529513798 + skill_name: 附加课 + ledger_unit_price: 190.00 + ledger_amount: 1330.00 + projected_income: 798.00 + coupon_deduct_money: 0.00 + income_seconds: 25200 + real_use_seconds: 0 + add_clock: 0 + create_time: 2025-11-09 21:29:08+08:00 + start_use_time: 2025-11-09 21:28:31+08:00 + last_use_time: 2025-11-09 21:28:31+08:00 + is_delete: 0 + +Row 6: + assistant_service_id: 2957786383437317 + order_trade_no: 2957651697635141 + order_settle_id: 2957786346884805 + order_pay_id: 0 + order_assistant_id: 2957651212029637 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793003806953541 + tenant_member_id: 0 + system_member_id: 0 + assistant_no: 16 + nickname: 周周 + site_assistant_id: 2957651212029637 + user_id: 2920786463868677 + assistant_team_id: 2792011585884037 + person_org_id: 2920786464212741 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 197.22 + projected_income: 160.00 + coupon_deduct_money: 0.00 + income_seconds: 7200 + real_use_seconds: 7245 + add_clock: 0 + create_time: 2025-11-09 21:15:56+08:00 + start_use_time: 2025-11-09 18:58:25+08:00 + last_use_time: 2025-11-09 20:59:20+08:00 + is_delete: 0 + +Row 7: + assistant_service_id: 2957766039736005 + order_trade_no: 2957633522503173 + order_settle_id: 2957765945708229 + order_pay_id: 0 + order_assistant_id: 2957634005782213 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793017278632069 + tenant_member_id: 2799207406946053 + system_member_id: 2799207405995781 + assistant_no: 15 + nickname: 七七 + site_assistant_id: 2957634005782213 + user_id: 2793493698596997 + assistant_team_id: 2792011585884037 + person_org_id: 2793493698990213 + assistant_level: 20 + level_name: 中级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 108.00 + ledger_amount: 240.51 + projected_income: 199.50 + coupon_deduct_money: 0.00 + income_seconds: 7980 + real_use_seconds: 8017 + add_clock: 0 + create_time: 2025-11-09 20:55:14+08:00 + start_use_time: 2025-11-09 18:40:55+08:00 + last_use_time: 2025-11-09 20:54:32+08:00 + is_delete: 0 + +Row 8: + assistant_service_id: 2957747806555973 + order_trade_no: 2957747050778437 + order_settle_id: 2957747570364229 + order_pay_id: 0 + order_assistant_id: 2957632142364357 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2791964216463493 + tenant_member_id: 2955204541320325 + system_member_id: 2955204540009605 + assistant_no: 18 + nickname: 涛涛 + site_assistant_id: 2957632142364357 + user_id: 2793486361251973 + assistant_team_id: 2792011585884037 + person_org_id: 2793486361612421 + assistant_level: 20 + level_name: 中级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 108.00 + ledger_amount: 206.82 + projected_income: 171.00 + coupon_deduct_money: 0.00 + income_seconds: 6840 + real_use_seconds: 6894 + add_clock: 0 + create_time: 2025-11-09 20:36:41+08:00 + start_use_time: 2025-11-09 18:39:01+08:00 + last_use_time: 2025-11-09 20:33:55+08:00 + is_delete: 0 + +Row 9: + assistant_service_id: 2957675849895621 + order_trade_no: 2957576702300037 + order_settle_id: 2957675763060549 + order_pay_id: 0 + order_assistant_id: 2957580484988421 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793016660660357 + tenant_member_id: 2799207124305669 + system_member_id: 2799207123224325 + assistant_no: 17 + nickname: 奈千 + site_assistant_id: 2957580484988421 + user_id: 2841614135215621 + assistant_team_id: 2792011585884037 + person_org_id: 2841614135608837 + assistant_level: 20 + level_name: 中级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 108.00 + ledger_amount: 180.78 + projected_income: 150.00 + coupon_deduct_money: 0.00 + income_seconds: 6000 + real_use_seconds: 6026 + add_clock: 240 + create_time: 2025-11-09 19:23:29+08:00 + start_use_time: 2025-11-09 17:46:28+08:00 + last_use_time: 2025-11-09 19:22:54+08:00 + is_delete: 0 + +Row 10: + assistant_service_id: 2957620516851397 + order_trade_no: 2957496003612357 + order_settle_id: 2957620447858501 + order_pay_id: 0 + order_assistant_id: 2957498600492549 + order_assistant_type: 1 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793012902285445 + tenant_member_id: 2799207363643141 + system_member_id: 2485293902352645 + assistant_no: 16 + nickname: 周周 + site_assistant_id: 2957498600492549 + user_id: 2920786463868677 + assistant_team_id: 2792011585884037 + person_org_id: 2920786464212741 + assistant_level: 10 + level_name: 初级 + skill_id: 2790683529513797 + skill_name: 基础课 + ledger_unit_price: 98.00 + ledger_amount: 191.67 + projected_income: 156.00 + coupon_deduct_money: 0.00 + income_seconds: 7020 + real_use_seconds: 7041 + add_clock: 0 + create_time: 2025-11-09 18:27:12+08:00 + start_use_time: 2025-11-09 16:23:11+08:00 + last_use_time: 2025-11-09 18:20:32+08:00 + is_delete: 0 + diff --git a/tmp/table_analysis/dwd_assistant_service_log_ex.txt b/tmp/table_analysis/dwd_assistant_service_log_ex.txt new file mode 100644 index 0000000..844e105 --- /dev/null +++ b/tmp/table_analysis/dwd_assistant_service_log_ex.txt @@ -0,0 +1,234 @@ +================================================================================ +Table: billiards_dwd.dwd_assistant_service_log_ex +Primary Key: assistant_service_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_service_id: bigint | nullable=NO | PK +table_name: character varying(64) | nullable=YES | +assistant_name: character varying(64) | nullable=YES | +ledger_name: character varying(128) | nullable=YES | +ledger_group_name: character varying(128) | nullable=YES | +ledger_count: integer | nullable=YES | +member_discount_amount: numeric(10,2) | nullable=YES | +manual_discount_amount: numeric(10,2) | nullable=YES | +service_money: numeric(10,2) | nullable=YES | +returns_clock: integer | nullable=YES | +ledger_start_time: timestamp with time zone | nullable=YES | +ledger_end_time: timestamp with time zone | nullable=YES | +ledger_status: integer | nullable=YES | +is_confirm: integer | nullable=YES | +is_single_order: integer | nullable=YES | +is_not_responding: integer | nullable=YES | +is_trash: integer | nullable=YES | +trash_applicant_id: bigint | nullable=YES | +trash_applicant_name: character varying(64) | nullable=YES | +trash_reason: character varying(255) | nullable=YES | +salesman_user_id: bigint | nullable=YES | +salesman_name: character varying(64) | nullable=YES | +salesman_org_id: bigint | nullable=YES | +skill_grade: integer | nullable=YES | +service_grade: integer | nullable=YES | +composite_grade: numeric(5,2) | nullable=YES | +sum_grade: numeric(10,2) | nullable=YES | +get_grade_times: integer | nullable=YES | +grade_status: integer | nullable=YES | +composite_grade_time: timestamp with time zone | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_service_id: + Total: 5003, Non-null: 5003, Distinct: 5003 + Top values: + 3032992041225285: 1 + 2807763140514565: 1 + 2813495350102213: 1 + 2970598340873413: 1 + 2886802749753733: 1 + 2997570454391301: 1 + 2945303654697029: 1 + 3051266277197509: 1 + 3045664751453957: 1 + 2945022155688069: 1 + 2800772218849349: 1 + 3063091679972997: 1 + 3001775585283077: 1 + 2820758378661957: 1 + 2807425539770053: 1 + +table_name: + Total: 5003, Non-null: 4501, Distinct: 73 + Top values: + 888: 347 + TV: 278 + VIP5: 241 + 666: 218 + C1: 208 + VIP1: 189 + S1: 186 + M1: 163 + A1: 136 + M4: 116 + 发财: 113 + VIP3: 105 + M3: 98 + 董事办: 89 + M8: 82 + +assistant_name: + Total: 5003, Non-null: 5003, Distinct: 61 + Top values: + 陈嘉怡: 437 + 张永英: 323 + 邹绮: 319 + 胡敏: 298 + 谭璇: 296 + 廖白洁: 265 + 李小燕: 264 + 陈淑涛: 249 + 许雨嘉: 215 + 王红苏: 205 + 张庆: 184 + 周佳怡: 169 + 梁坚锖: 160 + 张芳梅: 159 + 李艳: 142 + +ledger_name: + Total: 5003, Non-null: 5003, Distinct: 63 + Top values: + 2-佳怡: 437 + 23-婉婉: 323 + 15-七七: 319 + 9-球球: 298 + 4-璇子: 296 + 6-乔西: 265 + 1-小燕: 264 + 18-涛涛: 249 + 52-小柔: 215 + 20-苏苏: 205 + 8-小敌: 184 + 16-周周: 169 + 37-阿清: 160 + 11-千千: 159 + 21-年糕: 142 + +ledger_group_name: + Total: 5003, Non-null: 0, Distinct: 0 + Top values: + +ledger_count: + Total: 5003, Non-null: 5003, Distinct: 3713 + Top values: + 3600: 219 + 7200: 151 + 10800: 139 + 0: 79 + 14400: 78 + 18000: 15 + 3594: 10 + 7195: 9 + 21600: 8 + 7194: 8 + 7193: 8 + 7190: 8 + 3603: 7 + 36000: 7 + 3601: 7 + +returns_clock: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +ledger_status: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 5003 + +is_confirm: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 5003 + +is_single_order: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 5003 + +is_not_responding: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +is_trash: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +trash_applicant_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +trash_applicant_name: + Total: 5003, Non-null: 0, Distinct: 0 + Top values: + +trash_reason: + Total: 5003, Non-null: 0, Distinct: 0 + Top values: + +salesman_user_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +salesman_name: + Total: 5003, Non-null: 0, Distinct: 0 + Top values: + +salesman_org_id: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +skill_grade: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +service_grade: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +get_grade_times: + Total: 5003, Non-null: 5003, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 5003 + +grade_status: + Total: 5003, Non-null: 5003, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 4787 + 0: 216 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +No sample data available. diff --git a/tmp/table_analysis/dwd_assistant_trash_event.txt b/tmp/table_analysis/dwd_assistant_trash_event.txt new file mode 100644 index 0000000..a31bb16 --- /dev/null +++ b/tmp/table_analysis/dwd_assistant_trash_event.txt @@ -0,0 +1,307 @@ +================================================================================ +Table: billiards_dwd.dwd_assistant_trash_event +Primary Key: assistant_trash_event_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_trash_event_id: bigint | nullable=NO | PK +site_id: bigint | nullable=YES +table_id: bigint | nullable=YES +table_area_id: bigint | nullable=YES +assistant_no: character varying(32) | nullable=YES +assistant_name: character varying(64) | nullable=YES +charge_minutes_raw: integer | nullable=YES +abolish_amount: numeric(18,2) | nullable=YES +trash_reason: character varying(255) | nullable=YES +create_time: timestamp with time zone | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_trash_event_id: + Total: 98, Non-null: 98, Distinct: 98 + Top values: + 3043026785240965: 1 + 3003160811246469: 1 + 3003233571771077: 1 + 2997598724524613: 1 + 2969416950123717: 1 + 2975809439713221: 1 + 3061771962043973: 1 + 2991820437967429: 1 + 3041480270497669: 1 + 3042622933256072: 1 + 2889961229945221: 1 + 3061771963567685: 1 + 3041480269170565: 1 + 3022560812795909: 1 + 3061771962486341: 1 + +site_id: + Total: 98, Non-null: 98, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 98 + +table_id: + Total: 98, Non-null: 98, Distinct: 35 + Top values: + 2793022145302597: 14 + 2956248279567557: 8 + 2793016660660357: 7 + 2942056832061125: 6 + 2793002673295493: 4 + 2851642357976581: 4 + 3004536233839429: 4 + 2793017278582917: 3 + 2793020259897413: 3 + 2802282095561797: 3 + 2793017278632069: 3 + 2791964216463493: 3 + 2956247996190021: 3 + 2793023960551493: 3 + 2793023960600645: 3 + +table_area_id: + Total: 98, Non-null: 98, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791963816579205: 16 + 2791963855982661: 14 + 2791963794329671: 11 + 2956246442462533: 8 + 2791963887030341: 7 + 2791963807682693: 7 + 2802006170324037: 7 + 2791963825803397: 6 + 2942056024575749: 6 + 3004534627601285: 4 + 2791963836207173: 4 + 2956246429994309: 3 + 2791963848527941: 3 + 2791963864273029: 2 + +assistant_no: + Total: 98, Non-null: 98, Distinct: 22 + Top values: + 七七: 15 + 乔西: 10 + 球球: 8 + 璇子: 8 + 千千: 6 + 小侯: 6 + 佳怡: 5 + 婉婉: 5 + 阿清: 5 + 涛涛: 5 + 周周: 4 + Amy: 4 + 年糕: 3 + QQ: 2 + 瑶瑶: 2 + +assistant_name: + Total: 98, Non-null: 98, Distinct: 22 + Top values: + 七七: 15 + 乔西: 10 + 球球: 8 + 璇子: 8 + 千千: 6 + 小侯: 6 + 佳怡: 5 + 婉婉: 5 + 阿清: 5 + 涛涛: 5 + 周周: 4 + Amy: 4 + 年糕: 3 + QQ: 2 + 瑶瑶: 2 + +charge_minutes_raw: + Total: 98, Non-null: 98, Distinct: 50 + Top values: + 0: 36 + 3600: 7 + 10800: 5 + 6807: 2 + 652: 2 + 654: 2 + 28187: 1 + 12326: 1 + 3602: 1 + 10605: 1 + 12330: 1 + 214: 1 + 222: 1 + 14400: 1 + 13581: 1 + +abolish_amount: + Total: 98, Non-null: 98, Distinct: 50 + Top values: + 0.00: 36 + 190.00: 7 + 570.00: 5 + 19.56: 2 + 19.62: 2 + 260.94: 2 + 19.40: 1 + 56.18: 1 + 108.06: 1 + 5.83: 1 + 330.32: 1 + 234.63: 1 + 490.44: 1 + 25.71: 1 + 254.36: 1 + +trash_reason: + Total: 98, Non-null: 0, Distinct: 0 + Top values: + +create_time: + Total: 98, Non-null: 98, Distinct: 73 + Top values: + 2026-01-22 08:15:32+08:00: 4 + 2025-12-10 19:57:33+08:00: 3 + 2025-10-01 00:27:29+08:00: 3 + 2026-01-16 22:13:16+08:00: 3 + 2026-01-08 01:16:57+08:00: 3 + 2026-01-08 00:13:45+08:00: 3 + 2025-12-31 01:34:05+08:00: 3 + 2026-01-08 20:30:10+08:00: 3 + 2025-11-28 01:18:25+08:00: 2 + 2026-01-11 06:26:53+08:00: 2 + 2025-12-31 01:30:38+08:00: 2 + 2025-12-30 23:20:31+08:00: 2 + 2025-12-30 23:00:18+08:00: 2 + 2025-11-06 17:42:09+08:00: 2 + 2025-12-10 19:56:42+08:00: 2 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['assistant_trash_event_id', 'site_id', 'table_id', 'table_area_id', 'assistant_no', 'assistant_name', 'charge_minutes_raw', 'abolish_amount', 'trash_reason', 'create_time'] + +Row 1: + assistant_trash_event_id: 2957675849518789 + site_id: 2790685415443269 + table_id: 2793016660660357 + table_area_id: 2791963816579205 + assistant_no: 泡芙 + assistant_name: 泡芙 + charge_minutes_raw: 214 + abolish_amount: 5.83 + trash_reason: NULL + create_time: 2025-11-09 19:23:29+08:00 + +Row 2: + assistant_trash_event_id: 2953329501898373 + site_id: 2790685415443269 + table_id: 2851642357976581 + table_area_id: 2802006170324037 + assistant_no: 婉婉 + assistant_name: 婉婉 + charge_minutes_raw: 10800 + abolish_amount: 570.00 + trash_reason: NULL + create_time: 2025-11-06 17:42:09+08:00 + +Row 3: + assistant_trash_event_id: 2953329502357125 + site_id: 2790685415443269 + table_id: 2851642357976581 + table_area_id: 2802006170324037 + assistant_no: 小柔 + assistant_name: 小柔 + charge_minutes_raw: 10800 + abolish_amount: 570.00 + trash_reason: NULL + create_time: 2025-11-06 17:42:09+08:00 + +Row 4: + assistant_trash_event_id: 2942452375932869 + site_id: 2790685415443269 + table_id: 2793018776604805 + table_area_id: 2791963825803397 + assistant_no: 佳怡 + assistant_name: 佳怡 + charge_minutes_raw: 0 + abolish_amount: 0.00 + trash_reason: NULL + create_time: 2025-10-30 01:17:22+08:00 + +Row 5: + assistant_trash_event_id: 2941371032964997 + site_id: 2790685415443269 + table_id: 2793021451292741 + table_area_id: 2791963848527941 + assistant_no: 璇子 + assistant_name: 璇子 + charge_minutes_raw: 0 + abolish_amount: 0.00 + trash_reason: NULL + create_time: 2025-10-29 06:57:22+08:00 + +Row 6: + assistant_trash_event_id: 2939676194180229 + site_id: 2790685415443269 + table_id: 2793023960551493 + table_area_id: 2791963887030341 + assistant_no: 佳怡 + assistant_name: 佳怡 + charge_minutes_raw: 3602 + abolish_amount: 108.06 + trash_reason: NULL + create_time: 2025-10-28 02:13:18+08:00 + +Row 7: + assistant_trash_event_id: 2937959143262725 + site_id: 2790685415443269 + table_id: 2793022145302597 + table_area_id: 2791963855982661 + assistant_no: 周周 + assistant_name: 周周 + charge_minutes_raw: 0 + abolish_amount: 0.00 + trash_reason: NULL + create_time: 2025-10-26 21:06:37+08:00 + +Row 8: + assistant_trash_event_id: 2936572806285765 + site_id: 2790685415443269 + table_id: 2793017278451845 + table_area_id: 2791963816579205 + assistant_no: 璇子 + assistant_name: 璇子 + charge_minutes_raw: 0 + abolish_amount: 0.00 + trash_reason: NULL + create_time: 2025-10-25 21:36:22+08:00 + +Row 9: + assistant_trash_event_id: 2933593641256581 + site_id: 2790685415443269 + table_id: 2793012902318213 + table_area_id: 2791963807682693 + assistant_no: 周周 + assistant_name: 周周 + charge_minutes_raw: 3600 + abolish_amount: 190.00 + trash_reason: NULL + create_time: 2025-10-23 19:05:48+08:00 + +Row 10: + assistant_trash_event_id: 2926594431305093 + site_id: 2790685415443269 + table_id: 2793001904918661 + table_area_id: 2791963794329671 + assistant_no: 七七 + assistant_name: 七七 + charge_minutes_raw: 2379 + abolish_amount: 71.37 + trash_reason: NULL + create_time: 2025-10-18 20:25:50+08:00 + diff --git a/tmp/table_analysis/dwd_assistant_trash_event_ex.txt b/tmp/table_analysis/dwd_assistant_trash_event_ex.txt new file mode 100644 index 0000000..2a71e9f --- /dev/null +++ b/tmp/table_analysis/dwd_assistant_trash_event_ex.txt @@ -0,0 +1,125 @@ +================================================================================ +Table: billiards_dwd.dwd_assistant_trash_event_ex +Primary Key: assistant_trash_event_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +assistant_trash_event_id: bigint | nullable=NO | PK +table_name: character varying(64) | nullable=YES +table_area_name: character varying(64) | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +assistant_trash_event_id: + Total: 98, Non-null: 98, Distinct: 98 + Top values: + 3043026785240965: 1 + 3003160811246469: 1 + 3003233571771077: 1 + 2997598724524613: 1 + 2969416950123717: 1 + 2975809439713221: 1 + 3061771962043973: 1 + 2991820437967429: 1 + 3041480270497669: 1 + 3042622933256072: 1 + 2889961229945221: 1 + 3061771963567685: 1 + 3041480269170565: 1 + 3022560812795909: 1 + 3061771962486341: 1 + +table_name: + Total: 98, Non-null: 98, Distinct: 35 + Top values: + 888: 14 + 发财: 8 + C1: 7 + M7: 6 + 补时长5: 4 + A6: 4 + 纯k: 4 + M8: 3 + 补时长4: 3 + C5: 3 + M1: 3 + A1: 3 + S1: 3 + M2: 3 + C6: 3 + +table_area_name: + Total: 98, Non-null: 98, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + C区: 16 + K包: 14 + A区: 11 + 发财: 8 + B区: 7 + 麻将房: 7 + 补时长: 7 + VIP包厢: 6 + M7: 6 + 幸会158: 4 + 斯诺克区: 4 + 666: 3 + M8: 3 + TV台: 2 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['assistant_trash_event_id', 'table_name', 'table_area_name'] + +Row 1: + assistant_trash_event_id: 2957675849518789 + table_name: C1 + table_area_name: C区 + +Row 2: + assistant_trash_event_id: 2953329501898373 + table_name: 补时长5 + table_area_name: 补时长 + +Row 3: + assistant_trash_event_id: 2953329502357125 + table_name: 补时长5 + table_area_name: 补时长 + +Row 4: + assistant_trash_event_id: 2942452375932869 + table_name: VIP1 + table_area_name: VIP包厢 + +Row 5: + assistant_trash_event_id: 2941371032964997 + table_name: 董事办 + table_area_name: 666 + +Row 6: + assistant_trash_event_id: 2939676194180229 + table_name: M1 + table_area_name: 麻将房 + +Row 7: + assistant_trash_event_id: 2937959143262725 + table_name: 888 + table_area_name: K包 + +Row 8: + assistant_trash_event_id: 2936572806285765 + table_name: C2 + table_area_name: C区 + +Row 9: + assistant_trash_event_id: 2933593641256581 + table_name: B9 + table_area_name: B区 + +Row 10: + assistant_trash_event_id: 2926594431305093 + table_name: A4 + table_area_name: A区 + diff --git a/tmp/table_analysis/dwd_groupbuy_redemption.txt b/tmp/table_analysis/dwd_groupbuy_redemption.txt new file mode 100644 index 0000000..9995eb9 --- /dev/null +++ b/tmp/table_analysis/dwd_groupbuy_redemption.txt @@ -0,0 +1,641 @@ +================================================================================ +Table: billiards_dwd.dwd_groupbuy_redemption +Primary Key: redemption_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +redemption_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES +site_id: bigint | nullable=YES +table_id: bigint | nullable=YES +tenant_table_area_id: bigint | nullable=YES +table_charge_seconds: integer | nullable=YES +order_trade_no: bigint | nullable=YES +order_settle_id: bigint | nullable=YES +order_coupon_id: bigint | nullable=YES +coupon_origin_id: bigint | nullable=YES +promotion_activity_id: bigint | nullable=YES +promotion_coupon_id: bigint | nullable=YES +order_coupon_channel: integer | nullable=YES +ledger_unit_price: numeric(18,2) | nullable=YES +ledger_count: integer | nullable=YES +ledger_amount: numeric(18,2) | nullable=YES +coupon_money: numeric(18,2) | nullable=YES +promotion_seconds: integer | nullable=YES +coupon_code: character varying(64) | nullable=YES +is_single_order: integer | nullable=YES +is_delete: integer | nullable=YES +ledger_name: character varying(128) | nullable=YES +create_time: timestamp with time zone | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +redemption_id: + Total: 11420, Non-null: 11420, Distinct: 11420 + Top values: + 3060923562348165: 1 + 3004203161768837: 1 + 2966205249259270: 1 + 3034076747647815: 1 + 2997306276497925: 1 + 2998948566665797: 1 + 2903712823250309: 1 + 2888149018757637: 1 + 2925240126375365: 1 + 2901239667805573: 1 + 2991754480784069: 1 + 2898184055064965: 1 + 2906800959817093: 1 + 2911052387272325: 1 + 2947957977992837: 1 + +tenant_id: + Total: 11420, Non-null: 11420, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 11420 + +site_id: + Total: 11420, Non-null: 11420, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 11420 + +table_id: + Total: 11420, Non-null: 11420, Distinct: 52 + Top values: + 2793001695301765: 891 + 2793001904918661: 858 + 2793002509209733: 834 + 2793002808987781: 774 + 2793002896494725: 643 + 2792521437958213: 641 + 2791964216463493: 592 + 2793002980429893: 581 + 2793003066429509: 518 + 2793003159474245: 459 + 2793003243294789: 379 + 2793003705192517: 363 + 2793003420504133: 330 + 2793003506815045: 325 + 2793003618340933: 311 + +tenant_table_area_id: + Total: 11420, Non-null: 11420, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2791960001957765: 9290 + 2791960521691013: 1008 + 2791961347968901: 963 + 2791962314215301: 132 + 2791961060364165: 25 + 2791961709907845: 2 + +table_charge_seconds: + Total: 11420, Non-null: 11420, Distinct: 935 + Top values: + 3600: 4926 + 7200: 3596 + 10800: 905 + 14400: 448 + 18000: 122 + 21600: 35 + 25200: 21 + 0: 11 + 28800: 10 + 32400: 9 + 14246: 5 + 18002: 5 + 3557: 5 + 28865: 5 + 36000: 5 + +order_trade_no: + Total: 11420, Non-null: 11420, Distinct: 9002 + Top values: + 2896640137529669: 9 + 3046483289245381: 7 + 2960404365889029: 7 + 2950549388167621: 7 + 2933518896580293: 7 + 2995425896140997: 6 + 2988736415615685: 6 + 3010113035667909: 6 + 3022503741327173: 6 + 3056668774319877: 5 + 2966058297542533: 5 + 2988471343811269: 5 + 2936126717970117: 5 + 3013944585375557: 5 + 3017165091014085: 5 + +order_settle_id: + Total: 11420, Non-null: 11420, Distinct: 8981 + Top values: + 2897184250857861: 9 + 2950983888079045: 7 + 2960853912375109: 7 + 2933947273873157: 7 + 3046994822776709: 7 + 3022877752821829: 6 + 3010469241112517: 6 + 2995784954073221: 6 + 2989106861920837: 6 + 2885718987327941: 5 + 2991705178491525: 5 + 2966382754825989: 5 + 3058288453257029: 5 + 2936430866647557: 5 + 3014255988690693: 5 + +order_coupon_id: + Total: 11420, Non-null: 11420, Distinct: 11420 + Top values: + 2912050662049157: 1 + 3035686494063685: 1 + 3007213085870213: 1 + 3045351598294725: 1 + 2977135838496837: 1 + 3003122635117509: 1 + 2935091669730949: 1 + 3055345093101445: 1 + 2940535472083013: 1 + 2946368690440261: 1 + 3051209736849094: 1 + 3058304733234949: 1 + 2936602125863493: 1 + 2967729593779909: 1 + 3060624546892741: 1 + +coupon_origin_id: + Total: 11420, Non-null: 11420, Distinct: 11419 + Top values: + 2976096723503173: 2 + 3035686494063685: 1 + 2935091669730949: 1 + 3045351598294725: 1 + 2977135838496837: 1 + 3003122635117509: 1 + 3007213085870213: 1 + 3055345093101445: 1 + 2940535472083013: 1 + 2946368690440261: 1 + 3051209736849094: 1 + 3058304733234949: 1 + 2936602125863493: 1 + 2967729593779909: 1 + 2912050662049157: 1 + +promotion_activity_id: + Total: 11420, Non-null: 11420, Distinct: 11419 + Top values: + 2976096722765893: 2 + 2914104143595141: 1 + 2988640011946693: 1 + 2957680199012165: 1 + 2951880870397701: 1 + 2884109377441222: 1 + 2985826257373893: 1 + 2980165642814917: 1 + 3065139402591045: 1 + 2938048205195653: 1 + 2884046761627013: 1 + 2997289465924101: 1 + 2988527644363462: 1 + 3049847933978309: 1 + 3031136843485061: 1 + +promotion_coupon_id: + Total: 11420, Non-null: 11420, Distinct: 26 + Top values: + 2798727423528005: 4761 + 2798723640069125: 1517 + 3030872476945477: 819 + 2798729978514501: 707 + 3031000036133445: 655 + 2798728823213061: 541 + 2798732571167749: 537 + 2939215004469573: 398 + 2861343275830405: 319 + 2798898826300485: 251 + 3030874716834757: 236 + 3030874133269445: 148 + 2798901295615045: 105 + 2798713926290437: 101 + 3030025905916997: 100 + +order_coupon_channel: + Total: 11420, Non-null: 11420, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 10661 + 2: 759 + +ledger_unit_price: + Total: 11420, Non-null: 11420, Distinct: 15 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 29.90: 5146 + 12.12: 1161 + 11.11: 1112 + 39.90: 1066 + 69.90: 949 + 59.90: 875 + 20.26: 434 + 19.90: 403 + 128.00: 157 + 9.90: 54 + 198.00: 37 + 35.90: 22 + 888.00: 2 + 208.00: 1 + 0.00: 1 + +ledger_count: + Total: 11420, Non-null: 11420, Distinct: 755 + Top values: + 3600: 8708 + 7200: 1719 + 14400: 92 + 0: 17 + 3547: 4 + 3578: 4 + 3569: 4 + 3549: 4 + 3557: 4 + 3552: 4 + 3560: 3 + 3523: 3 + 7171: 3 + 7189: 3 + 3561: 3 + +ledger_amount: + Total: 11420, Non-null: 11420, Distinct: 795 + Top values: + 48.00: 7823 + 96.00: 839 + 68.00: 598 + 116.00: 570 + 136.00: 291 + 58.00: 288 + 192.00: 90 + 196.00: 19 + 0.00: 17 + 47.29: 4 + 47.32: 4 + 47.36: 3 + 47.71: 3 + 47.65: 3 + 37.23: 3 + +coupon_money: + Total: 11420, Non-null: 11420, Distinct: 10 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 48.00: 8309 + 116.00: 945 + 96.00: 942 + 68.00: 637 + 58.00: 319 + 288.00: 170 + 136.00: 70 + 188.00: 25 + 1988.00: 2 + 0.00: 1 + +promotion_seconds: + Total: 11420, Non-null: 11420, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 3600: 9265 + 7200: 2020 + 14400: 134 + 7170: 1 + +coupon_code: + Total: 11420, Non-null: 11420, Distinct: 11419 + Top values: + 0104650682611: 2 + 0108803395642: 1 + 0103552306766: 1 + 0103882790506: 1 + 0100774310045: 1 + 0101455615217: 1 + 0108077486830: 1 + 0104101546148: 1 + 0102677108573: 1 + 107173816222306: 1 + 0101804079843: 1 + 0110289923764: 1 + 0106001230440: 1 + 0102758206460: 1 + 0104662112988: 1 + +is_single_order: + Total: 11420, Non-null: 11420, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 11406 + 0: 14 + +is_delete: + Total: 11420, Non-null: 11420, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11420 + +ledger_name: + Total: 11420, Non-null: 11420, Distinct: 17 + Top values: + 全天A区中八一小时: 5580 + 中八A区新人特惠一小时: 1517 + 全天A区中八两小时: 943 + 全天B区中八两小时: 689 + 新人特惠一小时: 655 + 全天斯诺克一小时: 637 + 早场特惠一小时: 398 + 斯诺克两小时: 326 + B区桌球一小时: 319 + 新人特惠A区中八一小时: 105 + 麻将 、掼蛋包厢四小时: 101 + 午夜场9.9: 54 + 助理教练竞技教学两小时: 38 + 麻将包厢4小时: 30 + 中八、斯诺克包厢两小时: 25 + +create_time: + Total: 11420, Non-null: 11420, Distinct: 8981 + Top values: + 2025-09-28 01:48:18+08:00: 9 + 2025-11-05 01:56:06+08:00: 7 + 2025-11-12 01:16:25+08:00: 7 + 2026-01-11 21:43:36+08:00: 7 + 2025-10-24 01:05:44+08:00: 7 + 2025-12-06 17:30:06+08:00: 6 + 2025-12-25 20:50:35+08:00: 6 + 2025-12-02 00:16:48+08:00: 6 + 2025-12-17 02:28:04+08:00: 6 + 2025-12-21 05:20:22+08:00: 5 + 2026-01-19 03:56:00+08:00: 5 + 2025-12-01 18:54:35+08:00: 5 + 2025-10-24 17:02:13+08:00: 5 + 2026-01-02 21:40:01+08:00: 5 + 2025-11-15 02:08:14+08:00: 5 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['redemption_id', 'tenant_id', 'site_id', 'table_id', 'tenant_table_area_id', 'table_charge_seconds', 'order_trade_no', 'order_settle_id', 'order_coupon_id', 'coupon_origin_id', 'promotion_activity_id', 'promotion_coupon_id', 'order_coupon_channel', 'ledger_unit_price', 'ledger_count', 'ledger_amount', 'coupon_money', 'promotion_seconds', 'coupon_code', 'is_single_order', 'is_delete', 'ledger_name', 'create_time'] + +Row 1: + redemption_id: 2957924029615941 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793003705192517 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 3600 + order_trade_no: 2957858167230149 + order_settle_id: 2957922914357125 + order_coupon_id: 2957858168229573 + coupon_origin_id: 2957858168229573 + promotion_activity_id: 2957858166460101 + promotion_coupon_id: 2798727423528005 + order_coupon_channel: 1 + ledger_unit_price: 29.90 + ledger_count: 3600 + ledger_amount: 48.00 + coupon_money: 48.00 + promotion_seconds: 3600 + coupon_code: 0107892475999 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八一小时 + create_time: 2025-11-09 23:35:57+08:00 + +Row 2: + redemption_id: 2957922693500805 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793001904918661 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 7200 + order_trade_no: 2957804588781445 + order_settle_id: 2957922677673797 + order_coupon_id: 2957804589698949 + coupon_origin_id: 2957804589698949 + promotion_activity_id: 2957804587388805 + promotion_coupon_id: 2798729978514501 + order_coupon_channel: 1 + ledger_unit_price: 59.90 + ledger_count: 7200 + ledger_amount: 96.00 + coupon_money: 96.00 + promotion_seconds: 7200 + coupon_code: 0103324135385 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八两小时 + create_time: 2025-11-09 23:34:36+08:00 + +Row 3: + redemption_id: 2957920279957381 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793002808987781 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 6429 + order_trade_no: 2957814644494149 + order_settle_id: 2957920006540997 + order_coupon_id: 2957814645362501 + coupon_origin_id: 2957814645362501 + promotion_activity_id: 2957814643822405 + promotion_coupon_id: 2798729978514501 + order_coupon_channel: 1 + ledger_unit_price: 59.90 + ledger_count: 6429 + ledger_amount: 85.72 + coupon_money: 96.00 + promotion_seconds: 7200 + coupon_code: 0103602658831 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八两小时 + create_time: 2025-11-09 23:32:08+08:00 + +Row 4: + redemption_id: 2957913927110469 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793002980429893 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 3600 + order_trade_no: 2957852541275653 + order_settle_id: 2957913909300741 + order_coupon_id: 2957852542144005 + coupon_origin_id: 2957852542144005 + promotion_activity_id: 2957852540358149 + promotion_coupon_id: 2798727423528005 + order_coupon_channel: 1 + ledger_unit_price: 29.90 + ledger_count: 3600 + ledger_amount: 48.00 + coupon_money: 48.00 + promotion_seconds: 3600 + coupon_code: 0107327197070 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八一小时 + create_time: 2025-11-09 23:25:41+08:00 + +Row 5: + redemption_id: 2957909372718789 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793002896494725 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 3600 + order_trade_no: 2957850075041477 + order_settle_id: 2957909354516357 + order_coupon_id: 2957850075942597 + coupon_origin_id: 2957850075942597 + promotion_activity_id: 2957850074205893 + promotion_coupon_id: 2798727423528005 + order_coupon_channel: 1 + ledger_unit_price: 29.90 + ledger_count: 3600 + ledger_amount: 48.00 + coupon_money: 48.00 + promotion_seconds: 3600 + coupon_code: 0109020831527 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八一小时 + create_time: 2025-11-09 23:21:03+08:00 + +Row 6: + redemption_id: 2957902860046150 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793012902154373 + tenant_table_area_id: 2791960521691013 + table_charge_seconds: 10247 + order_trade_no: 2957733026106885 + order_settle_id: 2957900926045701 + order_coupon_id: 2957826792869573 + coupon_origin_id: 2957826792869573 + promotion_activity_id: 2957826792689349 + promotion_coupon_id: 2861343275830405 + order_coupon_channel: 1 + ledger_unit_price: 39.90 + ledger_count: 3047 + ledger_amount: 49.09 + coupon_money: 58.00 + promotion_seconds: 3600 + coupon_code: 0102043579343 + is_single_order: 1 + is_delete: 0 + ledger_name: B区桌球一小时 + create_time: 2025-11-09 23:14:25+08:00 + +Row 7: + redemption_id: 2957902860046149 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793012902154373 + tenant_table_area_id: 2791960521691013 + table_charge_seconds: 10247 + order_trade_no: 2957733026106885 + order_settle_id: 2957900926045701 + order_coupon_id: 2957733027155461 + coupon_origin_id: 2957733027155461 + promotion_activity_id: 2957733025467909 + promotion_coupon_id: 2798728823213061 + order_coupon_channel: 1 + ledger_unit_price: 69.90 + ledger_count: 7200 + ledger_amount: 116.00 + coupon_money: 116.00 + promotion_seconds: 7200 + coupon_code: 0102010287543 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天B区中八两小时 + create_time: 2025-11-09 23:14:25+08:00 + +Row 8: + redemption_id: 2957882052710277 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793003159474245 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 7200 + order_trade_no: 2957759254155141 + order_settle_id: 2957881991597573 + order_coupon_id: 2957759255072645 + coupon_origin_id: 2957759255072645 + promotion_activity_id: 2957759253532549 + promotion_coupon_id: 2798729978514501 + order_coupon_channel: 1 + ledger_unit_price: 59.90 + ledger_count: 7200 + ledger_amount: 96.00 + coupon_money: 96.00 + promotion_seconds: 7200 + coupon_code: 0108997331623 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八两小时 + create_time: 2025-11-09 22:53:15+08:00 + +Row 9: + redemption_id: 2957874957717381 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793003243294789 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 3600 + order_trade_no: 2957815796518725 + order_settle_id: 2957874940858245 + order_coupon_id: 2957815797436229 + coupon_origin_id: 2957815797436229 + promotion_activity_id: 2957815795896133 + promotion_coupon_id: 2798727423528005 + order_coupon_channel: 1 + ledger_unit_price: 29.90 + ledger_count: 3600 + ledger_amount: 48.00 + coupon_money: 48.00 + promotion_seconds: 3600 + coupon_code: 0102662046069 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八一小时 + create_time: 2025-11-09 22:46:02+08:00 + +Row 10: + redemption_id: 2957871647575749 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793001695301765 + tenant_table_area_id: 2791960001957765 + table_charge_seconds: 3600 + order_trade_no: 2957812436111237 + order_settle_id: 2957871630880261 + order_coupon_id: 2957812439093125 + coupon_origin_id: 2957812439093125 + promotion_activity_id: 2957812435259269 + promotion_coupon_id: 2798727423528005 + order_coupon_channel: 1 + ledger_unit_price: 29.90 + ledger_count: 3600 + ledger_amount: 48.00 + coupon_money: 48.00 + promotion_seconds: 3600 + coupon_code: 0108620441250 + is_single_order: 1 + is_delete: 0 + ledger_name: 全天A区中八一小时 + create_time: 2025-11-09 22:42:40+08:00 + diff --git a/tmp/table_analysis/dwd_groupbuy_redemption_ex.txt b/tmp/table_analysis/dwd_groupbuy_redemption_ex.txt new file mode 100644 index 0000000..a307756 --- /dev/null +++ b/tmp/table_analysis/dwd_groupbuy_redemption_ex.txt @@ -0,0 +1,437 @@ +================================================================================ +Table: billiards_dwd.dwd_groupbuy_redemption_ex +Primary Key: redemption_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +redemption_id: bigint | nullable=NO | PK +site_name: character varying(64) | nullable=YES +table_name: character varying(64) | nullable=YES +table_area_name: character varying(64) | nullable=YES +order_pay_id: bigint | nullable=YES +goods_option_price: numeric(18,2) | nullable=YES +goods_promotion_money: numeric(18,2) | nullable=YES +table_service_promotion_money: numeric(18,2) | nullable=YES +assistant_promotion_money: numeric(18,2) | nullable=YES +assistant_service_promotion_money: numeric(18,2) | nullable=YES +reward_promotion_money: numeric(18,2) | nullable=YES +recharge_promotion_money: numeric(18,2) | nullable=YES +offer_type: integer | nullable=YES +ledger_status: integer | nullable=YES +operator_id: bigint | nullable=YES +operator_name: character varying(64) | nullable=YES +salesman_user_id: bigint | nullable=YES +salesman_name: character varying(64) | nullable=YES +salesman_role_id: bigint | nullable=YES +salesman_org_id: bigint | nullable=YES +ledger_group_name: character varying(128) | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +redemption_id: + Total: 11427, Non-null: 11427, Distinct: 11427 + Top values: + 3060923562348165: 1 + 3004203161768837: 1 + 2966205249259270: 1 + 3034076747647815: 1 + 2997306276497925: 1 + 2998948566665797: 1 + 2903712823250309: 1 + 2888149018757637: 1 + 2925240126375365: 1 + 2901239667805573: 1 + 2991754480784069: 1 + 2898184055064965: 1 + 2906800959817093: 1 + 2911052387272325: 1 + 2947957977992837: 1 + +site_name: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 11427 + +table_name: + Total: 11427, Non-null: 11427, Distinct: 52 + Top values: + A3: 892 + A4: 858 + A5: 835 + A7: 774 + A8: 643 + A2: 642 + A1: 593 + A9: 583 + A10: 518 + A11: 459 + A12: 379 + A17: 363 + A14: 330 + A15: 325 + A16: 311 + +table_area_name: + Total: 11427, Non-null: 11427, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + A区: 9294 + B区: 998 + 斯诺克区: 962 + 麻将房: 137 + VIP包厢: 21 + K包: 8 + C区: 5 + 补时长: 1 + M7: 1 + +order_pay_id: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11427 + +goods_option_price: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +goods_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +table_service_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +assistant_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 26 + Top values: + 0.00: 11389 + 196.00: 6 + 195.89: 3 + 195.84: 3 + 195.73: 2 + 195.67: 2 + 216.00: 2 + 195.86: 2 + 195.46: 1 + 188.24: 1 + 213.48: 1 + 215.70: 1 + 195.81: 1 + 191.13: 1 + 213.47: 1 + +assistant_service_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +reward_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +recharge_promotion_money: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0.00: 11427 + +offer_type: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 11427 + +ledger_status: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 11427 + +operator_id: + Total: 11427, Non-null: 11427, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 11426 + 2801909606452165: 1 + +operator_name: + Total: 11427, Non-null: 11427, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 11426 + 收银员:郑丽珍: 1 + +salesman_user_id: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11427 + +salesman_name: + Total: 11427, Non-null: 0, Distinct: 0 + Top values: + +salesman_role_id: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11427 + +salesman_org_id: + Total: 11427, Non-null: 11427, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11427 + +ledger_group_name: + Total: 11427, Non-null: 0, Distinct: 0 + Top values: + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['redemption_id', 'site_name', 'table_name', 'table_area_name', 'order_pay_id', 'goods_option_price', 'goods_promotion_money', 'table_service_promotion_money', 'assistant_promotion_money', 'assistant_service_promotion_money', 'reward_promotion_money', 'recharge_promotion_money', 'offer_type', 'ledger_status', 'operator_id', 'operator_name', 'salesman_user_id', 'salesman_name', 'salesman_role_id', 'salesman_org_id', 'ledger_group_name'] + +Row 1: + redemption_id: 2957924029615941 + site_name: 朗朗桌球 + table_name: A17 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 2: + redemption_id: 2957922693500805 + site_name: 朗朗桌球 + table_name: A4 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 3: + redemption_id: 2957920279957381 + site_name: 朗朗桌球 + table_name: A7 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 4: + redemption_id: 2957913927110469 + site_name: 朗朗桌球 + table_name: A9 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 5: + redemption_id: 2957909372718789 + site_name: 朗朗桌球 + table_name: A8 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 6: + redemption_id: 2957902860046150 + site_name: 朗朗桌球 + table_name: B5 + table_area_name: B区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 7: + redemption_id: 2957902860046149 + site_name: 朗朗桌球 + table_name: B5 + table_area_name: B区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 8: + redemption_id: 2957882052710277 + site_name: 朗朗桌球 + table_name: A11 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 9: + redemption_id: 2957874957717381 + site_name: 朗朗桌球 + table_name: A12 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + +Row 10: + redemption_id: 2957871647575749 + site_name: 朗朗桌球 + table_name: A3 + table_area_name: A区 + order_pay_id: 0 + goods_option_price: 0.00 + goods_promotion_money: 0.00 + table_service_promotion_money: 0.00 + assistant_promotion_money: 0.00 + assistant_service_promotion_money: 0.00 + reward_promotion_money: 0.00 + recharge_promotion_money: 0.00 + offer_type: 1 + ledger_status: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + ledger_group_name: NULL + diff --git a/tmp/table_analysis/dwd_member_balance_change.txt b/tmp/table_analysis/dwd_member_balance_change.txt new file mode 100644 index 0000000..04150e9 --- /dev/null +++ b/tmp/table_analysis/dwd_member_balance_change.txt @@ -0,0 +1,432 @@ +================================================================================ +Table: billiards_dwd.dwd_member_balance_change +Primary Key: balance_change_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +balance_change_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +register_site_id: bigint | nullable=YES | +tenant_member_id: bigint | nullable=YES | +system_member_id: bigint | nullable=YES | +tenant_member_card_id: bigint | nullable=YES | +card_type_id: bigint | nullable=YES | +card_type_name: character varying(32) | nullable=YES | +member_name: character varying(64) | nullable=YES | +member_mobile: character varying(20) | nullable=YES | +balance_before: numeric(18,2) | nullable=YES | +change_amount: numeric(18,2) | nullable=YES | +balance_after: numeric(18,2) | nullable=YES | +from_type: integer | nullable=YES | +payment_method: integer | nullable=YES | +change_time: timestamp with time zone | nullable=YES | +is_delete: integer | nullable=YES | +remark: character varying(255) | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +balance_change_id: + Total: 4745, Non-null: 4745, Distinct: 4745 + Top values: + 2803564669930693: 1 + 2903462915460485: 1 + 2830174531963973: 1 + 2955043181414661: 1 + 3008791754705413: 1 + 2857467495761733: 1 + 2939340594416005: 1 + 2951010696136837: 1 + 3030232907139141: 1 + 2802394731760837: 1 + 2813556454443461: 1 + 2806436244653957: 1 + 3058422348711749: 1 + 3057603406514501: 1 + 2973479954155397: 1 + +tenant_id: + Total: 4745, Non-null: 4745, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 4745 + +site_id: + Total: 4745, Non-null: 4745, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 4720 + 0: 25 + +register_site_id: + Total: 4745, Non-null: 4745, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 4745 + +tenant_member_id: + Total: 4745, Non-null: 4745, Distinct: 256 + Top values: + 2799207522600709: 379 + 2799207359858437: 325 + 2799207363643141: 310 + 2799207124305669: 228 + 2799207406946053: 197 + 2799207519176453: 156 + 2820625955784965: 147 + 2799209806071557: 125 + 2799212491392773: 122 + 2799212845565701: 121 + 2799207290996485: 98 + 2969257129938053: 94 + 2799212430657285: 83 + 2846153189592005: 82 + 2799207370163973: 65 + +system_member_id: + Total: 4745, Non-null: 4745, Distinct: 240 + Top values: + 2799207521568517: 379 + 2799207358777093: 325 + 2485293902352645: 310 + 2799207123224325: 228 + 2799207405995781: 197 + 2799207518095109: 156 + 2820625954179333: 147 + 2799209804416773: 125 + 2799212490426117: 122 + 2799212844549893: 121 + 2799207289947909: 98 + 2644610908900421: 94 + 2799212429444869: 83 + 2846153188363205: 82 + 2799207369180933: 65 + +tenant_member_card_id: + Total: 4745, Non-null: 4745, Distinct: 457 + Top values: + 2799218552833797: 222 + 2799217444914949: 199 + 2799216572794629: 185 + 2799215988246277: 157 + 2807890878272261: 121 + 2799217048848133: 105 + 2820628725778629: 99 + 2799219999295237: 94 + 2800824360437893: 93 + 2799217231906565: 93 + 2799218773034757: 80 + 2799219205424901: 73 + 2815108067970885: 71 + 2846153189837765: 67 + 2807912860717893: 61 + +card_type_id: + Total: 4745, Non-null: 4745, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2793249295533893: 2825 + 2793266846533445: 1275 + 2791990152417157: 482 + 2794699703437125: 149 + 2793306611533637: 7 + 2791987095408517: 7 + +card_type_name: + Total: 4745, Non-null: 4745, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 储值卡: 2825 + 活动抵用券: 1275 + 台费卡: 482 + 酒水卡: 149 + 年卡: 7 + 月卡: 7 + +member_name: + Total: 4745, Non-null: 4745, Distinct: 194 + Top values: + 轩哥: 379 + 罗先生: 343 + 葛先生: 310 + 陈腾鑫: 228 + 张先生: 207 + 黄先生: 174 + 夏: 156 + 陈先生: 155 + 江先生: 147 + 陈德韩: 125 + 蔡总: 122 + 曾丹烨: 121 + 小燕: 94 + 李先生: 74 + 林先生: 73 + +member_mobile: + Total: 4745, Non-null: 4745, Distinct: 255 + Top values: + 18826267530: 379 + 13924036996: 325 + 13811638071: 310 + 17817318218: 228 + 13902258852: 197 + 19120942851: 156 + 18819484838: 147 + 13431017864: 125 + 15914338893: 122 + 13922213242: 121 + 15915782829: 98 + 17802081334: 94 + 13570163507: 83 + 15818822109: 82 + 18819262164: 65 + +from_type: + Total: 4745, Non-null: 4745, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 3613 + 4: 491 + 3: 413 + 9: 153 + 2: 66 + 7: 9 + +payment_method: + Total: 4745, Non-null: 4745, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 3841 + 3: 491 + 4: 408 + 2: 5 + +is_delete: + Total: 4745, Non-null: 4745, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 4745 + +remark: + Total: 4745, Non-null: 105, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 注销会员: 96 + 充值退款: 9 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['balance_change_id', 'tenant_id', 'site_id', 'register_site_id', 'tenant_member_id', 'system_member_id', 'tenant_member_card_id', 'card_type_id', 'card_type_name', 'member_name', 'member_mobile', 'balance_before', 'change_amount', 'balance_after', 'from_type', 'payment_method', 'change_time', 'is_delete', 'remark'] + +Row 1: + balance_change_id: 2957881605869253 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799212845565701 + system_member_id: 2799212844549893 + tenant_member_card_id: 2799219999295237 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 曾丹烨 + member_mobile: 13922213242 + balance_before: 816.30 + change_amount: -120.00 + balance_after: 696.30 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 22:52:48+08:00 + is_delete: 0 + remark: NULL + +Row 2: + balance_change_id: 2957821969387205 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207363643141 + system_member_id: 2485293902352645 + tenant_member_card_id: 2799216572794629 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 葛先生 + member_mobile: 13811638071 + balance_before: 6745.27 + change_amount: -144.00 + balance_after: 6601.27 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 21:52:08+08:00 + is_delete: 0 + remark: NULL + +Row 3: + balance_change_id: 2957814218313541 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207124305669 + system_member_id: 2799207123224325 + tenant_member_card_id: 2799215988246277 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 陈腾鑫 + member_mobile: 17817318218 + balance_before: 293.20 + change_amount: -114.61 + balance_after: 178.59 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 21:44:15+08:00 + is_delete: 0 + remark: NULL + +Row 4: + balance_change_id: 2957799362285445 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207519176453 + system_member_id: 2799207518095109 + tenant_member_card_id: 2799217048848133 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 夏 + member_mobile: 19120942851 + balance_before: 1194.00 + change_amount: -1194.00 + balance_after: 0.00 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 21:29:08+08:00 + is_delete: 0 + remark: NULL + +Row 5: + balance_change_id: 2957788164099589 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207522600709 + system_member_id: 2799207521568517 + tenant_member_card_id: 2799217060235013 + card_type_id: 2794699703437125 + card_type_name: 酒水卡 + member_name: 轩哥 + member_mobile: 18826267530 + balance_before: 532.00 + change_amount: -41.00 + balance_after: 491.00 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 21:17:45+08:00 + is_delete: 0 + remark: NULL + +Row 6: + balance_change_id: 2957785618632197 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207356434181 + system_member_id: 2799207355336453 + tenant_member_card_id: 2799216538830597 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 吴生 + member_mobile: 13600453341 + balance_before: 2077.99 + change_amount: -199.10 + balance_after: 1878.89 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 21:15:09+08:00 + is_delete: 0 + remark: NULL + +Row 7: + balance_change_id: 2957766036278981 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207406946053 + system_member_id: 2799207405995781 + tenant_member_card_id: 2799217231906565 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 张先生 + member_mobile: 13902258852 + balance_before: 813.21 + change_amount: -240.51 + balance_after: 572.70 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 20:55:14+08:00 + is_delete: 0 + remark: NULL + +Row 8: + balance_change_id: 2957747803377477 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2955204541320325 + system_member_id: 2955204540009605 + tenant_member_card_id: 2955204541615237 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 胡先生 + member_mobile: 18620043391 + balance_before: 225.64 + change_amount: -206.82 + balance_after: 18.82 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 20:36:41+08:00 + is_delete: 0 + remark: NULL + +Row 9: + balance_change_id: 2957675844718277 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207124305669 + system_member_id: 2799207123224325 + tenant_member_card_id: 2799215988246277 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 陈腾鑫 + member_mobile: 17817318218 + balance_before: 481.98 + change_amount: -188.78 + balance_after: 293.20 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 19:23:29+08:00 + is_delete: 0 + remark: NULL + +Row 10: + balance_change_id: 2957620513558213 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + register_site_id: 2790685415443269 + tenant_member_id: 2799207363643141 + system_member_id: 2485293902352645 + tenant_member_card_id: 2799216572794629 + card_type_id: 2793249295533893 + card_type_name: 储值卡 + member_name: 葛先生 + member_mobile: 13811638071 + balance_before: 6968.94 + change_amount: -223.67 + balance_after: 6745.27 + from_type: 1 + payment_method: 0 + change_time: 2025-11-09 18:27:12+08:00 + is_delete: 0 + remark: NULL + diff --git a/tmp/table_analysis/dwd_member_balance_change_ex.txt b/tmp/table_analysis/dwd_member_balance_change_ex.txt new file mode 100644 index 0000000..69b470d --- /dev/null +++ b/tmp/table_analysis/dwd_member_balance_change_ex.txt @@ -0,0 +1,152 @@ +================================================================================ +Table: billiards_dwd.dwd_member_balance_change_ex +Primary Key: balance_change_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +balance_change_id: bigint | nullable=NO | PK +pay_site_name: character varying(64) | nullable=YES | +register_site_name: character varying(64) | nullable=YES | +refund_amount: numeric(18,2) | nullable=YES | +operator_id: bigint | nullable=YES | +operator_name: character varying(64) | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +balance_change_id: + Total: 4745, Non-null: 4745, Distinct: 4745 + Top values: + 2803564669930693: 1 + 2903462915460485: 1 + 2830174531963973: 1 + 2955043181414661: 1 + 3008791754705413: 1 + 2857467495761733: 1 + 2939340594416005: 1 + 2951010696136837: 1 + 3030232907139141: 1 + 2802394731760837: 1 + 2813556454443461: 1 + 2806436244653957: 1 + 3058422348711749: 1 + 3057603406514501: 1 + 2973479954155397: 1 + +pay_site_name: + Total: 4745, Non-null: 4720, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 4720 + +register_site_name: + Total: 4745, Non-null: 4745, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 4745 + +operator_id: + Total: 4745, Non-null: 4745, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 4477 + 2790687633313029: 124 + 2800459869441029: 115 + 2800457030093701: 29 + +operator_name: + Total: 4745, Non-null: 4745, Distinct: 6 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 4101 + 店长:郑丽珊: 223 + 管理员:郑丽珊: 153 + 店长:蒋雨轩: 124 + 店长:谢晓洪: 115 + 店长:黄月柳: 29 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['balance_change_id', 'pay_site_name', 'register_site_name', 'refund_amount', 'operator_id', 'operator_name'] + +Row 1: + balance_change_id: 2957881605869253 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 2: + balance_change_id: 2957821969387205 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 3: + balance_change_id: 2957814218313541 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 4: + balance_change_id: 2957799362285445 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 5: + balance_change_id: 2957788164099589 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 6: + balance_change_id: 2957785618632197 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 7: + balance_change_id: 2957766036278981 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 8: + balance_change_id: 2957747803377477 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 9: + balance_change_id: 2957675844718277 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 10: + balance_change_id: 2957620513558213 + pay_site_name: 朗朗桌球 + register_site_name: 朗朗桌球 + refund_amount: 0.00 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + diff --git a/tmp/table_analysis/dwd_payment.txt b/tmp/table_analysis/dwd_payment.txt new file mode 100644 index 0000000..1eb5bf5 --- /dev/null +++ b/tmp/table_analysis/dwd_payment.txt @@ -0,0 +1,229 @@ +================================================================================ +Table: billiards_dwd.dwd_payment +Primary Key: payment_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +payment_id: bigint | nullable=NO | PK +site_id: bigint | nullable=YES | +relate_type: integer | nullable=YES | +relate_id: bigint | nullable=YES | +pay_amount: numeric(18,2) | nullable=YES | +pay_status: integer | nullable=YES | +payment_method: integer | nullable=YES | +online_pay_channel: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +pay_time: timestamp with time zone | nullable=YES | +pay_date: date | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +payment_id: + Total: 22949, Non-null: 22949, Distinct: 22949 + Top values: + 2991645684585157: 1 + 2885436211284421: 1 + 2936530661706117: 1 + 3002712859069189: 1 + 2896551799310789: 1 + 2974431657399173: 1 + 2823002361743429: 1 + 2812161588742661: 1 + 2825060442868997: 1 + 3050851949479813: 1 + 2973341597272325: 1 + 2910659174630981: 1 + 2817727182556869: 1 + 3020075928569349: 1 + 2858331107903237: 1 + +site_id: + Total: 22949, Non-null: 22949, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 22949 + +relate_type: + Total: 22949, Non-null: 22949, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 22468 + 5: 422 + 1: 48 + 6: 11 + +relate_id: + Total: 22949, Non-null: 22949, Distinct: 22947 + Top values: + 2834080770102021: 2 + 2948246513454661: 2 + 2800957557606597: 1 + 2976413737093189: 1 + 2903740456422597: 1 + 3016989267592773: 1 + 3021547742021445: 1 + 2927680632849861: 1 + 2993181992014533: 1 + 2947505138716229: 1 + 2992745472101061: 1 + 2993477589912261: 1 + 2997829514791365: 1 + 2854193189832517: 1 + 2998670603291013: 1 + +pay_status: + Total: 22949, Non-null: 22949, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 22949 + +payment_method: + Total: 22949, Non-null: 22949, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 14397 + 4: 8551 + 1: 1 + +online_pay_channel: + Total: 22949, Non-null: 22949, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 22949 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['payment_id', 'site_id', 'relate_type', 'relate_id', 'pay_amount', 'pay_status', 'payment_method', 'online_pay_channel', 'create_time', 'pay_time', 'pay_date'] + +Row 1: + payment_id: 2957924026486597 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957922914357125 + pay_amount: 10.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 23:35:57+08:00 + pay_time: 2025-11-09 23:35:57+08:00 + pay_date: 2025-11-09 + +Row 2: + payment_id: 2957922690600837 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957922677673797 + pay_amount: 0.00 + pay_status: 2 + payment_method: 2 + online_pay_channel: 0 + create_time: 2025-11-09 23:34:36+08:00 + pay_time: 2025-11-09 23:34:36+08:00 + pay_date: 2025-11-09 + +Row 3: + payment_id: 2957921519341061 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957921502088901 + pay_amount: 0.00 + pay_status: 2 + payment_method: 2 + online_pay_channel: 0 + create_time: 2025-11-09 23:33:24+08:00 + pay_time: 2025-11-09 23:33:24+08:00 + pay_date: 2025-11-09 + +Row 4: + payment_id: 2957920276959109 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957920006540997 + pay_amount: 10.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 23:32:08+08:00 + pay_time: 2025-11-09 23:32:08+08:00 + pay_date: 2025-11-09 + +Row 5: + payment_id: 2957913923997509 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957913909300741 + pay_amount: 0.00 + pay_status: 2 + payment_method: 2 + online_pay_channel: 0 + create_time: 2025-11-09 23:25:41+08:00 + pay_time: 2025-11-09 23:25:41+08:00 + pay_date: 2025-11-09 + +Row 6: + payment_id: 2957913438015365 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957913171693253 + pay_amount: 215.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 23:25:11+08:00 + pay_time: 2025-11-09 23:25:11+08:00 + pay_date: 2025-11-09 + +Row 7: + payment_id: 2957911880486597 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957911858859909 + pay_amount: 6.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 23:23:36+08:00 + pay_time: 2025-11-09 23:23:36+08:00 + pay_date: 2025-11-09 + +Row 8: + payment_id: 2957909369671365 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957909354516357 + pay_amount: 0.00 + pay_status: 2 + payment_method: 2 + online_pay_channel: 0 + create_time: 2025-11-09 23:21:03+08:00 + pay_time: 2025-11-09 23:21:03+08:00 + pay_date: 2025-11-09 + +Row 9: + payment_id: 2957902855409477 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957900926045701 + pay_amount: 195.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 23:14:25+08:00 + pay_time: 2025-11-09 23:14:25+08:00 + pay_date: 2025-11-09 + +Row 10: + payment_id: 2957886429597381 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2957886361276293 + pay_amount: 13.00 + pay_status: 2 + payment_method: 4 + online_pay_channel: 0 + create_time: 2025-11-09 22:57:42+08:00 + pay_time: 2025-11-09 22:57:42+08:00 + pay_date: 2025-11-09 + diff --git a/tmp/table_analysis/dwd_platform_coupon_redemption.txt b/tmp/table_analysis/dwd_platform_coupon_redemption.txt new file mode 100644 index 0000000..c3cd0ab --- /dev/null +++ b/tmp/table_analysis/dwd_platform_coupon_redemption.txt @@ -0,0 +1,543 @@ +================================================================================ +Table: billiards_dwd.dwd_platform_coupon_redemption +Primary Key: platform_coupon_redemption_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +platform_coupon_redemption_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES +site_id: bigint | nullable=YES +coupon_code: character varying(64) | nullable=YES +coupon_channel: integer | nullable=YES +coupon_name: character varying(200) | nullable=YES +sale_price: numeric(10,2) | nullable=YES +coupon_money: numeric(10,2) | nullable=YES +coupon_free_time: integer | nullable=YES +channel_deal_id: bigint | nullable=YES +deal_id: bigint | nullable=YES +group_package_id: bigint | nullable=YES +site_order_id: bigint | nullable=YES +table_id: bigint | nullable=YES +certificate_id: character varying(64) | nullable=YES +verify_id: character varying(64) | nullable=YES +use_status: integer | nullable=YES +is_delete: integer | nullable=YES +create_time: timestamp with time zone | nullable=YES +consume_time: timestamp with time zone | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +platform_coupon_redemption_id: + Total: 16977, Non-null: 16977, Distinct: 16977 + Top values: + 2865395956010949: 1 + 3031136843485061: 1 + 2985826257373893: 1 + 2957680199012165: 1 + 2866729510473605: 1 + 2884109377441222: 1 + 2830529949486213: 1 + 2980165642814917: 1 + 2876868256696133: 1 + 2938048205195653: 1 + 2866760389119877: 1 + 2884046761627013: 1 + 2875704758456005: 1 + 2811893553563845: 1 + 2886961661217093: 1 + +tenant_id: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 16977 + +site_id: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 16977 + +coupon_code: + Total: 16977, Non-null: 16977, Distinct: 16977 + Top values: + 0104662112988: 1 + 0108077486830: 1 + 7159695107: 1 + 0102677108573: 1 + 0110289923764: 1 + 0106001230440: 1 + 8797955595: 1 + 0107732825096: 1 + 0106374949747: 1 + 0101455527851: 1 + 0103745147309: 1 + 9064393328: 1 + 0103163718512: 1 + 0101475874037: 1 + 0109435599636: 1 + +coupon_channel: + Total: 16977, Non-null: 16977, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 15901 + 2: 1076 + +coupon_name: + Total: 16977, Non-null: 16977, Distinct: 25 + Top values: + 【全天可用】中八桌球一小时(A区): 7951 + 【全天可用】中八桌球两小时(A区): 1581 + 【全天可用】中八桌球两小时(B区): 1156 + 【全天可用】斯诺克一小时: 1025 + 【早场特惠】中八桌球一小时(A区): 890 + 1小时中八台球|【11月特惠】(A区): 786 + 1小时中八台球|【12月特惠】(A区): 512 + 【全天可用】中八桌球一小时(大厅A区): 437 + 【全天可用】斯诺克两小时(畅打爽打): 378 + 【双11特惠】中八桌球一小时(A区): 336 + 【新人特惠】中八桌球一小时(A区): 305 + 1小时中八台球|【年终特惠】(A区): 303 + 1小时中八台球|【新年特惠】(A区): 296 + 【全天可用】B区桌球一小时: 222 + 【全天可用】麻将、掼蛋包厢四小时: 213 + +sale_price: + Total: 16977, Non-null: 16977, Distinct: 15 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 29.90: 7951 + 69.90: 1535 + 59.90: 1515 + 39.90: 1487 + 19.90: 1302 + 12.12: 1173 + 11.11: 1122 + 20.26: 437 + 128.00: 258 + 23.90: 61 + 198.00: 57 + 9.90: 54 + 35.90: 22 + 888.00: 2 + 208.00: 1 + +coupon_money: + Total: 16977, Non-null: 16977, Distinct: 10 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 48.00: 12099 + 96.00: 1581 + 116.00: 1534 + 68.00: 1025 + 58.00: 350 + 288.00: 271 + 136.00: 70 + 188.00: 41 + 196.00: 4 + 1988.00: 2 + +coupon_free_time: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 16977 + +channel_deal_id: + Total: 16977, Non-null: 16977, Distinct: 15 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1128411555: 8388 + 1203035334: 2796 + 1130465371: 1581 + 1137872168: 1156 + 1147633733: 1025 + 1814707240811572: 694 + 1370841337: 517 + 1814983609169019: 378 + 1134269810: 213 + 1130443985: 70 + 1173128804: 58 + 1134850618: 54 + 1126976372: 41 + 1812429097416714: 4 + 1137882866: 2 + +deal_id: + Total: 16977, Non-null: 16977, Distinct: 13 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1345108507: 8388 + 1364921087: 2796 + 1346103574: 1581 + 1347938899: 1156 + 0: 1076 + 1350374807: 1025 + 1398374101: 517 + 1347146296: 213 + 1346105245: 70 + 1356069478: 58 + 1347208736: 54 + 1344368192: 41 + 1347948646: 2 + +group_package_id: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 16977 + +site_order_id: + Total: 16977, Non-null: 16977, Distinct: 13513 + Top values: + 2896640137529669: 9 + 2882404807067461: 7 + 2960404365889029: 7 + 2933518896580293: 7 + 2950549388167621: 7 + 3046483289245381: 7 + 2988736415615685: 6 + 3005658678970629: 6 + 2995425896140997: 6 + 2876549916315397: 6 + 3010113035667909: 6 + 2835922632345733: 6 + 3022503741327173: 6 + 2879867598424069: 6 + 2932219861944005: 5 + +table_id: + Total: 16977, Non-null: 16977, Distinct: 47 + Top values: + 2793001695301765: 1390 + 2793001904918661: 1305 + 2793002509209733: 1255 + 2793002808987781: 1152 + 2791964216463493: 996 + 2793002896494725: 978 + 2792521437958213: 954 + 2793002980429893: 800 + 2793003066429509: 705 + 2793003159474245: 642 + 2793003705192517: 531 + 2793003243294789: 523 + 2793003420504133: 485 + 2793003618340933: 459 + 2793003506815045: 451 + +certificate_id: + Total: 16977, Non-null: 16977, Distinct: 16192 + Top values: + 4999021073090618688: 4 + 4999021488107986299: 4 + 4999021546698841467: 4 + 5008024888256975412: 3 + 5008024888050581051: 3 + 5008029067000051413: 3 + 5008028956849290560: 3 + 5008024905853799988: 3 + 5008028905479098688: 3 + 4999021504063305980: 3 + 4999021082737232757: 3 + 4999021099899402560: 3 + 4999021580027067644: 3 + 5008029039359167540: 3 + 4999021476451334625: 3 + +verify_id: + Total: 16977, Non-null: 1076, Distinct: 1076 + Top values: + 7561390265727092755: 1 + 7582938012141553698: 1 + 7540287665518741545: 1 + 7559895432191952959: 1 + 7544277604736485402: 1 + 7531308342535260223: 1 + 7576587269093410831: 1 + 7587385436620785716: 1 + 7569129443738863668: 1 + 7533949322728081443: 1 + 7533196499174344719: 1 + 7530595035776469035: 1 + 7584640040509933618: 1 + 7561394819768043547: 1 + 7577671833093244947: 1 + +use_status: + Total: 16977, Non-null: 16977, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 16940 + 2: 37 + +is_delete: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 16977 + +create_time: + Total: 16977, Non-null: 16977, Distinct: 16345 + Top values: + 2025-10-03 21:51:46+08:00: 3 + 2025-09-17 15:13:50+08:00: 3 + 2025-09-08 20:52:50+08:00: 3 + 2025-10-01 20:23:41+08:00: 3 + 2025-10-19 22:24:32+08:00: 3 + 2025-09-07 20:24:49+08:00: 3 + 2025-09-04 21:06:06+08:00: 3 + 2025-12-19 15:52:06+08:00: 3 + 2025-11-01 22:37:15+08:00: 3 + 2025-11-26 19:52:18+08:00: 3 + 2025-11-14 22:57:00+08:00: 3 + 2025-10-24 22:27:03+08:00: 3 + 2025-12-02 19:58:58+08:00: 3 + 2025-10-04 22:09:19+08:00: 3 + 2025-11-23 16:09:48+08:00: 3 + +consume_time: + Total: 16977, Non-null: 16977, Distinct: 16345 + Top values: + 2025-09-28 16:15:19+08:00: 3 + 2025-11-23 16:09:48+08:00: 3 + 2025-09-27 21:50:08+08:00: 3 + 2025-10-04 22:09:20+08:00: 3 + 2025-09-04 21:06:07+08:00: 3 + 2025-09-17 15:13:50+08:00: 3 + 2025-09-08 20:52:51+08:00: 3 + 2025-11-01 22:37:15+08:00: 3 + 2025-12-02 19:58:59+08:00: 3 + 2025-11-16 22:25:21+08:00: 3 + 2025-10-19 22:24:32+08:00: 3 + 2025-10-24 22:27:04+08:00: 3 + 2025-09-07 20:24:49+08:00: 3 + 2025-10-23 22:20:54+08:00: 3 + 2025-12-12 14:15:27+08:00: 3 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['platform_coupon_redemption_id', 'tenant_id', 'site_id', 'coupon_code', 'coupon_channel', 'coupon_name', 'sale_price', 'coupon_money', 'coupon_free_time', 'channel_deal_id', 'deal_id', 'group_package_id', 'site_order_id', 'table_id', 'certificate_id', 'verify_id', 'use_status', 'is_delete', 'create_time', 'consume_time'] + +Row 1: + platform_coupon_redemption_id: 2957929042218501 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0102701209726 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957929043037702 + table_id: 2793001904918661 + certificate_id: 5008024789379597447 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:41:03+08:00 + consume_time: 2025-11-09 23:41:04+08:00 + +Row 2: + platform_coupon_redemption_id: 2957927120064005 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0107134856270 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957927120686597 + table_id: 2793002808987781 + certificate_id: 5008024789527869112 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:39:06+08:00 + consume_time: 2025-11-09 23:39:07+08:00 + +Row 3: + platform_coupon_redemption_id: 2957925992500742 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0102503818571 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957925993631237 + table_id: 2793001695301765 + certificate_id: 5008024788830075711 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:37:57+08:00 + consume_time: 2025-11-09 23:37:58+08:00 + +Row 4: + platform_coupon_redemption_id: 2957925992500741 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0102346193371 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957925993631237 + table_id: 2793001695301765 + certificate_id: 5008024788830075711 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:37:57+08:00 + consume_time: 2025-11-09 23:37:58+08:00 + +Row 5: + platform_coupon_redemption_id: 2957916919909893 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0105699477383 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957738518564549 + table_id: 2793003066429509 + certificate_id: 5008024780690096954 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:28:43+08:00 + consume_time: 2025-11-09 23:28:44+08:00 + +Row 6: + platform_coupon_redemption_id: 2957861876944773 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0102463607371 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球两小时(A区) + sale_price: 59.90 + coupon_money: 96.00 + coupon_free_time: 0 + channel_deal_id: 1130465371 + deal_id: 1346103574 + group_package_id: 0 + site_order_id: 2957861497179973 + table_id: 2793003618340933 + certificate_id: 5008024789317884748 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:32:44+08:00 + consume_time: 2025-11-09 22:32:44+08:00 + +Row 7: + platform_coupon_redemption_id: 2957858166460101 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0107892475999 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957858167230149 + table_id: 2793003705192517 + certificate_id: 5008024788917006239 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:28:57+08:00 + consume_time: 2025-11-09 22:28:58+08:00 + +Row 8: + platform_coupon_redemption_id: 2957852540358149 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0107327197070 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957852541275653 + table_id: 2793002980429893 + certificate_id: 5008024788664472487 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:23:14+08:00 + consume_time: 2025-11-09 22:23:15+08:00 + +Row 9: + platform_coupon_redemption_id: 2957850074205893 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0109020831527 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957850075041477 + table_id: 2793002896494725 + certificate_id: 5008024788716285174 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:20:43+08:00 + consume_time: 2025-11-09 22:20:44+08:00 + +Row 10: + platform_coupon_redemption_id: 2957848078339782 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + coupon_code: 0101731837724 + coupon_channel: 1 + coupon_name: 【全天可用】中八桌球一小时(A区) + sale_price: 29.90 + coupon_money: 48.00 + coupon_free_time: 0 + channel_deal_id: 1128411555 + deal_id: 1345108507 + group_package_id: 0 + site_order_id: 2957848079290053 + table_id: 2792521437958213 + certificate_id: 5008024789213453495 + verify_id: NULL + use_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:18:42+08:00 + consume_time: 2025-11-09 22:18:42+08:00 + diff --git a/tmp/table_analysis/dwd_platform_coupon_redemption_ex.txt b/tmp/table_analysis/dwd_platform_coupon_redemption_ex.txt new file mode 100644 index 0000000..6d23909 --- /dev/null +++ b/tmp/table_analysis/dwd_platform_coupon_redemption_ex.txt @@ -0,0 +1,164 @@ +================================================================================ +Table: billiards_dwd.dwd_platform_coupon_redemption_ex +Primary Key: platform_coupon_redemption_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +platform_coupon_redemption_id: bigint | nullable=NO | PK +coupon_cover: character varying(255) | nullable=YES +coupon_remark: character varying(255) | nullable=YES +groupon_type: integer | nullable=YES +operator_id: bigint | nullable=YES +operator_name: character varying(50) | nullable=YES + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +platform_coupon_redemption_id: + Total: 16977, Non-null: 16977, Distinct: 16977 + Top values: + 2865395956010949: 1 + 3031136843485061: 1 + 2985826257373893: 1 + 2957680199012165: 1 + 2866729510473605: 1 + 2884109377441222: 1 + 2830529949486213: 1 + 2980165642814917: 1 + 2876868256696133: 1 + 2938048205195653: 1 + 2866760389119877: 1 + 2884046761627013: 1 + 2875704758456005: 1 + 2811893553563845: 1 + 2886961661217093: 1 + +coupon_cover: + Total: 16977, Non-null: 0, Distinct: 0 + Top values: + +coupon_remark: + Total: 16977, Non-null: 1076, Distinct: 1060 + Top values: + 31fbb9ed-0236-4400-93a2-f7f789eacdd7||CgYIASAHKAESLgosaa1KWKwtqJMLQ3koqYj8WBAWc2r0VHvG11hD+i8OYG1RD4+ZgGPkhauYbXAaAA==,CgYIASAHKAESLgoslahjUW9A9/Xo9ygE32hoIlV3DnxcHDf/GAFzL3Cuy8OuJjseKYIZ9p2GVhcaAA==: 2 + 0bf0c6c9-feac-4ec8-940c-a33a9523a4e7||CgYIASAHKAESLgos4abfngnQk8eLjpgBGf6jLOcXkOhP8TNjAtB1NbH47/nlt3Qt21vtXff/lQ8aAA==,CgYIASAHKAESLgosroRQivXSfCLfMb/j4P+rleb3EKOT762OFop1CqgBEn14kdEoewOghx5WijkaAA==: 2 + 2719b84e-a584-42c9-a93a-cd8870e60b84||CgYIASAHKAESLgosP1cgM0vZzJsIirw7V+Pqw0nKzWeoLqXpHbZK8MZshR0Ys74ozEoUIXgI+RAaAA==,CgYIASAHKAESLgosUPlf9h7FDYfzYifQjRlHxaFq4qWaSx5jzXegIkVOnlcHauXknY2JqnA9Iu8aAA==: 2 + 1fa35700-6f72-4099-9fd3-35321748b578||CgYIASAHKAESLgosC0GbZaL3+2vBqQIwWQUKaQCNK8eUOf6sDuLIzGwdKTCtljWGKMmD4RU2EbwaAA==,CgYIASAHKAESLgosjuzRte2TYdYPeJ18LleTKyB8taEHNV43JObTeFmsAAC/REOXiqiYmbvAi3oaAA==: 2 + e617b8e0-4c02-4795-83dc-f9e0c92d77e5||CgYIASAHKAESLgosjcyRiB6vzNUhcjA68ON/e6ZjsETURPYqudv2X7H8D8EH7c6iDAhhA6kQWkQaAA==,CgYIASAHKAESLgos6XqijF6SaBlksgnWZme8O7EcfcBtzzyTDN4QfqfShvozeeMcyJz46OFvTQEaAA==: 2 + 0625300a-db35-42cf-9342-63acd729027d||CgYIASAHKAESLgosUbZi4/SkLe/N6DmVQv8qqYwieg46VO4rllffD/9QaZzB754oqHmGF4vd278aAA==,CgYIASAHKAESLgosueFVozH1kmvbLCWZxLtDpp1e+I5vf24ECVSK05Ir1NF0l1NGu5Z9HbPl80IaAA==: 2 + edb91233-f298-45bd-8f7c-2a9f73a77d92||CgYIASAHKAESLgoshbAEA+R9u/8Yb3YZD7Xy3+J/gwFcgwyq+cNqp0kZugRCtjKLs+OwPWFUhN4aAA==,CgYIASAHKAESLgosij8LJwyJTGtMECQzX5C2cJ+xxkpFRWlcC7Be0pxtWiAz5zghrL2tkvBj7xIaAA==: 2 + 7673a2f7-490e-489f-9519-3f80fead293c||CgYIASAHKAESLgosn4ybMk8K+YWQoAglRJGkjZZdXo1TjtVIuVJosYrYMRqq8ZE2ll8CYYJuxEYaAA==,CgYIASAHKAESLgosZg3dtv1/AzRxNP3BegIuMPUkBYcZKMgAui5ZMSWQK1OKZfMg+jPpkDQlIKYaAA==: 2 + 9ada05c0-c593-45cd-bcba-a9d0a85bff4c||CgYIASAHKAESLgosILxzvqsxK5EdG87wOx74T0zj6ooBpt0LpKGFoX2lNBT6a50kgLYFfPgRvUYaAA==,CgYIASAHKAESLgosO2TIKj9rstbNpcQ1MO39y/Tk0ldA4hoUj06nA5IQKKZtE1qMh0gJOTqa+ZIaAA==: 2 + ae98f848-0f26-4774-86bf-35c3f841dcef||CgYIASAHKAESLgos/Vo+GqrF1KE0qd4RHPdItKESZHJJ66CkuhD0a9Qh5QV+qtQO6ibhBf/ELBQaAA==,CgYIASAHKAESLgosFRk9cjXwKu+eFLfc5HT4pEg+SNsQcAg4oKa3ECgUFPZIEk+Alcy/5uAbamAaAA==: 2 + cf4916ed-fb32-4a4a-8ccf-d9975e2496b3||CgYIASAHKAESLgosaz+xQy6vHw3+pTnrRQ4EMr03JDMZIgUvuzCcM9YVI1K7dKL4NPLQdRz2tOMaAA==,CgYIASAHKAESLgosrapA8lNL7OqfqPJ0DL1FP8eqX0VbStmM8g5jlAm5OBikWvV0BV5NgSZ/q/gaAA==: 2 + 526c658e-2ae6-44e3-bfc7-abdf03bab528||CgYIASAHKAESLgos5vufm565E2OK5uArPtjW7hV0wVhqSdP69jojA2b9ol+GzjcP2aUgkiV+VFAaAA==,CgYIASAHKAESLgosvF8XW1KzRPLi4YQvKRhBfaGTpam9Obti/3Vh4TfvLQPlnmn5P8Teblb13ysaAA==: 2 + 0929b0f8-8b9d-42db-9aba-00dbc857380d||CgYIASAHKAESLgosl9Ki7h9jWsWp+eDjTlvp4Ler4cIq2VI6U0ofIBCotQXbo10nN0owVU+RQRUaAA==,CgYIASAHKAESLgosLDjzEEPPl4xIo97fRhP/ki3QH3LQ7CEZ2uQ/oOu4386vSJOH+tSBNj85EYwaAA==: 2 + d5508963-6922-4b93-b760-de3b6b1439c8||CgYIASAHKAESLgosqQH0/W7bZWtGVg0767I4PcyyREZOYUGevuoU2bC6medmivtljt2yp6Ub1LwaAA==,CgYIASAHKAESLgosbytF55bAjBMFW4kVJLmFmBOhQv/Z7sc9O7+xqZsBMOwQP8+/bGWJcY9u5owaAA==: 2 + f714511b-88fe-4cca-ace4-5495e64bb232||CgYIASAHKAESLgosm8hOHELfNpUU/naLYa1Mwh0WUAsPsqcY3v15KRCUMxlOZxjMV7dyMdoKUq8aAA==,CgYIASAHKAESLgosseuueCO+s7EyCnQc6gZKUPXRhWTTtXwHEcfOi3yX2fYngfgWJveHv2gSEYUaAA==: 2 + +groupon_type: + Total: 16977, Non-null: 16977, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 16977 + +operator_id: + Total: 16977, Non-null: 16977, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 16976 + 2801909606452165: 1 + +operator_name: + Total: 16977, Non-null: 16977, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 16968 + 店长:郑丽珊: 8 + 收银员:郑丽珍: 1 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['platform_coupon_redemption_id', 'coupon_cover', 'coupon_remark', 'groupon_type', 'operator_id', 'operator_name'] + +Row 1: + platform_coupon_redemption_id: 2957929042218501 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 2: + platform_coupon_redemption_id: 2957927120064005 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 3: + platform_coupon_redemption_id: 2957925992500742 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 4: + platform_coupon_redemption_id: 2957925992500741 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 5: + platform_coupon_redemption_id: 2957916919909893 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 6: + platform_coupon_redemption_id: 2957861876944773 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 7: + platform_coupon_redemption_id: 2957858166460101 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 8: + platform_coupon_redemption_id: 2957852540358149 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 9: + platform_coupon_redemption_id: 2957850074205893 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + +Row 10: + platform_coupon_redemption_id: 2957848078339782 + coupon_cover: NULL + coupon_remark: NULL + groupon_type: 1 + operator_id: 2790687322443013 + operator_name: 收银员:郑丽珊 + diff --git a/tmp/table_analysis/dwd_recharge_order.txt b/tmp/table_analysis/dwd_recharge_order.txt new file mode 100644 index 0000000..50a4872 --- /dev/null +++ b/tmp/table_analysis/dwd_recharge_order.txt @@ -0,0 +1,406 @@ +================================================================================ +Table: billiards_dwd.dwd_recharge_order +Primary Key: recharge_order_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +recharge_order_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +member_id: bigint | nullable=YES | +member_name_snapshot: text | nullable=YES | +member_phone_snapshot: text | nullable=YES | +tenant_member_card_id: bigint | nullable=YES | +member_card_type_name: text | nullable=YES | +settle_relate_id: bigint | nullable=YES | +settle_type: integer | nullable=YES | +settle_name: text | nullable=YES | +is_first: integer | nullable=YES | +pay_amount: numeric(18,2) | nullable=YES | +refund_amount: numeric(18,2) | nullable=YES | +point_amount: numeric(18,2) | nullable=YES | +cash_amount: numeric(18,2) | nullable=YES | +payment_method: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +pay_time: timestamp with time zone | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +recharge_order_id: + Total: 455, Non-null: 455, Distinct: 455 + Top values: + 2820575942133829: 1 + 2854848858425093: 1 + 2913844390610501: 1 + 3005078168471557: 1 + 2839291793787205: 1 + 2995833615503621: 1 + 3005099972970565: 1 + 2952293091821189: 1 + 2954877830662341: 1 + 3038783509171397: 1 + 2843295798890053: 1 + 2827776994954437: 1 + 2805121951074373: 1 + 2955205277092101: 1 + 2815107864956613: 1 + +tenant_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 455 + +site_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 455 + +member_id: + Total: 455, Non-null: 455, Distinct: 104 + Top values: + 2799207522600709: 54 + 2799207359858437: 28 + 2799212491392773: 25 + 2799207124305669: 24 + 2820625955784965: 21 + 2799209806071557: 15 + 2799207519176453: 13 + 2799207363643141: 13 + 2799207290996485: 13 + 2799207342704389: 12 + 2799207287523077: 11 + 2799207599212293: 10 + 2799207378798341: 10 + 2995832745758917: 9 + 2799212473452293: 8 + +member_name_snapshot: + Total: 455, Non-null: 455, Distinct: 85 + Top values: + 轩哥: 54 + 罗先生: 30 + 蔡总: 25 + 陈腾鑫: 24 + 江先生: 21 + 陈先生: 17 + 陈德韩: 15 + 夏: 13 + 葛先生: 13 + 叶先生: 12 + 周先生: 12 + 黄先生: 11 + 汪先生: 11 + 羊: 10 + 小熊: 10 + +member_phone_snapshot: + Total: 455, Non-null: 455, Distinct: 101 + Top values: + 18826267530: 54 + 13924036996: 28 + 15914338893: 25 + 17817318218: 24 + 18819484838: 21 + 13431017864: 15 + 15915782829: 13 + 13811638071: 13 + 19120942851: 13 + 13826479539: 12 + 13925126339: 11 + 13927020145: 10 + 18785445094: 10 + 19350986822: 9 + 17820474026: 8 + +tenant_member_card_id: + Total: 455, Non-null: 455, Distinct: 104 + Top values: + 2799217444914949: 54 + 2799218552833797: 28 + 2799219205424901: 25 + 2799215988246277: 24 + 2820628725778629: 21 + 2799218773034757: 15 + 2799217048848133: 13 + 2799216397240069: 13 + 2799216572794629: 13 + 2799216610576133: 12 + 2799218289641221: 11 + 2799216615507717: 10 + 2799217260676869: 10 + 2995832746102981: 9 + 2799219182782213: 8 + +member_card_type_name: + Total: 455, Non-null: 455, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 储值卡: 448 + 月卡: 7 + +settle_relate_id: + Total: 455, Non-null: 455, Distinct: 455 + Top values: + 2803661545442885: 1 + 3039944741750533: 1 + 3013266134322949: 1 + 2836326391760965: 1 + 3004683494312005: 1 + 3013579608493701: 1 + 3021353084536901: 1 + 2941311378837445: 1 + 3032781041421445: 1 + 2833327170882757: 1 + 2999105595558405: 1 + 2999136861178245: 1 + 2823523476212869: 1 + 2818227237948997: 1 + 3039974178473861: 1 + +settle_type: + Total: 455, Non-null: 455, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 5: 446 + 7: 9 + +settle_name: + Total: 455, Non-null: 455, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 充值订单: 446 + 充值撤销: 9 + +is_first: + Total: 455, Non-null: 455, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 349 + 1: 106 + +payment_method: + Total: 455, Non-null: 455, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 4: 441 + 1: 9 + 2: 5 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['recharge_order_id', 'tenant_id', 'site_id', 'member_id', 'member_name_snapshot', 'member_phone_snapshot', 'tenant_member_card_id', 'member_card_type_name', 'settle_relate_id', 'settle_type', 'settle_name', 'is_first', 'pay_amount', 'refund_amount', 'point_amount', 'cash_amount', 'payment_method', 'create_time', 'pay_time'] + +Row 1: + recharge_order_id: 2956757480820613 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207159990021 + member_name_snapshot: 邓飛 + member_phone_snapshot: 13600009597 + tenant_member_card_id: 2799216107980549 + member_card_type_name: 储值卡 + settle_relate_id: 2956757480443781 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 1000.00 + refund_amount: 0.00 + point_amount: 1000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-09 03:49:17+08:00 + pay_time: 2025-11-09 03:49:17+08:00 + +Row 2: + recharge_order_id: 2956721495543301 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2955204541320325 + member_name_snapshot: 胡先生 + member_phone_snapshot: 18620043391 + tenant_member_card_id: 2955204541615237 + member_card_type_name: 储值卡 + settle_relate_id: 2956721495166469 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 3000.00 + refund_amount: 0.00 + point_amount: 3000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-09 03:12:40+08:00 + pay_time: 2025-11-09 03:12:41+08:00 + +Row 3: + recharge_order_id: 2956701447835141 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207519176453 + member_name_snapshot: 夏 + member_phone_snapshot: 19120942851 + tenant_member_card_id: 2799217048848133 + member_card_type_name: 储值卡 + settle_relate_id: 2956701447507461 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 3000.00 + refund_amount: 0.00 + point_amount: 3000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-09 02:52:17+08:00 + pay_time: 2025-11-09 02:52:17+08:00 + +Row 4: + recharge_order_id: 2955465501214917 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207522600709 + member_name_snapshot: 轩哥 + member_phone_snapshot: 18826267530 + tenant_member_card_id: 2799217444914949 + member_card_type_name: 储值卡 + settle_relate_id: 2955465500805317 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 5000.00 + refund_amount: 0.00 + point_amount: 5000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-08 05:55:01+08:00 + pay_time: 2025-11-08 05:55:01+08:00 + +Row 5: + recharge_order_id: 2955205277092101 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2955204541320325 + member_name_snapshot: 胡先生 + member_phone_snapshot: 18620043391 + tenant_member_card_id: 2955204541615237 + member_card_type_name: 储值卡 + settle_relate_id: 2955205276682501 + settle_type: 5 + settle_name: 充值订单 + is_first: 1 + pay_amount: 5000.00 + refund_amount: 0.00 + point_amount: 5000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-08 01:30:18+08:00 + pay_time: 2025-11-08 01:30:18+08:00 + +Row 6: + recharge_order_id: 2955202288371845 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207378798341 + member_name_snapshot: 羊 + member_phone_snapshot: 18785445094 + tenant_member_card_id: 2799216615507717 + member_card_type_name: 储值卡 + settle_relate_id: 2955202288175237 + settle_type: 7 + settle_name: 充值撤销 + is_first: 2 + pay_amount: -5000.00 + refund_amount: 0.00 + point_amount: 0.00 + cash_amount: 0.00 + payment_method: 1 + create_time: 2025-11-08 01:27:15+08:00 + pay_time: 2025-11-08 01:27:15+08:00 + +Row 7: + recharge_order_id: 2955171778824325 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207378798341 + member_name_snapshot: 羊 + member_phone_snapshot: 18785445094 + tenant_member_card_id: 2799216615507717 + member_card_type_name: 储值卡 + settle_relate_id: 2955171778627717 + settle_type: 7 + settle_name: 充值撤销 + is_first: 2 + pay_amount: -10000.00 + refund_amount: 0.00 + point_amount: 0.00 + cash_amount: 0.00 + payment_method: 1 + create_time: 2025-11-08 00:56:13+08:00 + pay_time: 2025-11-08 00:56:13+08:00 + +Row 8: + recharge_order_id: 2955153378510917 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207378798341 + member_name_snapshot: 羊 + member_phone_snapshot: 18785445094 + tenant_member_card_id: 2799216615507717 + member_card_type_name: 储值卡 + settle_relate_id: 2955153378117701 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 10000.00 + refund_amount: 10000.00 + point_amount: 10000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-08 00:37:30+08:00 + pay_time: 2025-11-08 00:37:30+08:00 + +Row 9: + recharge_order_id: 2955100358478085 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207124305669 + member_name_snapshot: 陈腾鑫 + member_phone_snapshot: 17817318218 + tenant_member_card_id: 2799215988246277 + member_card_type_name: 储值卡 + settle_relate_id: 2955100358117637 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 1000.00 + refund_amount: 0.00 + point_amount: 1000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-07 23:43:34+08:00 + pay_time: 2025-11-07 23:43:34+08:00 + +Row 10: + recharge_order_id: 2955078217844933 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + member_id: 2799207378798341 + member_name_snapshot: 羊 + member_phone_snapshot: 18785445094 + tenant_member_card_id: 2799216615507717 + member_card_type_name: 储值卡 + settle_relate_id: 2955078217484485 + settle_type: 5 + settle_name: 充值订单 + is_first: 2 + pay_amount: 5000.00 + refund_amount: 5000.00 + point_amount: 5000.00 + cash_amount: 0.00 + payment_method: 4 + create_time: 2025-11-07 23:21:03+08:00 + pay_time: 2025-11-07 23:21:03+08:00 + diff --git a/tmp/table_analysis/dwd_recharge_order_ex.txt b/tmp/table_analysis/dwd_recharge_order_ex.txt new file mode 100644 index 0000000..b109253 --- /dev/null +++ b/tmp/table_analysis/dwd_recharge_order_ex.txt @@ -0,0 +1,166 @@ +================================================================================ +Table: billiards_dwd.dwd_recharge_order_ex +Primary Key: recharge_order_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +recharge_order_id: bigint | nullable=NO | PK +site_name_snapshot: text | nullable=YES | +settle_status: integer | nullable=YES | +is_bind_member: boolean | nullable=YES | +is_activity: boolean | nullable=YES | +is_use_coupon: boolean | nullable=YES | +is_use_discount: boolean | nullable=YES | +can_be_revoked: boolean | nullable=YES | +online_amount: numeric(18,2) | nullable=YES | +balance_amount: numeric(18,2) | nullable=YES | +card_amount: numeric(18,2) | nullable=YES | +coupon_amount: numeric(18,2) | nullable=YES | +recharge_card_amount: numeric(18,2) | nullable=YES | +gift_card_amount: numeric(18,2) | nullable=YES | +prepay_money: numeric(18,2) | nullable=YES | +consume_money: numeric(18,2) | nullable=YES | +goods_money: numeric(18,2) | nullable=YES | +real_goods_money: numeric(18,2) | nullable=YES | +table_charge_money: numeric(18,2) | nullable=YES | +service_money: numeric(18,2) | nullable=YES | +activity_discount: numeric(18,2) | nullable=YES | +all_coupon_discount: numeric(18,2) | nullable=YES | +goods_promotion_money: numeric(18,2) | nullable=YES | +assistant_promotion_money: numeric(18,2) | nullable=YES | +assistant_pd_money: numeric(18,2) | nullable=YES | +assistant_cx_money: numeric(18,2) | nullable=YES | +assistant_manual_discount: numeric(18,2) | nullable=YES | +coupon_sale_amount: numeric(18,2) | nullable=YES | +member_discount_amount: numeric(18,2) | nullable=YES | +point_discount_price: numeric(18,2) | nullable=YES | +point_discount_cost: numeric(18,2) | nullable=YES | +adjust_amount: numeric(18,2) | nullable=YES | +rounding_amount: numeric(18,2) | nullable=YES | +operator_id: bigint | nullable=YES | +operator_name_snapshot: text | nullable=YES | +salesman_user_id: bigint | nullable=YES | +salesman_name: text | nullable=YES | +order_remark: text | nullable=YES | +table_id: integer | nullable=YES | +serial_number: integer | nullable=YES | +revoke_order_id: bigint | nullable=YES | +revoke_order_name: text | nullable=YES | +revoke_time: timestamp with time zone | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +recharge_order_id: + Total: 455, Non-null: 455, Distinct: 455 + Top values: + 2917921298729925: 1 + 2820575942133829: 1 + 3013155050950085: 1 + 2854848858425093: 1 + 2913844390610501: 1 + 2936177402742341: 1 + 3005078168471557: 1 + 3021353085454405: 1 + 2839291793787205: 1 + 2995833615503621: 1 + 3005099972970565: 1 + 2952293091821189: 1 + 3053072921219077: 1 + 2976185479891077: 1 + 2954877830662341: 1 + +site_name_snapshot: + Total: 455, Non-null: 374, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 374 + +settle_status: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 455 + +is_bind_member: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 455 + +is_activity: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 455 + +is_use_coupon: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 455 + +is_use_discount: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 455 + +can_be_revoked: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 455 + +operator_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 455 + +operator_name_snapshot: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 455 + +salesman_user_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 455 + +salesman_name: + Total: 455, Non-null: 0, Distinct: 0 + Top values: + +order_remark: + Total: 455, Non-null: 0, Distinct: 0 + Top values: + +table_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 455 + +serial_number: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 455 + +revoke_order_id: + Total: 455, Non-null: 455, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 455 + +revoke_order_name: + Total: 455, Non-null: 0, Distinct: 0 + Top values: + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +No sample data available. diff --git a/tmp/table_analysis/dwd_refund.txt b/tmp/table_analysis/dwd_refund.txt new file mode 100644 index 0000000..c6dc30e --- /dev/null +++ b/tmp/table_analysis/dwd_refund.txt @@ -0,0 +1,244 @@ +================================================================================ +Table: billiards_dwd.dwd_refund +Primary Key: refund_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +refund_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +relate_type: integer | nullable=YES | +relate_id: bigint | nullable=YES | +pay_amount: numeric(18,2) | nullable=YES | +channel_fee: numeric(18,2) | nullable=YES | +pay_time: timestamp with time zone | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +payment_method: integer | nullable=YES | +member_id: bigint | nullable=YES | +member_card_id: bigint | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +refund_id: + Total: 45, Non-null: 45, Distinct: 45 + Top values: + 2899369734589381: 1 + 2970732399348869: 1 + 2985661358707397: 1 + 2951883030513413: 1 + 3038756832234821: 1 + 2948269239095045: 1 + 2967433935357637: 1 + 3042871700817797: 1 + 2931109065131653: 1 + 2977293299926853: 1 + 2919690732146181: 1 + 3023410603902917: 1 + 2990528572459717: 1 + 3004097305612997: 1 + 3005642933373061: 1 + +tenant_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 45 + +site_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 45 + +relate_type: + Total: 45, Non-null: 45, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 31 + 5: 7 + 1: 7 + +relate_id: + Total: 45, Non-null: 45, Distinct: 44 + Top values: + 2948246513454661: 2 + 2970731884121221: 1 + 2990525684091525: 1 + 2974815237903237: 1 + 2899368952286213: 1 + 3001688743250949: 1 + 3010369794509318: 1 + 3005642658105477: 1 + 2968954827492229: 1 + 2914030720124357: 1 + 3046931113969541: 1 + 2931108522378885: 1 + 3063630706494661: 1 + 2955078219057349: 1 + 3022919500843077: 1 + +payment_method: + Total: 45, Non-null: 45, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 4: 43 + 2: 2 + +member_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +member_card_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['refund_id', 'tenant_id', 'site_id', 'relate_type', 'relate_id', 'pay_amount', 'channel_fee', 'pay_time', 'create_time', 'payment_method', 'member_id', 'member_card_id'] + +Row 1: + refund_id: 2955202296416389 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 5 + relate_id: 2955078219057349 + pay_amount: -5000.00 + channel_fee: 0.00 + pay_time: 2025-11-08 01:27:16+08:00 + create_time: 2025-11-08 01:27:16+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 2: + refund_id: 2955171790194821 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 5 + relate_id: 2955153380001861 + pay_amount: -10000.00 + channel_fee: 0.00 + pay_time: 2025-11-08 00:56:14+08:00 + create_time: 2025-11-08 00:56:14+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 3: + refund_id: 2951883030513413 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2951881496577861 + pay_amount: -12.00 + channel_fee: 0.00 + pay_time: 2025-11-05 17:10:44+08:00 + create_time: 2025-11-05 17:10:44+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 4: + refund_id: 2948959062542597 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2948934289967557 + pay_amount: -65.00 + channel_fee: 0.00 + pay_time: 2025-11-03 15:36:19+08:00 + create_time: 2025-11-03 15:36:19+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 5: + refund_id: 2948630468005509 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2948246513454661 + pay_amount: -88.33 + channel_fee: 0.00 + pay_time: 2025-11-03 10:02:03+08:00 + create_time: 2025-11-03 10:02:03+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 6: + refund_id: 2948269239095045 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2948246513454661 + pay_amount: -0.67 + channel_fee: 0.00 + pay_time: 2025-11-03 03:54:36+08:00 + create_time: 2025-11-03 03:54:36+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 7: + refund_id: 2944743812581445 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 5 + relate_id: 2944743413958789 + pay_amount: -44000.00 + channel_fee: 0.00 + pay_time: 2025-10-31 16:08:21+08:00 + create_time: 2025-10-31 16:08:21+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 8: + refund_id: 2931109065131653 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2931108522378885 + pay_amount: -10.00 + channel_fee: 0.00 + pay_time: 2025-10-22 00:58:22+08:00 + create_time: 2025-10-22 00:58:22+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 9: + refund_id: 2921195994465669 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 2 + relate_id: 2920440691344901 + pay_amount: -2.00 + channel_fee: 0.00 + pay_time: 2025-10-15 00:54:16+08:00 + create_time: 2025-10-15 00:54:16+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + +Row 10: + refund_id: 2919690732146181 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + relate_type: 5 + relate_id: 2919519811440261 + pay_amount: -3000.00 + channel_fee: 0.00 + pay_time: 2025-10-13 23:23:02+08:00 + create_time: 2025-10-13 23:23:02+08:00 + payment_method: 4 + member_id: 0 + member_card_id: 0 + diff --git a/tmp/table_analysis/dwd_refund_ex.txt b/tmp/table_analysis/dwd_refund_ex.txt new file mode 100644 index 0000000..9e4c84e --- /dev/null +++ b/tmp/table_analysis/dwd_refund_ex.txt @@ -0,0 +1,360 @@ +================================================================================ +Table: billiards_dwd.dwd_refund_ex +Primary Key: refund_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +refund_id: bigint | nullable=NO | PK +tenant_name: character varying(64) | nullable=YES | +pay_sn: bigint | nullable=YES | +refund_amount: numeric(18,2) | nullable=YES | +round_amount: numeric(18,2) | nullable=YES | +balance_frozen_amount: numeric(18,2) | nullable=YES | +card_frozen_amount: numeric(18,2) | nullable=YES | +pay_status: integer | nullable=YES | +action_type: integer | nullable=YES | +is_revoke: integer | nullable=YES | +is_delete: integer | nullable=YES | +check_status: integer | nullable=YES | +online_pay_channel: integer | nullable=YES | +online_pay_type: integer | nullable=YES | +pay_terminal: integer | nullable=YES | +pay_config_id: integer | nullable=YES | +cashier_point_id: integer | nullable=YES | +operator_id: bigint | nullable=YES | +channel_payer_id: character varying(128) | nullable=YES | +channel_pay_no: character varying(128) | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +refund_id: + Total: 45, Non-null: 45, Distinct: 45 + Top values: + 2955171790194821: 1 + 3010370563410373: 1 + 2967433935357637: 1 + 3047989151893189: 1 + 3042871700817797: 1 + 2931109065131653: 1 + 2977293299926853: 1 + 2951883030513413: 1 + 2919690732146181: 1 + 3038756832234821: 1 + 2888536816749061: 1 + 3023410603902917: 1 + 2990528572459717: 1 + 3004097305612997: 1 + 2948959062542597: 1 + +tenant_name: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 45 + +pay_sn: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +pay_status: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 45 + +action_type: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 45 + +is_revoke: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +is_delete: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +check_status: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 45 + +online_pay_channel: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +online_pay_type: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +pay_terminal: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 45 + +pay_config_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +cashier_point_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +operator_id: + Total: 45, Non-null: 45, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 45 + +channel_payer_id: + Total: 45, Non-null: 0, Distinct: 0 + Top values: + +channel_pay_no: + Total: 45, Non-null: 0, Distinct: 0 + Top values: + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['refund_id', 'tenant_name', 'pay_sn', 'refund_amount', 'round_amount', 'balance_frozen_amount', 'card_frozen_amount', 'pay_status', 'action_type', 'is_revoke', 'is_delete', 'check_status', 'online_pay_channel', 'online_pay_type', 'pay_terminal', 'pay_config_id', 'cashier_point_id', 'operator_id', 'channel_payer_id', 'channel_pay_no'] + +Row 1: + refund_id: 2955202296416389 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 2: + refund_id: 2955171790194821 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 3: + refund_id: 2951883030513413 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 4: + refund_id: 2948959062542597 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 5: + refund_id: 2948630468005509 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 6: + refund_id: 2948269239095045 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 7: + refund_id: 2944743812581445 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 8: + refund_id: 2931109065131653 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 9: + refund_id: 2921195994465669 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + +Row 10: + refund_id: 2919690732146181 + tenant_name: 朗朗桌球 + pay_sn: 0 + refund_amount: 0.00 + round_amount: 0.00 + balance_frozen_amount: 0.00 + card_frozen_amount: 0.00 + pay_status: 2 + action_type: 2 + is_revoke: 0 + is_delete: 0 + check_status: 1 + online_pay_channel: 0 + online_pay_type: 0 + pay_terminal: 1 + pay_config_id: 0 + cashier_point_id: 0 + operator_id: 0 + channel_payer_id: NULL + channel_pay_no: NULL + diff --git a/tmp/table_analysis/dwd_settlement_head.txt b/tmp/table_analysis/dwd_settlement_head.txt new file mode 100644 index 0000000..7f14f5b --- /dev/null +++ b/tmp/table_analysis/dwd_settlement_head.txt @@ -0,0 +1,569 @@ +================================================================================ +Table: billiards_dwd.dwd_settlement_head +Primary Key: order_settle_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +order_settle_id: bigint | nullable=NO | PK +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +site_name: character varying(100) | nullable=YES | +table_id: bigint | nullable=YES | +settle_name: character varying(100) | nullable=YES | +order_trade_no: bigint | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +pay_time: timestamp with time zone | nullable=YES | +settle_type: integer | nullable=YES | +revoke_order_id: bigint | nullable=YES | +member_id: bigint | nullable=YES | +member_name: character varying(100) | nullable=YES | +member_phone: character varying(50) | nullable=YES | +member_card_account_id: bigint | nullable=YES | +member_card_type_name: character varying(100) | nullable=YES | +is_bind_member: boolean | nullable=YES | +member_discount_amount: numeric(18,2) | nullable=YES | +consume_money: numeric(18,2) | nullable=YES | +table_charge_money: numeric(18,2) | nullable=YES | +goods_money: numeric(18,2) | nullable=YES | +real_goods_money: numeric(18,2) | nullable=YES | +assistant_pd_money: numeric(18,2) | nullable=YES | +assistant_cx_money: numeric(18,2) | nullable=YES | +adjust_amount: numeric(18,2) | nullable=YES | +pay_amount: numeric(18,2) | nullable=YES | +balance_amount: numeric(18,2) | nullable=YES | +recharge_card_amount: numeric(18,2) | nullable=YES | +gift_card_amount: numeric(18,2) | nullable=YES | +coupon_amount: numeric(18,2) | nullable=YES | +rounding_amount: numeric(18,2) | nullable=YES | +point_amount: numeric(18,2) | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +order_settle_id: + Total: 23366, Non-null: 23366, Distinct: 23366 + Top values: + 2800957557606597: 1 + 2976413737093189: 1 + 2999989561657733: 1 + 2813089803389701: 1 + 3016989267592773: 1 + 3021547742021445: 1 + 2993181992014533: 1 + 2947505138716229: 1 + 2992745472101061: 1 + 2854193189832517: 1 + 2993477589912261: 1 + 2997829514791365: 1 + 2870187561552133: 1 + 2998670603291013: 1 + 2927680632849861: 1 + +tenant_id: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 23366 + +site_id: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 23366 + +site_name: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 23366 + +table_id: + Total: 23366, Non-null: 23366, Distinct: 75 + Top values: + 0: 5141 + 2793001695301765: 1075 + 2793001904918661: 1009 + 2793002509209733: 1006 + 2791964216463493: 930 + 2793002808987781: 906 + 2792521437958213: 840 + 2793002896494725: 775 + 2793002980429893: 659 + 2793003066429509: 619 + 2793003159474245: 505 + 2793003705192517: 486 + 2793003243294789: 463 + 2793020259897413: 456 + 2793003420504133: 418 + +settle_name: + Total: 23366, Non-null: 23366, Distinct: 80 + Top values: + 商城订单: 5131 + A区 A3: 1075 + A区 A4: 1009 + A区 A5: 1006 + A区 A1: 930 + A区 A7: 906 + A区 A2: 840 + A区 A8: 775 + A区 A9: 659 + A区 A10: 619 + A区 A11: 505 + A区 A17: 486 + A区 A12: 463 + 斯诺克区 S1: 456 + A区 A14: 418 + +order_trade_no: + Total: 23366, Non-null: 23366, Distinct: 23336 + Top values: + 3027329290242053: 3 + 2976235557292165: 2 + 2994308597600517: 2 + 2974729138770693: 2 + 3015928035247749: 2 + 2865908017401733: 2 + 2933663025792581: 2 + 2984046562511557: 2 + 3064035456208069: 2 + 3065441882573701: 2 + 2997378605779525: 2 + 2980515978873157: 2 + 3056795414873989: 2 + 2807676743111429: 2 + 3015904480560645: 2 + +settle_type: + Total: 23366, Non-null: 23366, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 18225 + 3: 5131 + 7: 9 + 6: 1 + +revoke_order_id: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23366 + +member_id: + Total: 23366, Non-null: 23366, Distinct: 196 + Top values: + 0: 19344 + 2799207363643141: 261 + 2799207359858437: 250 + 2799207522600709: 231 + 2799207406946053: 175 + 2799207124305669: 149 + 2799207519176453: 138 + 2799207403554565: 131 + 2820625955784965: 119 + 2799212845565701: 108 + 2799207328155397: 104 + 2799209806071557: 102 + 2799207390349061: 87 + 2799212430657285: 82 + 2799207290996485: 82 + +member_name: + Total: 23366, Non-null: 1798, Distinct: 100 + Top values: + 张先生: 111 + 陈先生: 110 + 夏: 102 + 轩哥: 98 + 陈德韩: 93 + 黄先生: 62 + 曾巧明: 58 + 罗先生: 58 + 江先生: 50 + 周先生: 48 + 郭先生: 43 + 汪先生: 41 + 易先生: 40 + 刘先生: 40 + 艾宇民: 39 + +member_phone: + Total: 23366, Non-null: 1798, Distinct: 126 + Top values: + 19120942851: 102 + 13902258852: 99 + 18826267530: 98 + 13431017864: 93 + 15915782829: 77 + 18688471488: 58 + 13924036996: 55 + 18819484838: 50 + 13570163507: 44 + 13825157225: 42 + 13925126339: 41 + 18689418682: 40 + 15062279958: 39 + 19927472465: 39 + 13922213242: 38 + +member_card_account_id: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23366 + +member_card_type_name: + Total: 23366, Non-null: 0, Distinct: 0 + Top values: + +is_bind_member: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['order_settle_id', 'tenant_id', 'site_id', 'site_name', 'table_id', 'settle_name', 'order_trade_no', 'create_time', 'pay_time', 'settle_type', 'revoke_order_id', 'member_id', 'member_name', 'member_phone', 'member_card_account_id', 'member_card_type_name', 'is_bind_member', 'member_discount_amount', 'consume_money', 'table_charge_money', 'goods_money', 'real_goods_money', 'assistant_pd_money', 'assistant_cx_money', 'adjust_amount', 'pay_amount', 'balance_amount', 'recharge_card_amount', 'gift_card_amount', 'coupon_amount', 'rounding_amount', 'point_amount'] + +Row 1: + order_settle_id: 2957922914357125 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793003705192517 + settle_name: A区 A17 + order_trade_no: 2957858167230149 + create_time: 2025-11-09 23:34:49+08:00 + pay_time: 2025-11-09 23:35:57+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 58.00 + table_charge_money: 48.00 + goods_money: 10.00 + real_goods_money: 10.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 10.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 48.00 + rounding_amount: 0.00 + point_amount: 10.00 + +Row 2: + order_settle_id: 2957922677673797 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793001904918661 + settle_name: A区 A4 + order_trade_no: 2957804588781445 + create_time: 2025-11-09 23:34:35+08:00 + pay_time: 2025-11-09 23:34:36+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 96.00 + table_charge_money: 96.00 + goods_money: 0.00 + real_goods_money: 0.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 0.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 96.00 + rounding_amount: 0.00 + point_amount: 0.00 + +Row 3: + order_settle_id: 2957921502088901 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2791964216463493 + settle_name: A区 A1 + order_trade_no: 2957862075436549 + create_time: 2025-11-09 23:33:23+08:00 + pay_time: 2025-11-09 23:33:24+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 48.00 + table_charge_money: 48.00 + goods_money: 0.00 + real_goods_money: 0.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 0.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 0.00 + rounding_amount: 0.00 + point_amount: 0.00 + +Row 4: + order_settle_id: 2957920006540997 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793002808987781 + settle_name: A区 A7 + order_trade_no: 2957814644494149 + create_time: 2025-11-09 23:31:52+08:00 + pay_time: 2025-11-09 23:32:08+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 95.72 + table_charge_money: 85.72 + goods_money: 10.00 + real_goods_money: 10.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 10.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 85.72 + rounding_amount: 0.00 + point_amount: 10.00 + +Row 5: + order_settle_id: 2957913909300741 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793002980429893 + settle_name: A区 A9 + order_trade_no: 2957852541275653 + create_time: 2025-11-09 23:25:40+08:00 + pay_time: 2025-11-09 23:25:41+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 48.00 + table_charge_money: 48.00 + goods_money: 0.00 + real_goods_money: 0.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 0.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 48.00 + rounding_amount: 0.00 + point_amount: 0.00 + +Row 6: + order_settle_id: 2957913171693253 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793020259897413 + settle_name: 斯诺克区 S1 + order_trade_no: 2957784612605829 + create_time: 2025-11-09 23:24:55+08:00 + pay_time: 2025-11-09 23:25:11+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 362.82 + table_charge_money: 148.15 + goods_money: 8.00 + real_goods_money: 8.00 + assistant_pd_money: 206.67 + assistant_cx_money: 0.00 + adjust_amount: 148.15 + pay_amount: 215.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 0.00 + rounding_amount: 0.33 + point_amount: 215.00 + +Row 7: + order_settle_id: 2957911858859909 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 0 + settle_name: 商城订单 + order_trade_no: 2957911856353157 + create_time: 2025-11-09 23:23:34+08:00 + pay_time: 2025-11-09 23:23:36+08:00 + settle_type: 3 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 8.00 + table_charge_money: 0.00 + goods_money: 8.00 + real_goods_money: 6.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 6.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 0.00 + rounding_amount: 0.00 + point_amount: 6.00 + +Row 8: + order_settle_id: 2957909354516357 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793002896494725 + settle_name: A区 A8 + order_trade_no: 2957850075041477 + create_time: 2025-11-09 23:21:02+08:00 + pay_time: 2025-11-09 23:21:03+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 48.00 + table_charge_money: 48.00 + goods_money: 0.00 + real_goods_money: 0.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 0.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 48.00 + rounding_amount: 0.00 + point_amount: 0.00 + +Row 9: + order_settle_id: 2957900926045701 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 2793012902154373 + settle_name: B区 B5 + order_trade_no: 2957733026106885 + create_time: 2025-11-09 23:12:27+08:00 + pay_time: 2025-11-09 23:14:25+08:00 + settle_type: 1 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 360.08 + table_charge_money: 165.09 + goods_money: 0.00 + real_goods_money: 0.00 + assistant_pd_money: 194.99 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 195.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 165.09 + rounding_amount: 0.01 + point_amount: 195.00 + +Row 10: + order_settle_id: 2957886361276293 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_name: 朗朗桌球 + table_id: 0 + settle_name: 商城订单 + order_trade_no: 2957886358310789 + create_time: 2025-11-09 22:57:38+08:00 + pay_time: 2025-11-09 22:57:42+08:00 + settle_type: 3 + revoke_order_id: 0 + member_id: 0 + member_name: NULL + member_phone: NULL + member_card_account_id: 0 + member_card_type_name: NULL + is_bind_member: False + member_discount_amount: 0.00 + consume_money: 19.00 + table_charge_money: 0.00 + goods_money: 19.00 + real_goods_money: 19.00 + assistant_pd_money: 0.00 + assistant_cx_money: 0.00 + adjust_amount: 0.00 + pay_amount: 13.00 + balance_amount: 0.00 + recharge_card_amount: 0.00 + gift_card_amount: 0.00 + coupon_amount: 0.00 + rounding_amount: -6.00 + point_amount: 13.00 + diff --git a/tmp/table_analysis/dwd_settlement_head_ex.txt b/tmp/table_analysis/dwd_settlement_head_ex.txt new file mode 100644 index 0000000..ea9d5fe --- /dev/null +++ b/tmp/table_analysis/dwd_settlement_head_ex.txt @@ -0,0 +1,161 @@ +================================================================================ +Table: billiards_dwd.dwd_settlement_head_ex +Primary Key: order_settle_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +order_settle_id: bigint | nullable=NO | PK +serial_number: integer | nullable=YES | +settle_status: integer | nullable=YES | +can_be_revoked: boolean | nullable=YES | +revoke_order_name: character varying(100) | nullable=YES | +revoke_time: timestamp with time zone | nullable=YES | +is_first_order: boolean | nullable=YES | +service_money: numeric(18,2) | nullable=YES | +cash_amount: numeric(18,2) | nullable=YES | +card_amount: numeric(18,2) | nullable=YES | +online_amount: numeric(18,2) | nullable=YES | +refund_amount: numeric(18,2) | nullable=YES | +prepay_money: numeric(18,2) | nullable=YES | +payment_method: integer | nullable=YES | +coupon_sale_amount: numeric(18,2) | nullable=YES | +all_coupon_discount: numeric(18,2) | nullable=YES | +goods_promotion_money: numeric(18,2) | nullable=YES | +assistant_promotion_money: numeric(18,2) | nullable=YES | +activity_discount: numeric(18,2) | nullable=YES | +assistant_manual_discount: numeric(18,2) | nullable=YES | +point_discount_price: numeric(18,2) | nullable=YES | +point_discount_cost: numeric(18,2) | nullable=YES | +is_use_coupon: boolean | nullable=YES | +is_use_discount: boolean | nullable=YES | +is_activity: boolean | nullable=YES | +operator_name: character varying(100) | nullable=YES | +salesman_name: character varying(100) | nullable=YES | +order_remark: character varying(255) | nullable=YES | +operator_id: bigint | nullable=YES | +salesman_user_id: bigint | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +order_settle_id: + Total: 23366, Non-null: 23366, Distinct: 23366 + Top values: + 2800957557606597: 1 + 2976413737093189: 1 + 2999989561657733: 1 + 2813089803389701: 1 + 3016989267592773: 1 + 3021547742021445: 1 + 2993181992014533: 1 + 2947505138716229: 1 + 2992745472101061: 1 + 2854193189832517: 1 + 2993477589912261: 1 + 2997829514791365: 1 + 2870187561552133: 1 + 2998670603291013: 1 + 2927680632849861: 1 + +serial_number: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23366 + +settle_status: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 23366 + +can_be_revoked: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +revoke_order_name: + Total: 23366, Non-null: 0, Distinct: 0 + Top values: + +is_first_order: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +payment_method: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23366 + +is_use_coupon: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +is_use_discount: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +is_activity: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + False: 23366 + +operator_name: + Total: 23366, Non-null: 23366, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 23361 + 收银员:郑丽珍: 2 + 教练:周蒙: 2 + 店长:郑丽珊: 1 + +salesman_name: + Total: 23366, Non-null: 0, Distinct: 0 + Top values: + +order_remark: + Total: 23366, Non-null: 154, Distinct: 54 + Top values: + 五折: 42 + 轩哥: 24 + 陈德韩: 7 + 五折已收68: 5 + 已收48: 4 + 已收58: 4 + 晖哥: 4 + 五折 : 3 + 蔡总: 3 + 免台费: 3 + 卡片: 3 + 七折: 2 + 游哥: 2 + 已收96: 2 + 廖总: 2 + +operator_id: + Total: 23366, Non-null: 23366, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 23362 + 2801909606452165: 2 + 2794761849227077: 2 + +salesman_user_id: + Total: 23366, Non-null: 23366, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 23366 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +No sample data available. diff --git a/tmp/table_analysis/dwd_store_goods_sale.txt b/tmp/table_analysis/dwd_store_goods_sale.txt new file mode 100644 index 0000000..ab01bf7 --- /dev/null +++ b/tmp/table_analysis/dwd_store_goods_sale.txt @@ -0,0 +1,536 @@ +================================================================================ +Table: billiards_dwd.dwd_store_goods_sale +Primary Key: store_goods_sale_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +store_goods_sale_id: bigint | nullable=NO | PK +order_trade_no: bigint | nullable=YES | +order_settle_id: bigint | nullable=YES | +order_pay_id: bigint | nullable=YES | +order_goods_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +tenant_id: bigint | nullable=YES | +site_goods_id: bigint | nullable=YES | +tenant_goods_id: bigint | nullable=YES | +tenant_goods_category_id: bigint | nullable=YES | +tenant_goods_business_id: bigint | nullable=YES | +site_table_id: bigint | nullable=YES | +ledger_name: character varying(200) | nullable=YES | +ledger_group_name: character varying(100) | nullable=YES | +ledger_unit_price: numeric(18,2) | nullable=YES | +ledger_count: integer | nullable=YES | +ledger_amount: numeric(18,2) | nullable=YES | +discount_price: numeric(18,2) | nullable=YES | +real_goods_money: numeric(18,2) | nullable=YES | +cost_money: numeric(18,2) | nullable=YES | +ledger_status: integer | nullable=YES | +is_delete: integer | nullable=YES | +create_time: timestamp with time zone | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +store_goods_sale_id: + Total: 17563, Non-null: 17563, Distinct: 17563 + Top values: + 2809190478400005: 1 + 2851880737673029: 1 + 2952070493832965: 1 + 2906954061366725: 1 + 2938307239004613: 1 + 3005756259240005: 1 + 2974374115529669: 1 + 2923856003171717: 1 + 2943758441140037: 1 + 2847298999880710: 1 + 2833260565810374: 1 + 2825241626758342: 1 + 2856010572236613: 1 + 2957977026269061: 1 + 2830618359008327: 1 + +order_trade_no: + Total: 17563, Non-null: 17563, Distinct: 7163 + Top values: + 2956250939576198: 113 + 2973335525689669: 70 + 2940718915358789: 67 + 2974729399292741: 65 + 2954923656038661: 64 + 3010128962292229: 62 + 2915223410297541: 62 + 2934966547269189: 60 + 2960724933463749: 59 + 2984638433856133: 57 + 2963357191196293: 55 + 2984041538423493: 53 + 2950627610183941: 51 + 2970521489263493: 51 + 2998767512832389: 49 + +order_settle_id: + Total: 17563, Non-null: 17563, Distinct: 6933 + Top values: + 2990834049419973: 175 + 2957976912760517: 113 + 2959078619024901: 109 + 2975809351223365: 74 + 2916522068413189: 70 + 2941370754092997: 67 + 2988096687166021: 65 + 2955465802696965: 64 + 2961214006234629: 64 + 3010830541031877: 62 + 2907420664120965: 60 + 2936162601535109: 60 + 2985381586864773: 57 + 2964115212390213: 55 + 2954937563646022: 53 + +order_pay_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +order_goods_id: + Total: 17563, Non-null: 17563, Distinct: 9386 + Top values: + 0: 8178 + 2976305009067845: 1 + 2990206290809413: 1 + 2945141923104773: 1 + 2993381408098949: 1 + 2943467742220357: 1 + 2997717616118277: 1 + 2916521024621573: 1 + 2960567927000901: 1 + 2936584761854533: 1 + 2953388284528389: 1 + 3000299343169989: 1 + 2997629226715653: 1 + 2969098168323205: 1 + 2956254301916677: 1 + +site_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 17563 + +tenant_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 17563 + +site_goods_id: + Total: 17563, Non-null: 17563, Distinct: 147 + Top values: + 2793026176012357: 2182 + 2791953867886725: 1328 + 2793026183041093: 1006 + 2794695800934533: 925 + 2793025849593925: 790 + 2793026180993093: 632 + 2793026184302661: 622 + 2793026185154629: 516 + 2793026176503877: 406 + 2793026180501573: 387 + 2793025845825605: 352 + 2794695801409669: 338 + 2793025862438981: 319 + 2793026174865477: 304 + 2868240313094021: 283 + +tenant_goods_id: + Total: 17563, Non-null: 17563, Distinct: 147 + Top values: + 2792115932417925: 2182 + 2791925230096261: 1328 + 2792138158329733: 1006 + 2793227755177797: 925 + 2792171921870725: 790 + 2792128158191493: 632 + 2792142450249605: 622 + 2792039804047237: 516 + 2792116914442117: 406 + 2792126853369733: 387 + 2792152201432965: 352 + 2793228842862405: 338 + 2792099955609477: 319 + 2792038476746629: 304 + 2868227554610821: 283 + +tenant_goods_category_id: + Total: 17563, Non-null: 17563, Distinct: 14 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528350540: 9527 + 2791948300259205: 2071 + 2793218343257925: 1674 + 2792063209623429: 1373 + 2793221283104581: 1245 + 2790683528350541: 787 + 2793236829620037: 478 + 2792035069284229: 206 + 2790683528350534: 160 + 2792050275864453: 37 + 2790683528350536: 2 + 2793221553489733: 1 + 2790683528350538: 1 + 2790683528350537: 1 + +tenant_goods_business_id: + Total: 17563, Non-null: 17563, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683528317768: 10315 + 2791932037238661: 2549 + 2793217599407941: 1674 + 2790683528317765: 1373 + 2793220268902213: 1245 + 2791931866402693: 206 + 2790683528317766: 160 + 2790683528317769: 37 + 2790683528317767: 4 + +site_table_id: + Total: 17563, Non-null: 17563, Distinct: 70 + Top values: + 0: 4753 + 2793022145302597: 1232 + 2956248279567557: 1084 + 2793020955840645: 1044 + 2793023960551493: 729 + 2793021451292741: 610 + 2793018776735877: 541 + 2793022937911365: 489 + 2793023960682565: 479 + 2793023960633413: 334 + 2793018776604805: 325 + 2793023960731717: 266 + 2793020259897413: 260 + 2793018776703109: 205 + 2793023960600645: 204 + +ledger_name: + Total: 17563, Non-null: 17563, Distinct: 151 + Top values: + 哇哈哈矿泉水: 2182 + 东方树叶: 1328 + 可乐: 1006 + 一次性手套: 925 + 地道肠: 790 + 农夫山泉苏打水: 632 + 红牛: 622 + 百威235毫升: 516 + 轻上椰子水: 406 + 东鹏特饮: 387 + 鱼蛋: 352 + 普通扑克: 338 + 钻石荷花: 319 + 水溶C: 304 + 蜂蜜水: 283 + +ledger_group_name: + Total: 17563, Non-null: 17563, Distinct: 9 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 酒水: 10315 + 零食: 2549 + 其他: 1674 + 香烟: 1373 + 小吃: 1245 + 雪糕: 206 + 槟榔: 160 + 水果: 37 + 器材: 4 + +ledger_count: + Total: 17563, Non-null: 17563, Distinct: 24 + Top values: + 1: 12555 + 2: 3058 + 3: 669 + 4: 466 + 6: 250 + 12: 249 + 5: 117 + 24: 72 + 8: 44 + 10: 29 + 7: 22 + 18: 7 + 13: 4 + 20: 4 + 11: 3 + +ledger_status: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 17563 + +is_delete: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['store_goods_sale_id', 'order_trade_no', 'order_settle_id', 'order_pay_id', 'order_goods_id', 'site_id', 'tenant_id', 'site_goods_id', 'tenant_goods_id', 'tenant_goods_category_id', 'tenant_goods_business_id', 'site_table_id', 'ledger_name', 'ledger_group_name', 'ledger_unit_price', 'ledger_count', 'ledger_amount', 'discount_price', 'real_goods_money', 'cost_money', 'ledger_status', 'is_delete', 'create_time'] + +Row 1: + store_goods_sale_id: 2957924029550406 + order_trade_no: 2957858167230149 + order_settle_id: 2957922914357125 + order_pay_id: 0 + order_goods_id: 2957858456391557 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793026176012357 + tenant_goods_id: 2792115932417925 + tenant_goods_category_id: 2790683528350540 + tenant_goods_business_id: 2790683528317768 + site_table_id: 2793003705192517 + ledger_name: 哇哈哈矿泉水 + ledger_group_name: 酒水 + ledger_unit_price: 5.00 + ledger_count: 1 + ledger_amount: 5.00 + discount_price: 0.00 + real_goods_money: 5.00 + cost_money: 0.01 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:35:57+08:00 + +Row 2: + store_goods_sale_id: 2957924029550405 + order_trade_no: 2957858167230149 + order_settle_id: 2957922914357125 + order_pay_id: 0 + order_goods_id: 2957858455998341 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793026183041093 + tenant_goods_id: 2792138158329733 + tenant_goods_category_id: 2790683528350540 + tenant_goods_business_id: 2790683528317768 + site_table_id: 2793003705192517 + ledger_name: 可乐 + ledger_group_name: 酒水 + ledger_unit_price: 5.00 + ledger_count: 1 + ledger_amount: 5.00 + discount_price: 0.00 + real_goods_money: 5.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:35:57+08:00 + +Row 3: + store_goods_sale_id: 2957920279908229 + order_trade_no: 2957814644494149 + order_settle_id: 2957920006540997 + order_pay_id: 0 + order_goods_id: 2957859847769925 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793025849593925 + tenant_goods_id: 2792171921870725 + tenant_goods_category_id: 2793221283104581 + tenant_goods_business_id: 2793220268902213 + site_table_id: 2793002808987781 + ledger_name: 地道肠 + ledger_group_name: 小吃 + ledger_unit_price: 5.00 + ledger_count: 2 + ledger_amount: 10.00 + discount_price: 0.00 + real_goods_money: 10.00 + cost_money: 3.58 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:32:08+08:00 + +Row 4: + store_goods_sale_id: 2957913441750917 + order_trade_no: 2957784612605829 + order_settle_id: 2957913171693253 + order_pay_id: 0 + order_goods_id: 2957786053578245 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2791953867886725 + tenant_goods_id: 2791925230096261 + tenant_goods_category_id: 2790683528350540 + tenant_goods_business_id: 2790683528317768 + site_table_id: 2793020259897413 + ledger_name: 东方树叶 + ledger_group_name: 酒水 + ledger_unit_price: 8.00 + ledger_count: 1 + ledger_amount: 8.00 + discount_price: 0.00 + real_goods_money: 8.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:25:11+08:00 + +Row 5: + store_goods_sale_id: 2957911882845893 + order_trade_no: 2957911856353157 + order_settle_id: 2957911858859909 + order_pay_id: 0 + order_goods_id: 2957911857368965 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793026183532613 + tenant_goods_id: 2792139566649221 + tenant_goods_category_id: 2790683528350540 + tenant_goods_business_id: 2790683528317768 + site_table_id: 0 + ledger_name: 阿萨姆 + ledger_group_name: 酒水 + ledger_unit_price: 8.00 + ledger_count: 1 + ledger_amount: 8.00 + discount_price: 2.00 + real_goods_money: 6.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 23:23:36+08:00 + +Row 6: + store_goods_sale_id: 2957886432300741 + order_trade_no: 2957886358310789 + order_settle_id: 2957886361276293 + order_pay_id: 0 + order_goods_id: 2957886359900037 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2826003636177861 + tenant_goods_id: 2826003270470405 + tenant_goods_category_id: 2791948300259205 + tenant_goods_business_id: 2791932037238661 + site_table_id: 0 + ledger_name: 长寿街臭干子 + ledger_group_name: 零食 + ledger_unit_price: 2.00 + ledger_count: 2 + ledger_amount: 4.00 + discount_price: 0.00 + real_goods_money: 4.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:57:42+08:00 + +Row 7: + store_goods_sale_id: 2957886432284358 + order_trade_no: 2957886358310789 + order_settle_id: 2957886361276293 + order_pay_id: 0 + order_goods_id: 2957886359605125 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793025849102405 + tenant_goods_id: 2792170827517829 + tenant_goods_category_id: 2793236829620037 + tenant_goods_business_id: 2791932037238661 + site_table_id: 0 + ledger_name: 火鸡面 + ledger_group_name: 零食 + ledger_unit_price: 10.00 + ledger_count: 1 + ledger_amount: 10.00 + discount_price: 0.00 + real_goods_money: 10.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:57:42+08:00 + +Row 8: + store_goods_sale_id: 2957886432284357 + order_trade_no: 2957886358310789 + order_settle_id: 2957886361276293 + order_pay_id: 0 + order_goods_id: 2957886359310213 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793025849593925 + tenant_goods_id: 2792171921870725 + tenant_goods_category_id: 2793221283104581 + tenant_goods_business_id: 2793220268902213 + site_table_id: 0 + ledger_name: 地道肠 + ledger_group_name: 小吃 + ledger_unit_price: 5.00 + ledger_count: 1 + ledger_amount: 5.00 + discount_price: 0.00 + real_goods_money: 5.00 + cost_money: 1.79 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:57:42+08:00 + +Row 9: + store_goods_sale_id: 2957853948939781 + order_trade_no: 2957728112840581 + order_settle_id: 2957853635792773 + order_pay_id: 0 + order_goods_id: 2957730790313861 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2793025849593925 + tenant_goods_id: 2792171921870725 + tenant_goods_category_id: 2793221283104581 + tenant_goods_business_id: 2793220268902213 + site_table_id: 2793012902367365 + ledger_name: 地道肠 + ledger_group_name: 小吃 + ledger_unit_price: 5.00 + ledger_count: 1 + ledger_amount: 5.00 + discount_price: 0.00 + real_goods_money: 5.00 + cost_money: 1.79 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:24:40+08:00 + +Row 10: + store_goods_sale_id: 2957853948923397 + order_trade_no: 2957728112840581 + order_settle_id: 2957853635792773 + order_pay_id: 0 + order_goods_id: 2957730789887877 + site_id: 2790685415443269 + tenant_id: 2790683160709957 + site_goods_id: 2791953867886725 + tenant_goods_id: 2791925230096261 + tenant_goods_category_id: 2790683528350540 + tenant_goods_business_id: 2790683528317768 + site_table_id: 2793012902367365 + ledger_name: 东方树叶 + ledger_group_name: 酒水 + ledger_unit_price: 8.00 + ledger_count: 1 + ledger_amount: 8.00 + discount_price: 0.00 + real_goods_money: 8.00 + cost_money: 0.00 + ledger_status: 1 + is_delete: 0 + create_time: 2025-11-09 22:24:40+08:00 + diff --git a/tmp/table_analysis/dwd_store_goods_sale_ex.txt b/tmp/table_analysis/dwd_store_goods_sale_ex.txt new file mode 100644 index 0000000..f48a384 --- /dev/null +++ b/tmp/table_analysis/dwd_store_goods_sale_ex.txt @@ -0,0 +1,482 @@ +================================================================================ +Table: billiards_dwd.dwd_store_goods_sale_ex +Primary Key: store_goods_sale_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +store_goods_sale_id: bigint | nullable=NO | PK +legacy_order_goods_id: bigint | nullable=YES | +site_name: text | nullable=YES | +legacy_site_id: bigint | nullable=YES | +goods_remark: text | nullable=YES | +option_value_name: text | nullable=YES | +operator_name: text | nullable=YES | +open_salesman_flag: integer | nullable=YES | +salesman_user_id: bigint | nullable=YES | +salesman_name: text | nullable=YES | +salesman_role_id: bigint | nullable=YES | +salesman_org_id: bigint | nullable=YES | +discount_money: numeric(18,2) | nullable=YES | +returns_number: integer | nullable=YES | +coupon_deduct_money: numeric(18,2) | nullable=YES | +member_discount_amount: numeric(18,2) | nullable=YES | +point_discount_money: numeric(18,2) | nullable=YES | +point_discount_money_cost: numeric(18,2) | nullable=YES | +package_coupon_id: bigint | nullable=YES | +order_coupon_id: bigint | nullable=YES | +member_coupon_id: bigint | nullable=YES | +option_price: numeric(18,2) | nullable=YES | +option_member_discount_money: numeric(18,2) | nullable=YES | +option_coupon_deduct_money: numeric(18,2) | nullable=YES | +push_money: numeric(18,2) | nullable=YES | +is_single_order: integer | nullable=YES | +sales_type: integer | nullable=YES | +operator_id: bigint | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +store_goods_sale_id: + Total: 17563, Non-null: 17563, Distinct: 17563 + Top values: + 2800121045255813: 1 + 2800177654154629: 1 + 2800177654154630: 1 + 2800183502440453: 1 + 2800215932798981: 1 + 2800317000320901: 1 + 2800320956221317: 1 + 2800343416604741: 1 + 2800348155381829: 1 + 2800353094305797: 1 + 2800353215072133: 1 + 2800360636794885: 1 + 2800363077912517: 1 + 2800372000393221: 1 + 2800383251105733: 1 + +legacy_order_goods_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +site_name: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 朗朗桌球: 17563 + +legacy_site_id: + Total: 17563, Non-null: 17563, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 11683 + 2790685415443269: 5880 + +goods_remark: + Total: 17563, Non-null: 12819, Distinct: 144 + Top values: + 哇哈哈矿泉水: 1697 + 东方树叶: 1012 + 可乐: 709 + 一次性手套: 546 + 地道肠: 540 + 红牛: 529 + 百威235毫升: 459 + 农夫山泉苏打水: 442 + 轻上椰子水: 353 + 普通扑克: 296 + 蜂蜜水: 252 + 钻石荷花: 228 + 鱼蛋: 225 + 哇哈哈AD钙奶: 222 + 水溶C: 208 + +option_value_name: + Total: 17563, Non-null: 0, Distinct: 0 + Top values: + +operator_name: + Total: 17563, Non-null: 17563, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 17562 + 收银员:郑丽珍: 1 + +open_salesman_flag: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2: 17563 + +salesman_user_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +salesman_name: + Total: 17563, Non-null: 0, Distinct: 0 + Top values: + +salesman_role_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +salesman_org_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +returns_number: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +package_coupon_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +order_coupon_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +member_coupon_id: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 17563 + +is_single_order: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 17563 + +sales_type: + Total: 17563, Non-null: 17563, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 17563 + +operator_id: + Total: 17563, Non-null: 17563, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 17562 + 2801909606452165: 1 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['store_goods_sale_id', 'legacy_order_goods_id', 'site_name', 'legacy_site_id', 'goods_remark', 'option_value_name', 'operator_name', 'open_salesman_flag', 'salesman_user_id', 'salesman_name', 'salesman_role_id', 'salesman_org_id', 'discount_money', 'returns_number', 'coupon_deduct_money', 'member_discount_amount', 'point_discount_money', 'point_discount_money_cost', 'package_coupon_id', 'order_coupon_id', 'member_coupon_id', 'option_price', 'option_member_discount_money', 'option_coupon_deduct_money', 'push_money', 'is_single_order', 'sales_type', 'operator_id'] + +Row 1: + store_goods_sale_id: 2956022966241350 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 0 + goods_remark: 鸡翅三个一份 + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 2: + store_goods_sale_id: 2858856281016070 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 3: + store_goods_sale_id: 2858856281016069 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 4: + store_goods_sale_id: 2858856280999685 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 5: + store_goods_sale_id: 2858852495181765 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 6: + store_goods_sale_id: 2858838793062085 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 7: + store_goods_sale_id: 2858811441825477 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 8: + store_goods_sale_id: 2858800638674693 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 9: + store_goods_sale_id: 2858800638641925 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + +Row 10: + store_goods_sale_id: 2858800638314245 + legacy_order_goods_id: 0 + site_name: 朗朗桌球 + legacy_site_id: 2790685415443269 + goods_remark: NULL + option_value_name: NULL + operator_name: 收银员:郑丽珊 + open_salesman_flag: 2 + salesman_user_id: 0 + salesman_name: NULL + salesman_role_id: 0 + salesman_org_id: 0 + discount_money: 0.00 + returns_number: 0 + coupon_deduct_money: 0.00 + member_discount_amount: 0.00 + point_discount_money: 0.00 + point_discount_money_cost: 0.00 + package_coupon_id: 0 + order_coupon_id: 0 + member_coupon_id: 0 + option_price: 0.00 + option_member_discount_money: 0.00 + option_coupon_deduct_money: 0.00 + push_money: 0.00 + is_single_order: 1 + sales_type: 1 + operator_id: 2790687322443013 + diff --git a/tmp/table_analysis/dwd_table_fee_adjust.txt b/tmp/table_analysis/dwd_table_fee_adjust.txt new file mode 100644 index 0000000..84c7ee7 --- /dev/null +++ b/tmp/table_analysis/dwd_table_fee_adjust.txt @@ -0,0 +1,321 @@ +================================================================================ +Table: billiards_dwd.dwd_table_fee_adjust +Primary Key: table_fee_adjust_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_fee_adjust_id: bigint | nullable=NO | PK +order_trade_no: bigint | nullable=YES | +order_settle_id: bigint | nullable=YES | +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +table_id: bigint | nullable=YES | +table_area_id: bigint | nullable=YES | +table_area_name: character varying(64) | nullable=YES | +tenant_table_area_id: bigint | nullable=YES | +ledger_amount: numeric(18,2) | nullable=YES | +ledger_status: integer | nullable=YES | +is_delete: integer | nullable=YES | +adjust_time: timestamp with time zone | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_fee_adjust_id: + Total: 2849, Non-null: 2849, Distinct: 2849 + Top values: + 3064246571944837: 1 + 2809440958499333: 1 + 3017593903318661: 1 + 3009294538409925: 1 + 2993477712792197: 1 + 3034392506993733: 1 + 2965973253473989: 1 + 2888562792286597: 1 + 3008956284275205: 1 + 3067055412186053: 1 + 3050243960702725: 1 + 2920573008315781: 1 + 3002014301228037: 1 + 3002075645856581: 1 + 2960693282836357: 1 + +order_trade_no: + Total: 2849, Non-null: 2849, Distinct: 2801 + Top values: + 2851655631671109: 3 + 2831755508780165: 3 + 2970029122997381: 3 + 2831772820049093: 3 + 2948091267387013: 3 + 2954869758986437: 2 + 2990547445273157: 2 + 2970521489263493: 2 + 3029974310012997: 2 + 2836209539582277: 2 + 3056795414873989: 2 + 3054107856719045: 2 + 2810434861500869: 2 + 3060857267505733: 2 + 2980688405924165: 2 + +order_settle_id: + Total: 2849, Non-null: 2849, Distinct: 2515 + Top values: + 2985297809476293: 7 + 2959261151989445: 5 + 2890024064813381: 5 + 2933889434896133: 5 + 2802093505628229: 5 + 2823425434258501: 5 + 3050243203696325: 4 + 2826430466378821: 4 + 2973323104635077: 4 + 2990834049419973: 4 + 3041336658364101: 4 + 2842013991014021: 4 + 2983454744515141: 4 + 2946626600634501: 4 + 3046093693290245: 3 + +tenant_id: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 2849 + +site_id: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 2849 + +table_id: + Total: 2849, Non-null: 2849, Distinct: 74 + Top values: + 2793022937911365: 206 + 2793020259897413: 182 + 2793018776735877: 170 + 2793023960633413: 157 + 2793023960682565: 102 + 2793023960551493: 99 + 2793022145302597: 83 + 2791964216463493: 79 + 2802006434630661: 75 + 2793020955840645: 70 + 2851642357976581: 62 + 2793016660660357: 55 + 2802282095561797: 55 + 2793020259946565: 54 + 2851642813353477: 54 + +table_area_id: + Total: 2849, Non-null: 2849, Distinct: 16 + Top values: + 2791962314215301: 455 + 2791960001957765: 375 + 2791960521691013: 342 + 2801978934053829: 331 + 2791961347968901: 308 + 2791961060364165: 307 + 2791960850435973: 207 + 2791962068946821: 206 + 2791961709907845: 107 + 2791961598955397: 101 + 2942054283414597: 35 + 2956244810877893: 32 + 2956243120376773: 30 + 3004534168259333: 9 + 2944826806683269: 3 + +table_area_name: + Total: 2849, Non-null: 0, Distinct: 0 + Top values: + +tenant_table_area_id: + Total: 2849, Non-null: 2849, Distinct: 16 + Top values: + 2791962314215301: 455 + 2791960001957765: 375 + 2791960521691013: 342 + 2801978934053829: 331 + 2791961347968901: 308 + 2791961060364165: 307 + 2791960850435973: 207 + 2791962068946821: 206 + 2791961709907845: 107 + 2791961598955397: 101 + 2942054283414597: 35 + 2956244810877893: 32 + 2956243120376773: 30 + 3004534168259333: 9 + 2944826806683269: 3 + +ledger_status: + Total: 2849, Non-null: 2849, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 2801 + 0: 48 + +is_delete: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 2849 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_fee_adjust_id', 'order_trade_no', 'order_settle_id', 'tenant_id', 'site_id', 'table_id', 'table_area_id', 'table_area_name', 'tenant_table_area_id', 'ledger_amount', 'ledger_status', 'is_delete', 'adjust_time'] + +Row 1: + table_fee_adjust_id: 2957913441881989 + order_trade_no: 2957784612605829 + order_settle_id: 2957913171693253 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793020259897413 + table_area_id: 2791961347968901 + table_area_name: NULL + tenant_table_area_id: 2791961347968901 + ledger_amount: 148.15 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 23:25:11+08:00 + +Row 2: + table_fee_adjust_id: 2957881608900293 + order_trade_no: 2957564999110149 + order_settle_id: 2957881518788421 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793023960633413 + table_area_id: 2791962314215301 + table_area_name: NULL + tenant_table_area_id: 2791962314215301 + ledger_amount: 120.00 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 22:52:48+08:00 + +Row 3: + table_fee_adjust_id: 2957814223867717 + order_trade_no: 2957792593448837 + order_settle_id: 2957813956382533 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793016660660357 + table_area_id: 2791960850435973 + table_area_name: NULL + tenant_table_area_id: 2791960850435973 + ledger_amount: 24.18 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 21:44:15+08:00 + +Row 4: + table_fee_adjust_id: 2957814223818565 + order_trade_no: 2957757804416901 + order_settle_id: 2957813956382533 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2791964216463493 + table_area_id: 2791960001957765 + table_area_name: NULL + tenant_table_area_id: 2791960001957765 + ledger_amount: 14.16 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 21:44:15+08:00 + +Row 5: + table_fee_adjust_id: 2957809022848517 + order_trade_no: 2957637918707525 + order_settle_id: 2957808874803077 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793012902203525 + table_area_id: 2791960521691013 + table_area_name: NULL + tenant_table_area_id: 2791960521691013 + ledger_amount: 18.00 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 21:38:58+08:00 + +Row 6: + table_fee_adjust_id: 2957786384502277 + order_trade_no: 2957651697635141 + order_settle_id: 2957786346884805 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793003806953541 + table_area_id: 2791960001957765 + table_area_name: NULL + tenant_table_area_id: 2791960001957765 + ledger_amount: 96.27 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 21:15:56+08:00 + +Row 7: + table_fee_adjust_id: 2957752919379845 + order_trade_no: 2957748356140741 + order_settle_id: 2957752895754053 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793020259897413 + table_area_id: 2791961347968901 + table_area_name: NULL + tenant_table_area_id: 2791961347968901 + ledger_amount: 5.08 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 20:41:53+08:00 + +Row 8: + table_fee_adjust_id: 2957675850501829 + order_trade_no: 2957576702300037 + order_settle_id: 2957675763060549 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793016660660357 + table_area_id: 2791960850435973 + table_area_name: NULL + tenant_table_area_id: 2791960850435973 + ledger_amount: 113.64 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 19:23:29+08:00 + +Row 9: + table_fee_adjust_id: 2957593928126277 + order_trade_no: 2957543598772037 + order_settle_id: 2957593881104261 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793022937911365 + table_area_id: 2791962068946821 + table_area_name: NULL + tenant_table_area_id: 2791962068946821 + ledger_amount: 28.11 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 18:00:09+08:00 + +Row 10: + table_fee_adjust_id: 2957537445105541 + order_trade_no: 2957281196167045 + order_settle_id: 2957537402621637 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + table_id: 2793023960633413 + table_area_id: 2791962314215301 + table_area_name: NULL + tenant_table_area_id: 2791962314215301 + ledger_amount: 120.00 + ledger_status: 1 + is_delete: 0 + adjust_time: 2025-11-09 17:02:42+08:00 + diff --git a/tmp/table_analysis/dwd_table_fee_adjust_ex.txt b/tmp/table_analysis/dwd_table_fee_adjust_ex.txt new file mode 100644 index 0000000..412146d --- /dev/null +++ b/tmp/table_analysis/dwd_table_fee_adjust_ex.txt @@ -0,0 +1,182 @@ +================================================================================ +Table: billiards_dwd.dwd_table_fee_adjust_ex +Primary Key: table_fee_adjust_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_fee_adjust_id: bigint | nullable=NO | PK +adjust_type: integer | nullable=YES | +ledger_count: integer | nullable=YES | +ledger_name: character varying(128) | nullable=YES | +applicant_name: character varying(64) | nullable=YES | +operator_name: character varying(64) | nullable=YES | +applicant_id: bigint | nullable=YES | +operator_id: bigint | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_fee_adjust_id: + Total: 2849, Non-null: 2849, Distinct: 2849 + Top values: + 3064246571944837: 1 + 2809440958499333: 1 + 3017593903318661: 1 + 3009294538409925: 1 + 2993477712792197: 1 + 3034392506993733: 1 + 2965973253473989: 1 + 2888562792286597: 1 + 3008956284275205: 1 + 3067055412186053: 1 + 3050243960702725: 1 + 2920573008315781: 1 + 3002014301228037: 1 + 3002075645856581: 1 + 2960693282836357: 1 + +adjust_type: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 2849 + +ledger_count: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 2849 + +ledger_name: + Total: 2849, Non-null: 0, Distinct: 0 + Top values: + +applicant_name: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 2849 + +operator_name: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 2849 + +applicant_id: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 2849 + +operator_id: + Total: 2849, Non-null: 2849, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 2849 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_fee_adjust_id', 'adjust_type', 'ledger_count', 'ledger_name', 'applicant_name', 'operator_name', 'applicant_id', 'operator_id'] + +Row 1: + table_fee_adjust_id: 2957913441881989 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 2: + table_fee_adjust_id: 2957881608900293 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 3: + table_fee_adjust_id: 2957814223867717 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 4: + table_fee_adjust_id: 2957814223818565 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 5: + table_fee_adjust_id: 2957809022848517 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 6: + table_fee_adjust_id: 2957786384502277 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 7: + table_fee_adjust_id: 2957752919379845 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 8: + table_fee_adjust_id: 2957675850501829 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 9: + table_fee_adjust_id: 2957593928126277 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + +Row 10: + table_fee_adjust_id: 2957537445105541 + adjust_type: 1 + ledger_count: 1 + ledger_name: NULL + applicant_name: 收银员:郑丽珊 + operator_name: 收银员:郑丽珊 + applicant_id: 2790687322443013 + operator_id: 2790687322443013 + diff --git a/tmp/table_analysis/dwd_table_fee_log.txt b/tmp/table_analysis/dwd_table_fee_log.txt new file mode 100644 index 0000000..2ab33be --- /dev/null +++ b/tmp/table_analysis/dwd_table_fee_log.txt @@ -0,0 +1,597 @@ +================================================================================ +Table: billiards_dwd.dwd_table_fee_log +Primary Key: table_fee_log_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_fee_log_id: bigint | nullable=NO | PK +order_trade_no: bigint | nullable=YES | +order_settle_id: bigint | nullable=YES | +order_pay_id: bigint | nullable=YES | +tenant_id: bigint | nullable=YES | +site_id: bigint | nullable=YES | +site_table_id: bigint | nullable=YES | +site_table_area_id: bigint | nullable=YES | +site_table_area_name: character varying(64) | nullable=YES | +tenant_table_area_id: bigint | nullable=YES | +member_id: bigint | nullable=YES | +ledger_name: character varying(64) | nullable=YES | +ledger_unit_price: numeric(18,2) | nullable=YES | +ledger_count: integer | nullable=YES | +ledger_amount: numeric(18,2) | nullable=YES | +real_table_charge_money: numeric(18,2) | nullable=YES | +coupon_promotion_amount: numeric(18,2) | nullable=YES | +member_discount_amount: numeric(18,2) | nullable=YES | +adjust_amount: numeric(18,2) | nullable=YES | +real_table_use_seconds: integer | nullable=YES | +add_clock_seconds: integer | nullable=YES | +start_use_time: timestamp with time zone | nullable=YES | +ledger_end_time: timestamp with time zone | nullable=YES | +create_time: timestamp with time zone | nullable=YES | +ledger_status: integer | nullable=YES | +is_single_order: integer | nullable=YES | +is_delete: integer | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_fee_log_id: + Total: 18386, Non-null: 18386, Distinct: 18386 + Top values: + 2897193251719557: 1 + 2893935585020421: 1 + 2906552039376453: 1 + 2851661190713157: 1 + 2936533613791813: 1 + 2890835850152453: 1 + 2847609203805253: 1 + 2916908961123333: 1 + 2983183886160581: 1 + 2820543392057349: 1 + 2946311480395845: 1 + 2888126009035269: 1 + 3007558006097989: 1 + 2916821234994181: 1 + 3019966811522501: 1 + +order_trade_no: + Total: 18386, Non-null: 18386, Distinct: 18383 + Top values: + 3056793707677445: 2 + 3056795414873989: 2 + 3056739120465797: 2 + 3024540226750533: 1 + 3007427703621637: 1 + 2852917643398853: 1 + 3006788825450629: 1 + 2940445841379141: 1 + 2977196476385221: 1 + 2974691030586245: 1 + 2985657512940101: 1 + 3063831565503365: 1 + 3041539249555333: 1 + 2995680885133509: 1 + 3063804395604933: 1 + +order_settle_id: + Total: 18386, Non-null: 18386, Distinct: 17418 + Top values: + 2990834049419973: 10 + 2890024064813381: 9 + 2988030668589701: 8 + 2985297809476293: 7 + 2959078619024901: 7 + 2959261151989445: 7 + 2940861764620357: 6 + 2996296638500997: 5 + 2973323104635077: 5 + 2802093505628229: 5 + 2933889434896133: 5 + 2851726398656261: 5 + 3038949978147525: 5 + 3038784012766405: 5 + 2937959061506629: 5 + +order_pay_id: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 18386 + +tenant_id: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790683160709957: 18386 + +site_id: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790685415443269: 18386 + +site_table_id: + Total: 18386, Non-null: 18386, Distinct: 74 + Top values: + 2793001695301765: 1050 + 2793002509209733: 984 + 2793001904918661: 980 + 2791964216463493: 897 + 2793002808987781: 888 + 2792521437958213: 837 + 2793002896494725: 767 + 2793002980429893: 643 + 2793003066429509: 614 + 2793003159474245: 491 + 2793020259897413: 489 + 2793003705192517: 475 + 2793003243294789: 444 + 2793003420504133: 405 + 2793003506815045: 383 + +site_table_area_id: + Total: 18386, Non-null: 18386, Distinct: 16 + Top values: + 2791963794329671: 11222 + 2791963807682693: 2227 + 2791963836207173: 1371 + 2791963887030341: 909 + 2791963816579205: 795 + 2802006170324037: 540 + 2791963825803397: 519 + 2791963864273029: 305 + 2791963855982661: 183 + 2791963848527941: 143 + 2942056024575749: 63 + 2956246429994309: 55 + 2956246442462533: 37 + 3004534627601285: 12 + 2944827794098053: 4 + +site_table_area_name: + Total: 18386, Non-null: 18386, Distinct: 18 + Top values: + A区: 11222 + B区: 2227 + 斯诺克区: 1371 + 麻将房: 909 + C区: 795 + 补时长: 540 + VIP包厢: 519 + TV台: 305 + 666: 143 + 888: 95 + K包: 88 + M8: 55 + M7: 54 + 发财: 37 + 幸会158: 12 + +tenant_table_area_id: + Total: 18386, Non-null: 18386, Distinct: 16 + Top values: + 2791960001957765: 11222 + 2791960521691013: 2227 + 2791961347968901: 1371 + 2791962314215301: 909 + 2791960850435973: 795 + 2801978934053829: 540 + 2791961060364165: 519 + 2791962068946821: 305 + 2791961709907845: 183 + 2791961598955397: 143 + 2942054283414597: 63 + 2956243120376773: 55 + 2956244810877893: 37 + 3004534168259333: 12 + 2944826806683269: 4 + +member_id: + Total: 18386, Non-null: 18386, Distinct: 183 + Top values: + 0: 15146 + 2799207363643141: 263 + 2799207522600709: 228 + 2799207359858437: 200 + 2799207124305669: 188 + 2799207406946053: 149 + 2799207403554565: 128 + 2799212845565701: 108 + 2799207328155397: 93 + 2799207352715013: 84 + 2799212491392773: 82 + 2969257129938053: 81 + 2799207390349061: 80 + 2799209806071557: 76 + 2799212430657285: 61 + +ledger_name: + Total: 18386, Non-null: 18386, Distinct: 76 + Top values: + A3: 1050 + A5: 984 + A4: 980 + A1: 897 + A7: 888 + A2: 837 + A8: 767 + A9: 643 + A10: 614 + A11: 491 + S1: 489 + A17: 475 + A12: 444 + A14: 405 + A15: 383 + +ledger_count: + Total: 18386, Non-null: 18386, Distinct: 5105 + Top values: + 3600: 7213 + 7200: 3573 + 0: 489 + 10800: 453 + 14400: 323 + 18000: 79 + 1800: 38 + 21600: 27 + 5400: 9 + 7205: 7 + 1200: 7 + 36000: 6 + 7202: 6 + 3336: 5 + 3552: 5 + +real_table_use_seconds: + Total: 18386, Non-null: 18386, Distinct: 5203 + Top values: + 3600: 6880 + 7200: 3517 + 0: 489 + 10800: 440 + 14400: 314 + 18000: 75 + 60: 46 + 1800: 37 + 21600: 24 + 66: 23 + 65: 22 + 3601: 16 + 8: 15 + 5: 12 + 7201: 12 + +add_clock_seconds: + Total: 18386, Non-null: 18386, Distinct: 57 + Top values: + 0: 18115 + 60: 92 + 7200: 36 + 600: 17 + 10800: 16 + 1800: 10 + 18000: 9 + 3600: 8 + 120: 5 + 480: 5 + 1200: 5 + 2400: 4 + 6000: 3 + 900: 3 + 7320: 3 + +ledger_status: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 18386 + +is_single_order: + Total: 18386, Non-null: 18386, Distinct: 2 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 1: 17747 + 0: 639 + +is_delete: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 18386 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_fee_log_id', 'order_trade_no', 'order_settle_id', 'order_pay_id', 'tenant_id', 'site_id', 'site_table_id', 'site_table_area_id', 'site_table_area_name', 'tenant_table_area_id', 'member_id', 'ledger_name', 'ledger_unit_price', 'ledger_count', 'ledger_amount', 'real_table_charge_money', 'coupon_promotion_amount', 'member_discount_amount', 'adjust_amount', 'real_table_use_seconds', 'add_clock_seconds', 'start_use_time', 'ledger_end_time', 'create_time', 'ledger_status', 'is_single_order', 'is_delete'] + +Row 1: + table_fee_log_id: 2957924029058885 + order_trade_no: 2957858167230149 + order_settle_id: 2957922914357125 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793003705192517 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A17 + ledger_unit_price: 48.00 + ledger_count: 3600 + ledger_amount: 48.00 + real_table_charge_money: 0.00 + coupon_promotion_amount: 48.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 3600 + add_clock_seconds: 0 + start_use_time: 2025-11-09 22:28:57+08:00 + ledger_end_time: 2025-11-09 23:28:57+08:00 + create_time: 2025-11-09 23:35:57+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 2: + table_fee_log_id: 2957922693074821 + order_trade_no: 2957804588781445 + order_settle_id: 2957922677673797 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793001904918661 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A4 + ledger_unit_price: 48.00 + ledger_count: 7200 + ledger_amount: 96.00 + real_table_charge_money: 0.00 + coupon_promotion_amount: 96.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 7200 + add_clock_seconds: 0 + start_use_time: 2025-11-09 21:34:27+08:00 + ledger_end_time: 2025-11-09 23:34:27+08:00 + create_time: 2025-11-09 23:34:36+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 3: + table_fee_log_id: 2957921521733125 + order_trade_no: 2957862075436549 + order_settle_id: 2957921502088901 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2791964216463493 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A1 + ledger_unit_price: 48.00 + ledger_count: 3600 + ledger_amount: 48.00 + real_table_charge_money: 48.00 + coupon_promotion_amount: 0.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 3600 + add_clock_seconds: 0 + start_use_time: 2025-11-09 22:32:55+08:00 + ledger_end_time: 2025-11-09 23:32:55+08:00 + create_time: 2025-11-09 23:33:24+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 4: + table_fee_log_id: 2957920279498629 + order_trade_no: 2957814644494149 + order_settle_id: 2957920006540997 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793002808987781 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A7 + ledger_unit_price: 48.00 + ledger_count: 6429 + ledger_amount: 85.72 + real_table_charge_money: 0.00 + coupon_promotion_amount: 85.72 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 6430 + add_clock_seconds: 0 + start_use_time: 2025-11-09 21:44:40+08:00 + ledger_end_time: 2025-11-09 23:31:49+08:00 + create_time: 2025-11-09 23:32:08+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 5: + table_fee_log_id: 2957913926717253 + order_trade_no: 2957852541275653 + order_settle_id: 2957913909300741 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793002980429893 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A9 + ledger_unit_price: 48.00 + ledger_count: 3600 + ledger_amount: 48.00 + real_table_charge_money: 0.00 + coupon_promotion_amount: 48.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 3600 + add_clock_seconds: 0 + start_use_time: 2025-11-09 22:23:14+08:00 + ledger_end_time: 2025-11-09 23:23:14+08:00 + create_time: 2025-11-09 23:25:41+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 6: + table_fee_log_id: 2957913440948101 + order_trade_no: 2957784612605829 + order_settle_id: 2957913171693253 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793020259897413 + site_table_area_id: 2791963836207173 + site_table_area_name: 斯诺克区 + tenant_table_area_id: 2791961347968901 + member_id: 0 + ledger_name: S1 + ledger_unit_price: 68.00 + ledger_count: 7843 + ledger_amount: 148.15 + real_table_charge_money: 0.00 + coupon_promotion_amount: 0.00 + member_discount_amount: 0.00 + adjust_amount: 148.15 + real_table_use_seconds: 7843 + add_clock_seconds: 0 + start_use_time: 2025-11-09 21:14:07+08:00 + ledger_end_time: 2025-11-09 23:24:50+08:00 + create_time: 2025-11-09 23:25:11+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 7: + table_fee_log_id: 2957909372325573 + order_trade_no: 2957850075041477 + order_settle_id: 2957909354516357 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793002896494725 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A8 + ledger_unit_price: 48.00 + ledger_count: 3600 + ledger_amount: 48.00 + real_table_charge_money: 0.00 + coupon_promotion_amount: 48.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 3600 + add_clock_seconds: 0 + start_use_time: 2025-11-09 22:20:43+08:00 + ledger_end_time: 2025-11-09 23:20:43+08:00 + create_time: 2025-11-09 23:21:03+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 8: + table_fee_log_id: 2957902858948421 + order_trade_no: 2957733026106885 + order_settle_id: 2957900926045701 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793012902154373 + site_table_area_id: 2791963807682693 + site_table_area_name: B区 + tenant_table_area_id: 2791960521691013 + member_id: 0 + ledger_name: B5 + ledger_unit_price: 58.00 + ledger_count: 10247 + ledger_amount: 165.09 + real_table_charge_money: 0.00 + coupon_promotion_amount: 165.09 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 10247 + add_clock_seconds: 0 + start_use_time: 2025-11-09 20:21:39+08:00 + ledger_end_time: 2025-11-09 23:12:26+08:00 + create_time: 2025-11-09 23:14:25+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 9: + table_fee_log_id: 2957882052366213 + order_trade_no: 2957759254155141 + order_settle_id: 2957881991597573 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793003159474245 + site_table_area_id: 2791963794329671 + site_table_area_name: A区 + tenant_table_area_id: 2791960001957765 + member_id: 0 + ledger_name: A11 + ledger_unit_price: 48.00 + ledger_count: 7200 + ledger_amount: 96.00 + real_table_charge_money: 0.00 + coupon_promotion_amount: 96.00 + member_discount_amount: 0.00 + adjust_amount: 0.00 + real_table_use_seconds: 7200 + add_clock_seconds: 0 + start_use_time: 2025-11-09 20:48:20+08:00 + ledger_end_time: 2025-11-09 22:48:20+08:00 + create_time: 2025-11-09 22:53:15+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + +Row 10: + table_fee_log_id: 2957881608392389 + order_trade_no: 2957564999110149 + order_settle_id: 2957881518788421 + order_pay_id: 0 + tenant_id: 2790683160709957 + site_id: 2790685415443269 + site_table_id: 2793023960633413 + site_table_area_id: 2791963887030341 + site_table_area_name: 麻将房 + tenant_table_area_id: 2791962314215301 + member_id: 2799212845565701 + ledger_name: M3 + ledger_unit_price: 48.00 + ledger_count: 18000 + ledger_amount: 240.00 + real_table_charge_money: 120.00 + coupon_promotion_amount: 0.00 + member_discount_amount: 0.00 + adjust_amount: 120.00 + real_table_use_seconds: 18000 + add_clock_seconds: 0 + start_use_time: 2025-11-09 17:30:43+08:00 + ledger_end_time: 2025-11-09 22:30:43+08:00 + create_time: 2025-11-09 22:52:48+08:00 + ledger_status: 1 + is_single_order: 1 + is_delete: 0 + diff --git a/tmp/table_analysis/dwd_table_fee_log_ex.txt b/tmp/table_analysis/dwd_table_fee_log_ex.txt new file mode 100644 index 0000000..2eae555 --- /dev/null +++ b/tmp/table_analysis/dwd_table_fee_log_ex.txt @@ -0,0 +1,219 @@ +================================================================================ +Table: billiards_dwd.dwd_table_fee_log_ex +Primary Key: table_fee_log_id +================================================================================ + +## COLUMNS +-------------------------------------------------------------------------------- +table_fee_log_id: bigint | nullable=NO | PK +operator_name: character varying(64) | nullable=YES | +salesman_name: character varying(64) | nullable=YES | +used_card_amount: numeric(18,2) | nullable=YES | +service_money: numeric(18,2) | nullable=YES | +mgmt_fee: numeric(18,2) | nullable=YES | +fee_total: numeric(18,2) | nullable=YES | +ledger_start_time: timestamp with time zone | nullable=YES | +last_use_time: timestamp with time zone | nullable=YES | +operator_id: bigint | nullable=YES | +salesman_user_id: bigint | nullable=YES | +salesman_org_id: bigint | nullable=YES | + +## VALUE ANALYSIS (for enum detection) +-------------------------------------------------------------------------------- + +table_fee_log_id: + Total: 18386, Non-null: 18386, Distinct: 18386 + Top values: + 2897193251719557: 1 + 2893935585020421: 1 + 2906552039376453: 1 + 2851661190713157: 1 + 2936533613791813: 1 + 2890835850152453: 1 + 2847609203805253: 1 + 2916908961123333: 1 + 2983183886160581: 1 + 2820543392057349: 1 + 2946311480395845: 1 + 2888126009035269: 1 + 3007558006097989: 1 + 2916821234994181: 1 + 3019966811522501: 1 + +operator_name: + Total: 18386, Non-null: 18386, Distinct: 4 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 收银员:郑丽珊: 18382 + 收银员:郑丽珍: 2 + 店长:郑丽珊: 1 + 教练:周蒙: 1 + +salesman_name: + Total: 18386, Non-null: 0, Distinct: 0 + Top values: + +operator_id: + Total: 18386, Non-null: 18386, Distinct: 3 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 2790687322443013: 18383 + 2801909606452165: 2 + 2794761849227077: 1 + +salesman_user_id: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 18386 + +salesman_org_id: + Total: 18386, Non-null: 18386, Distinct: 1 + *** LIKELY ENUM (distinct <= 15) *** + Top values: + 0: 18386 + +## SAMPLE DATA (first 10 rows) +-------------------------------------------------------------------------------- +Columns: ['table_fee_log_id', 'operator_name', 'salesman_name', 'used_card_amount', 'service_money', 'mgmt_fee', 'fee_total', 'ledger_start_time', 'last_use_time', 'operator_id', 'salesman_user_id', 'salesman_org_id'] + +Row 1: + table_fee_log_id: 2957924029058885 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 22:28:57+08:00 + last_use_time: 2025-11-09 23:28:57+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 2: + table_fee_log_id: 2957922693074821 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 21:34:27+08:00 + last_use_time: 2025-11-09 23:34:27+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 3: + table_fee_log_id: 2957921521733125 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 22:32:55+08:00 + last_use_time: 2025-11-09 23:32:55+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 4: + table_fee_log_id: 2957920279498629 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 21:44:40+08:00 + last_use_time: 2025-11-09 23:31:50+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 5: + table_fee_log_id: 2957913926717253 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 22:23:14+08:00 + last_use_time: 2025-11-09 23:23:14+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 6: + table_fee_log_id: 2957913440948101 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 21:14:07+08:00 + last_use_time: 2025-11-09 23:24:50+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 7: + table_fee_log_id: 2957909372325573 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 22:20:43+08:00 + last_use_time: 2025-11-09 23:20:43+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 8: + table_fee_log_id: 2957902858948421 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 20:21:39+08:00 + last_use_time: 2025-11-09 23:12:26+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 9: + table_fee_log_id: 2957882052366213 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 20:48:20+08:00 + last_use_time: 2025-11-09 22:48:20+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 + +Row 10: + table_fee_log_id: 2957881608392389 + operator_name: 收银员:郑丽珊 + salesman_name: NULL + used_card_amount: 0.00 + service_money: 0.00 + mgmt_fee: 0.00 + fee_total: 0.00 + ledger_start_time: 2025-11-09 17:30:43+08:00 + last_use_time: 2025-11-09 22:30:43+08:00 + operator_id: 2790687322443013 + salesman_user_id: 0 + salesman_org_id: 0 +